/* ===================================
   CSS Variables
   =================================== */
:root {
    --primary-gold: #C5A572;
    --dark-gold: #A08451;
    --black: #000000;
    --dark-gray: #0F0F0F;
    --white: #FFFFFF;
    --light-gray: #F8F8F8;
    --transition: all 0.3s ease;
}

/* ===================================
   Global Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    font-weight: 300;
    letter-spacing: 0.3px;
    padding-top: 85px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.90) 100%);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid rgba(197, 165, 114, 0.2);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    position: relative;
    z-index: 10;
}

.logo img {
    height: 55px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(197, 165, 114, 0.3));
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(197, 165, 114, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    background: rgba(197, 165, 114, 0.05);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(197, 165, 114, 0.15);
}

.nav-menu li {
    position: relative;
    padding: 0 1.5rem;
}

.nav-menu li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 1px;
    background: rgba(197, 165, 114, 0.3);
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 0.5rem 0;
    display: block;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(197, 165, 114, 0.4);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 1.5rem);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    min-width: 320px;
    padding: 1rem 0;
    list-style: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    border: 1px solid rgba(197, 165, 114, 0.25);
    border-radius: 8px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    left: 0;
    right: 0;
    height: 1.5rem;
    background: transparent;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li::after {
    display: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.9rem 1.8rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0.3px;
    border-left: 2px solid transparent;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(197, 165, 114, 0.08);
    color: var(--primary-gold);
    border-left-color: var(--primary-gold);
}

/* Language Switch */
.language-switch .lang-btn {
    background: rgba(197, 165, 114, 0.1);
    color: var(--primary-gold);
    padding: 0.7rem 1.5rem;
    font-weight: 500;
    border: 1px solid var(--primary-gold);
    font-size: 0.75rem;
    transition: var(--transition);
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.language-switch .lang-btn:hover {
    background: var(--primary-gold);
    color: var(--black);
}

.language-switch .lang-btn::after {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    margin: 3px 0;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   Hero Section - Simple
   =================================== */
.hero-simple {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    padding: 150px 0 80px;
    margin-top: 0;
    min-height: 720px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-simple::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('../img/empre.webp') center/cover no-repeat;
    opacity: 0.08;
    pointer-events: none;
}

.hero-content-simple {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-title-simple {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle-simple {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 700px;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.benefit-check {
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: bold;
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    padding: 80px 0;
    background: var(--white);
}

.section-title-center {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--black);
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.6);
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card-clean {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 2.5rem 2rem;
    transition: var(--transition);
}

.service-card-clean:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-gold);
}

.service-card-clean h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--black);
}

.service-desc {
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    min-height: 60px;
}

.service-rate {
    background: var(--light-gray);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    border-left: 3px solid var(--primary-gold);
}

.rate-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
}

.rate-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-gold);
    line-height: 1;
}

.rate-suffix {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.95rem;
}

.service-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.btn-service {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-service:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--white);
}

/* ===================================
   CTA Simple Section
   =================================== */
.cta-simple {
    background: var(--light-gray);
    padding: 80px 0;
    text-align: center;
}

.cta-simple h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--black);
}

.cta-simple p {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-simple {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-large {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--primary-gold);
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary-large:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 165, 114, 0.3);
}

.btn-secondary-large {
    display: inline-block;
    padding: 1rem 3rem;
    background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-secondary-large:hover {
    background: var(--black);
    color: var(--white);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--dark-gray);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(197, 165, 114, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-gold);
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Service Pages Styles
   =================================== */
.service-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: var(--white);
}

.service-hero h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.service-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}

.service-content {
    padding: 80px 0;
}

.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
}

.highlight-box {
    background: var(--light-gray);
    border-left: 4px solid var(--primary-gold);
    padding: 2rem;
    margin: 2rem 0;
}

.highlight-box h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--black);
}

.highlight-box p {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.7;
    margin: 0;
}

.highlight-box ul {
    list-style: none;
    padding: 0;
}

.highlight-box ul li {
    padding: 0.5rem 0;
    color: rgba(0, 0, 0, 0.8);
    font-size: 1.05rem;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pros-box,
.cons-box {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.pros-box h3 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.cons-box h3 {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.pros-box ul,
.cons-box ul {
    list-style: none;
    padding: 0;
}

.pros-box ul li,
.cons-box ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

.pros-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.cons-box ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(0, 0, 0, 0.4);
}

.requirements-list ul {
    list-style: none;
    padding: 0;
}

.requirements-list ul li {
    padding: 1rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.7;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.requirements-list ul li:last-child {
    border-bottom: none;
}

.requirements-list ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.requirements-list strong {
    color: var(--black);
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 165, 114, 0.3);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1rem;
}

/* ===================================
   Contact Page Styles
   =================================== */
.contact-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(197, 165, 114, 0.15);
}

.contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--black);
    font-weight: 400;
}

.contact-form > p {
    color: #666;
    margin-bottom: 2rem;
    font-weight: 300;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: var(--black);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 2px rgba(197, 165, 114, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.contact-form button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
}

.contact-form button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Form Messages */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-left: 4px solid #28a745;
}

.form-message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-left: 4px solid #dc3545;
}

.contact-info {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 0;
    height: fit-content;
    border: 1px solid rgba(197, 165, 114, 0.15);
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    color: var(--black);
    font-size: 1.5rem;
    font-weight: 400;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    font-size: 1.3rem;
    color: var(--primary-gold);
    min-width: 24px;
}

.contact-details h4 {
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 0.3rem;
    color: var(--black);
}

.contact-item a,
.contact-details p {
    color: #666;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    margin: 0;
}

.contact-item a:hover {
    color: var(--primary-gold);
}

.business-hours {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.business-hours h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--black);
    font-weight: 400;
}

.business-hours p {
    color: #666;
    font-size: 0.9rem;
    margin: 0.3rem 0;
}
