/* ============================================
   Perfect Touch Wallpapers — Main Stylesheet
   Ultra-Premium Designer Aesthetic
   ============================================ */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* === CSS VARIABLES === */
:root {
    --primary-bg: #121416;
    --secondary-bg: #23272C;
    --light-section: #F4F2ED;
    --text-light: #FFFFFF;
    --text-dark: #202428;
    --accent: #B8B0A3;
    --accent-hover: #A39B8F;
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
    --btn-height: 56px;
    --btn-radius: 8px;
    --max-width: 1280px;
    --section-padding: 100px 0;
    --transition: all 0.3s ease;
}

/* === RESET === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--primary-bg);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* === CONTAINER === */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* === HEADER === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(18, 20, 22, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184, 176, 163, 0.1);
    padding: 16px 0;
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent);
}

/* === NAVIGATION === */
.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    opacity: 0.85;
    padding: 8px 0;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown > a::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.3s;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--secondary-bg);
    border: 1px solid rgba(184, 176, 163, 0.15);
    border-radius: 12px;
    padding: 12px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(4px);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.88rem;
    color: var(--text-light);
    opacity: 0.8;
}

.dropdown-menu a:hover {
    background: rgba(184, 176, 163, 0.1);
    opacity: 1;
    color: var(--accent);
}

/* Header contact */
.header-contact {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
}

.header-phone {
    color: var(--accent);
    font-weight: 600;
}

.header-email {
    color: var(--text-light);
    opacity: 0.7;
}

/* === MOBILE MENU === */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -50%;
    width: 50%;
    height: 100vh;
    background: var(--secondary-bg);
    z-index: 1050;
    padding: 80px 30px 40px;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow-y: auto;
    border-left: 1px solid rgba(184, 176, 163, 0.1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    border: 1px solid rgba(184, 176, 163, 0.2);
    border-radius: 8px;
    background: transparent;
    transition: var(--transition);
}

.mobile-nav-close:hover {
    background: rgba(184, 176, 163, 0.1);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    border-bottom: 1px solid rgba(184, 176, 163, 0.08);
}

.mobile-nav-links a:hover {
    color: var(--accent);
}

.mobile-dropdown-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    border-bottom: 1px solid rgba(184, 176, 163, 0.08);
    cursor: pointer;
}

.mobile-dropdown-content {
    display: none;
    padding-left: 16px;
}

.mobile-dropdown-content.active {
    display: block;
}

.mobile-dropdown-content a {
    padding: 10px 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1040;
}

.mobile-overlay.active {
    display: block;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: var(--btn-height);
    padding: 0 32px;
    border-radius: var(--btn-radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    gap: 8px;
}

.btn-primary {
    background: var(--accent);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 0 30px rgba(184, 176, 163, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--text-dark);
}

.btn-dark {
    background: var(--primary-bg);
    color: var(--text-light);
}

.btn-dark:hover {
    background: var(--secondary-bg);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18,20,22,0.9) 0%, rgba(18,20,22,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-text h1 span {
    color: var(--accent);
}

.hero-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.hero-stat {
    text-align: center;
}

.hero-stat .number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.hero-stat .label {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 4px;
}

/* === SECTIONS === */
.section {
    padding: var(--section-padding);
}

.section-dark {
    background: var(--primary-bg);
}

.section-darker {
    background: var(--secondary-bg);
}

.section-light {
    background: var(--light-section);
    color: var(--text-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.4rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-light .section-header h2 {
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.05rem;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

.section-light .section-header p {
    color: var(--text-dark);
    opacity: 0.7;
}

/* === SERVICES GRID === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--secondary-bg);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(184, 176, 163, 0.08);
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(184, 176, 163, 0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.service-card-img {
    height: 220px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 28px;
}

.service-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-card-content p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 20px;
}

.service-card-content .btn {
    height: 44px;
    font-size: 0.85rem;
    padding: 0 20px;
}

/* === AREAS GRID === */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.area-card {
    background: var(--secondary-bg);
    border: 1px solid rgba(184, 176, 163, 0.08);
    border-radius: 12px;
    padding: 20px 24px;
    text-align: center;
    transition: var(--transition);
}

.area-card:hover {
    border-color: var(--accent);
    background: rgba(184, 176, 163, 0.05);
}

.area-card h3 {
    font-size: 1rem;
    font-weight: 600;
}

/* === FORM STYLES === */
.feedback-form-container {
    background: var(--secondary-bg);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(184, 176, 163, 0.1);
}

.feedback-form-container h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
    text-align: center;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-form .form-group {
    position: relative;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(184, 176, 163, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    background: rgba(184, 176, 163, 0.05);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
    margin-bottom: 16px;
}

.form-submit {
    text-align: center;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: var(--btn-height);
    padding: 0 48px;
    background: var(--accent);
    color: var(--text-dark);
    border: none;
    border-radius: var(--btn-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--accent-hover);
    box-shadow: 0 0 30px rgba(184, 176, 163, 0.2);
}

#form-success {
    text-align: center;
    padding: 40px 20px;
}

#form-success p {
    font-size: 1.1rem;
    color: var(--accent);
}

/* === LIGHT SECTION FORM === */
.section-light .feedback-form-container {
    background: #FFFFFF;
    border-color: rgba(32, 36, 40, 0.1);
}

.section-light .contact-form input,
.section-light .contact-form textarea {
    background: rgba(0,0,0,0.03);
    border-color: rgba(32, 36, 40, 0.15);
    color: var(--text-dark);
}

.section-light .contact-form input::placeholder,
.section-light .contact-form textarea::placeholder {
    color: rgba(32, 36, 40, 0.4);
}

/* === MAP === */
.map-container {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(184, 176, 163, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* === GALLERY === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* === FAQ === */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(184, 176, 163, 0.1);
    padding: 24px 0;
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    margin-top: 16px;
    font-size: 0.95rem;
    opacity: 0.75;
    line-height: 1.8;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* === FOOTER === */
.site-footer {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(184, 176, 163, 0.08);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    font-size: 1.3rem;
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.6;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-col a {
    display: block;
    font-size: 0.88rem;
    opacity: 0.65;
    padding: 6px 0;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(184, 176, 163, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    opacity: 0.5;
}

/* === STICKY QUOTE BUTTON === */
.sticky-quote-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
    height: var(--btn-height);
    padding: 0 28px;
    background: var(--accent);
    color: var(--text-dark);
    border: none;
    border-radius: var(--btn-radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(184, 176, 163, 0.3);
}

.sticky-quote-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(184, 176, 163, 0.4);
}

/* === MODAL === */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--primary-bg);
    border-radius: 20px;
    padding: 40px;
    max-width: 560px;
    width: 100%;
    position: relative;
    border: 1px solid rgba(184, 176, 163, 0.15);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--text-light);
    cursor: pointer;
    border: 1px solid rgba(184, 176, 163, 0.2);
    border-radius: 8px;
    background: transparent;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(184, 176, 163, 0.1);
}

/* === BREADCRUMB === */
.breadcrumb {
    padding: 100px 0 20px;
    font-size: 0.85rem;
    opacity: 0.6;
}

.breadcrumb a {
    color: var(--accent);
    opacity: 1;
}

.breadcrumb span {
    margin: 0 8px;
}

/* === CTA SECTION === */
.cta-block {
    text-align: center;
    padding: 40px 0;
}

.cta-block p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.cta-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* === CONTENT BLOCKS === */
.content-block {
    margin-bottom: 60px;
}

.content-block h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.content-block h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.content-block p {
    margin-bottom: 16px;
    opacity: 0.85;
    line-height: 1.8;
}

.content-block ul,
.content-block ol {
    margin: 16px 0;
    padding-left: 24px;
}

.content-block ul li,
.content-block ol li {
    margin-bottom: 10px;
    opacity: 0.8;
    line-height: 1.7;
    list-style: disc;
}

.content-block ol li {
    list-style: decimal;
}

.section-light .content-block h2,
.section-light .content-block h3 {
    color: var(--text-dark);
}

.section-light .content-block p,
.section-light .content-block li {
    color: var(--text-dark);
}

/* === TWO COLUMN LAYOUT === */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-col-img {
    border-radius: 16px;
    overflow: hidden;
}

.two-col-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* === NEIGHBORHOODS LIST === */
.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin: 20px 0;
}

.neighborhood-item {
    background: rgba(184, 176, 163, 0.05);
    border: 1px solid rgba(184, 176, 163, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.9rem;
    text-align: center;
}

/* === PAGE HEADER === */
.page-header {
    padding: 140px 0 60px;
    text-align: center;
    background: var(--secondary-bg);
    position: relative;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-text h1 {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .nav-links,
    .header-contact {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .sticky-quote-btn {
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
    }
    
    .sticky-quote-btn:hover {
        transform: translateX(50%) translateY(-2px);
    }
    
    .feedback-form-container {
        padding: 28px 20px;
    }
    
    .modal-content {
        padding: 28px 20px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.7rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
}

/* === ANIMATIONS === */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.error-message {
    animation: fadeIn 0.3s ease;
}

/* === UTILITIES === */
.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
