/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #000;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography */
h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo-area {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
    margin: 0;
}

.logo-green {
    color: #7ed957;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #7ed957;
}

.nav-link.active {
    color: #7ed957;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #7ed957;
    color: #000;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-whatsapp:hover {
    background: #6ec747;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(126, 217, 87, 0.3);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Pic/hero.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.85) 50%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 700px;
    color: #fff;
}

/* Hide parking image on desktop */
.hero-parking-image {
    display: none;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-title-green {
    color: #7ed957;
    display: block;
}

.hero-divider {
    width: 80px;
    height: 4px;
    background: #7ed957;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 32px;
    height: 32px;
    color: #7ed957;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-text strong {
    font-size: 1.1rem;
    color: #fff;
}

.feature-text span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #7ed957;
    color: #000;
}

.btn-primary:hover {
    background: #6ec747;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(126, 217, 87, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.phone-icon {
    width: 20px;
    height: 20px;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.arrow-icon {
    width: 20px;
    height: 20px;
    color: #7ed957;
}

/* ==================== BENEFITS BAR ==================== */
.benefits-bar {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-icon {
    width: 36px;
    height: 36px;
    color: #7ed957;
    flex-shrink: 0;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.benefit-text strong {
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
}

.benefit-text span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.benefit-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* ==================== SECTIONS (keep existing) ==================== */

/* Why Us Section */
.why-us {
    padding: 80px 20px;
    background: #f9fafb;
}

.why-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.why-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1e40af;
}

.why-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4b5563;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Before/After Section */
.before-after {
    padding: 80px 20px;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Placeholder Images */
.placeholder-image {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 1rem;
    text-align: center;
    padding: 20px;
}

/* Services Section */
.services {
    padding: 80px 20px;
    background: #f9fafb;
}

.services-list {
    max-width: 700px;
    margin: 0 auto;
    list-style: none;
}

.services-list li {
    padding: 20px 20px 20px 60px;
    margin-bottom: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.services-list li:before {
    content: "✓";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Finishing Section */
.finishing {
    padding: 80px 20px;
    background: white;
}

.finishing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 2rem;
}

.finishing-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
}

.finishing-images .placeholder-image {
    min-height: 400px;
    border-radius: 12px;
}

/* Process Section */
.process {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
}

.process h2 {
    color: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: white;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step p {
    opacity: 0.95;
    line-height: 1.6;
}

/* Management Companies Section */
.management-companies {
    padding: 80px 20px;
    background: #f9fafb;
    text-align: center;
}

.management-companies p {
    max-width: 700px;
    margin: 0 auto 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
}

.management-companies .btn {
    margin-top: 1.5rem;
}

/* Portfolio Section */
.portfolio {
    padding: 80px 20px;
    background: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.portfolio-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.portfolio-item .placeholder-image {
    min-height: 300px;
}

/* FAQ Section */
.faq {
    padding: 80px 20px;
    background: #f9fafb;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #4b5563;
    line-height: 1.8;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    text-align: center;
}

.contact h2 {
    color: white;
    margin-bottom: 1rem;
}

.contact > .container > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 3rem;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    background: white;
    color: #333;
    font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9ca3af;
}

.contact-form textarea {
    resize: vertical;
    margin-bottom: 20px;
}

.contact-form button {
    width: 100%;
}

.contact-info {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-link {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Footer */
footer {
    padding: 30px 20px;
    background: #1e293b;
    color: white;
    text-align: center;
}

footer p {
    margin: 0;
    opacity: 0.8;
}

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 1200px) {
    .nav-menu {
        gap: 20px;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .benefits-grid {
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .benefit-divider {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }

    .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    /* PREVENT HORIZONTAL OVERFLOW */
    html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* MOBILE HEADER */
    .header {
        padding: 16px 0;
    }

    .header-content {
        gap: 12px;
    }

    .container {
        padding: 0 16px;
        max-width: 100%;
    }

    .logo {
        font-size: 1.2rem;
        letter-spacing: 1px;
        white-space: nowrap;
    }

    .logo-subtitle {
        font-size: 0.7rem;
        white-space: nowrap;
    }

    .btn-whatsapp {
        padding: 10px 18px;
        font-size: 0.85rem;
        gap: 6px;
    }

    .whatsapp-icon {
        width: 18px;
        height: 18px;
    }

    /* MOBILE HERO */
    .hero {
        padding: 100px 0 0;
        min-height: auto;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .hero-background {
        display: none;
    }

    .hero-overlay {
        display: none;
    }

    .hero .container {
        padding: 0;
        width: 100%;
        max-width: 100%;
    }

    .hero-content {
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 16px;
    }

    .hero-title {
        font-size: clamp(42px, 11vw, 54px);
        line-height: 1;
        margin-bottom: 1rem;
        font-weight: 900;
    }

    .hero-title-green {
        display: block;
        margin-top: 0.2rem;
    }

    .hero-divider {
        width: 60px;
        height: 4px;
        margin: 0 auto 1.5rem;
    }

    .hero-description {
        font-size: clamp(18px, 5vw, 22px);
        line-height: 1.5;
        margin-bottom: 35px;
        max-width: 90%;
    }

    /* MOBILE PARKING IMAGE */
    .hero-parking-image {
        display: block;
        width: 100%;
        max-width: 100%;
        height: 380px;
        margin: 0 0 -60px 0;
        padding: 0 16px;
        position: relative;
        overflow: hidden;
        box-sizing: border-box;
    }

    .hero-parking-image img {
        width: 100%;
        max-width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block;
        border-radius: 8px;
    }

    .hero-parking-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 16px;
        right: 16px;
        height: 40px;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
        z-index: 1;
        border-radius: 8px 8px 0 0;
    }

    .hero-parking-image::after {
        content: '';
        position: absolute;
        bottom: 60px;
        left: 16px;
        right: 16px;
        height: 120px;
        background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
        z-index: 1;
        pointer-events: none;
    }

    /* MOBILE FEATURES ON IMAGE */
    .hero-features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        margin-bottom: 0;
        position: relative;
        z-index: 2;
        padding: 28px 16px;
        background: #000;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        padding: 0 10px;
        border-left: 1px solid rgba(255, 255, 255, 0.15);
        min-height: 120px;
        display: flex;
        justify-content: flex-start;
    }

    .feature:first-child {
        border-right: 1px solid rgba(255, 255, 255, 0.15);
        border-left: none;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .feature-text {
        align-items: center;
        gap: 4px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .feature-text strong {
        font-size: 0.95rem;
        font-weight: 700;
    }

    .feature-text span {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    /* MOBILE CTA BUTTONS */
    .hero-cta {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 100%;
        padding: 0 16px;
        margin-bottom: 1.5rem;
        margin-top: 2rem;
        box-sizing: border-box;
    }

    .btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 18px 24px;
        font-size: 1.05rem;
        font-weight: 700;
        border-radius: 12px;
        box-sizing: border-box;
    }

    .btn-primary {
        height: 62px;
    }

    .btn-secondary {
        height: 56px;
    }

    /* MOBILE HERO NOTE */
    .hero-note {
        padding: 0 16px;
        margin-bottom: 3rem;
        font-size: 0.9rem;
        flex-direction: column;
        gap: 8px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .arrow-icon {
        transform: rotate(180deg);
        width: 24px;
        height: 24px;
    }

    /* MOBILE BENEFITS BAR */
    .benefits-bar {
        padding: 32px 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        width: 100%;
        max-width: 100%;
    }

    .benefit {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .benefit-icon {
        width: 42px;
        height: 42px;
    }

    .benefit-text {
        align-items: center;
        gap: 4px;
    }

    .benefit-text strong {
        font-size: 1rem;
    }

    .benefit-text span {
        font-size: 0.8rem;
    }

    .benefit-divider {
        display: none;
    }

    /* OTHER SECTIONS */
    .finishing-content {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

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

    .gallery-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .logo {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    .logo-subtitle {
        font-size: 0.65rem;
    }

    .btn-whatsapp {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .whatsapp-icon {
        width: 18px;
        height: 18px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .feature-text strong {
        font-size: 1rem;
    }

    .feature-text span {
        font-size: 0.85rem;
    }

    .btn {
        padding: 14px 24px;
        font-size: 1rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .benefit-text strong {
        font-size: 0.9rem;
    }

    .benefit-text span {
        font-size: 0.75rem;
    }
}
