/* Dark Layout Specific Styles */

/* Dark Theme Header Styles */
.dark-header {
    position: relative;
    z-index: 1000;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

/* Dark Top Bar */
.dark-top-bar {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
}

.top-bar-right {
    justify-content: flex-end;
    gap: 20px;
}

.top-bar-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 32px;
    height: 32px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-2px);
}

/* Dark Main Navigation */
.dark-navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Dark Logo */
.dark-logo .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dark-logo .logo-link:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700, #00cc6a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.logo-icon i {
    font-size: 1.5rem;
    color: #000;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFD700;
    line-height: 1;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Dark Navigation Menu */
.dark-nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 10px 0;
    transition: all 0.3s ease;
    position: relative;
}

.nav-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-line {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #00cc6a);
    margin-top: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover .nav-text,
.nav-link.active .nav-text {
    color: #FFD700;
}

.nav-link:hover .nav-line,
.nav-link.active .nav-line {
    width: 100%;
}

/* Dark Dropdown Menu Styles */
.dropdown-menu {
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    margin-top: 10px;
    min-width: 200px;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: rgba(0, 255, 136, 0.1);
    color: #FFD700;
    padding-left: 25px;
}

.dropdown-toggle::after {
    margin-left: 8px;
    border-top: 4px solid #FFD700;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    vertical-align: middle;
}

/* Dark CTA Button */
.dark-cta .dark-btn {
    background: linear-gradient(135deg, #FFD700 0%, #00cc6a 100%);
    color: #000;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    display: flex;
    align-items: center;
}

.dark-cta .dark-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
    color: #000;
}

/* Dark Mobile Toggle */
.dark-mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
}

.toggle-line {
    width: 25px;
    height: 3px;
    background: #FFD700;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Dark Footer Styles */
.dark-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: rgba(255, 255, 255, 0.8);
    margin-top: 80px;
    position: relative;
}

.dark-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="diagonal" patternUnits="userSpaceOnUse" width="20" height="20"><path d="M0,20 L20,0" stroke="rgba(255,215,0,0.1)" stroke-width="1" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23diagonal)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.footer-main {
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    z-index: 1;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    margin-right: 12px;
}

.footer-logo .logo-main {
    font-size: 1.5rem;
}

.footer-logo .logo-sub {
    font-size: 0.7rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-title {
    color: #FFD700;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-list a:hover {
    color: #FFD700;
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    color: #FFD700;
    margin-right: 12px;
    width: 20px;
}

.footer-bottom {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.3);
}

/* Newsletter Section */
.newsletter-section {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
}

.newsletter-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.newsletter-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    min-width: 300px;
    font-size: 1rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.newsletter-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #FFD700;
}

/* Dark WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: white;
    text-decoration: none;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 30px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Dark Responsive Design */
@media (max-width: 768px) {
    .dark-top-bar {
        display: none;
    }
    
    .dark-mobile-toggle {
        display: flex;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        font-size: 24px;
    }
    
    .whatsapp-float i {
        font-size: 24px;
    }
    
    .dark-nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        display: none;
    }
    
    .dark-nav-menu.show {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-link {
        padding: 15px 0;
    }
    
    .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin-top: 0;
        background: rgba(10, 10, 10, 0.9);
        border: none;
        border-radius: 0;
        box-shadow: none;
    }
    
    .dropdown-item {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    }
    
    .dropdown-item:hover {
        background: rgba(0, 255, 136, 0.1);
        padding-left: 25px;
    }
    
    .dark-cta {
        margin-top: 20px;
    }
    
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 15px;
    }
    
    .footer-main {
        padding: 40px 0 30px;
    }
}

@media (max-width: 576px) {
    .navbar-content {
        flex-wrap: wrap;
    }
    
    .dark-logo {
        margin-bottom: 15px;
    }
    
    .logo-main {
        font-size: 1.5rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Dark Global Background Override */
.bg-light {
    background-color: #1a1a1a !important;
}

.bg-white {
    background-color: #1a1a1a !important;
}

.card {
    background-color: #1a1a1a !important;
    border: 1px solid #333333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.container {
    background-color: transparent;
}

section {
    background-color: transparent;
}

/* Dark Enhanced text contrast */
.text-muted {
    color: #808080 !important;
}

.section-title {
    color: #FFD700 !important;
}

.section-subtitle {
    color: #b0b0b0 !important;
}

/* Modern Header */
.modern-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.modern-header .navbar {
    padding: 1rem 0;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #c9a36b, #b8945f);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #c9a36b !important;
}

.btn-quote {
    padding: 10px 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-quote:hover {
    background: #c9a36b;
    border-color: #c9a36b;
    color: #000;
    transform: translateY(-2px);
}

