/* Real Zun Realty - Brown theme */
:root {
    --brown-900: #2d1810;
    --brown-800: #3d2318;
    --brown-700: #5c3829;
    --brown-600: #7a4d3a;
    --brown-500: #9a6b52;
    --brown-400: #b88a6f;
    --brown-300: #d4ad94;
    --brown-200: #e8d4c4;
    --brown-100: #f5ebe3;
    --cream: #faf6f2;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--brown-800);
    background: var(--cream);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(45, 24, 16, 0.95);
    color: var(--brown-100);
    padding: 0.75rem 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 100px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: var(--brown-200);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--white);
}

.header-phone {
    color: var(--brown-200);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    transition: color 0.2s;
}

.header-phone:hover {
    color: var(--white);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--brown-200);
}

/* Hero */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brown-700);
    margin-top: 100px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(45, 24, 16, 0.5) 0%, rgba(45, 24, 16, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 640px;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    margin-bottom: 1rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 1.75rem;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s, transform 0.15s;
}

.btn-primary {
    background: var(--brown-600);
    color: var(--white);
    border: 2px solid var(--brown-400);
}

.btn-primary:hover {
    background: var(--brown-500);
    transform: translateY(-2px);
}

/* About */
.about {
    padding: 4.5rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.about-intro {
    text-align: center;
    max-width: 560px;
    margin: -0.5rem auto 1.5rem;
    color: var(--brown-700);
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-content {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    padding: 0 1rem;
}

.about-content p {
    margin-bottom: 1rem;
    color: var(--brown-700);
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.about-feature {
    flex: 1;
    min-width: 180px;
    max-width: 260px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(45, 24, 16, 0.08);
    border-top: 4px solid var(--brown-600);
    transition: transform 0.2s, box-shadow 0.2s;
}

.about-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(45, 24, 16, 0.12);
}

.about-feature-number {
    display: block;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--brown-700);
    margin-bottom: 0.35rem;
}

.about-feature-label {
    font-size: 0.95rem;
    color: var(--brown-600);
    font-weight: 500;
}

.section-title {
    font-size: 2rem;
    color: var(--brown-800);
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--brown-600);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

/* Services */
.services {
    padding: 4.5rem 0;
    background: var(--brown-100);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(45, 24, 16, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    border-top: 4px solid var(--brown-500);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(45, 24, 16, 0.12);
}

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

.service-card h3 {
    color: var(--brown-800);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--brown-600);
}

/* Why Us */
.why-us {
    padding: 4.5rem 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.why-item {
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 8px;
    border-bottom: 4px solid var(--brown-500);
}

.why-item h3 {
    color: var(--brown-800);
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.why-item p {
    font-size: 0.95rem;
    color: var(--brown-600);
}

/* Contact */
/* Serving Miami */
.miami {
    padding: 4rem 0;
    background: var(--brown-600);
    color: var(--white);
}

.miami .section-title {
    color: var(--white);
}

.miami .section-title::after {
    background: var(--brown-200);
}

.miami-text {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Contact */
.contact {
    padding: 4.5rem 0;
    background: linear-gradient(180deg, var(--brown-100) 0%, var(--cream) 100%);
}

.contact-intro {
    text-align: center;
    max-width: 520px;
    margin: -0.5rem auto 2.5rem;
    color: var(--brown-700);
    font-size: 1.05rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
    max-width: 960px;
    margin: 0 auto;
}

.contact-form-card,
.contact-info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(45, 24, 16, 0.08);
}

.contact-form-title,
.contact-info-title {
    font-size: 1.15rem;
    color: var(--brown-800);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--brown-200);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.contact-form label {
    font-weight: 600;
    color: var(--brown-800);
    font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.85rem 1rem;
    border: 2px solid var(--brown-300);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--cream);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--brown-400);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brown-600);
    box-shadow: 0 0 0 3px rgba(122, 77, 58, 0.15);
}

.contact-form .btn-primary {
    margin-top: 0.25rem;
    padding: 0.9rem 1.5rem;
}

.contact-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-info-list li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--brown-200);
    color: var(--brown-700);
}

.contact-info-list li:last-of-type {
    border-bottom: none;
}

.contact-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--brown-500);
}

.contact-info-list a {
    color: var(--brown-700);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-info-list a:hover {
    color: var(--brown-600);
}

.contact-social {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--brown-200);
}

.contact-social-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--brown-500);
    margin-bottom: 0.75rem;
}

.contact-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.contact-social-links a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--brown-100);
    color: var(--brown-700);
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.contact-social-links a:hover {
    background: var(--brown-600);
    color: var(--white);
}

/* Footer */
.footer {
    background: var(--brown-900);
    color: var(--brown-200);
    padding: 2rem 0;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-brand {
    display: inline-block;
    text-decoration: none;
}

.footer-brand img {
    height: 44px;
    width: auto;
    display: block;
}

.footer-copy {
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
}

.footer-nav a {
    color: var(--brown-200);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 1.25rem;
}

.footer-social a {
    color: var(--brown-200);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-social a:hover {
    color: var(--white);
}

/* Mobile */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 52px;
        right: 0;
        flex-direction: column;
        background: var(--brown-800);
        padding: 2rem;
        gap: 1rem;
        min-width: 200px;
        transform: translateX(100%);
        transition: transform 0.3s;
        box-shadow: -4px 4px 12px rgba(0, 0, 0, 0.2);
    }

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

    .nav-toggle {
        display: flex;
    }

    .about-features {
        flex-direction: column;
        align-items: center;
    }

    .about-feature {
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }

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

    .contact-form-card,
    .contact-info-card {
        padding: 1.5rem;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* WhatsApp float button */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 99;
    display: block;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-float img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
