/* ===== CSS RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Teal/Turquoise Theme (matching Ema Clean branding) */
    --primary-teal: #00a9a5;
    --primary-teal-dark: #008b87;
    --primary-teal-light: #1fc7c3;
    --accent-teal: #20c9c6;
    --light-teal: #e0f7f7;
    --white: #ffffff;
    --off-white: #f8fdfd;
    --gray-100: #f5f5f5;
    --gray-200: #e0e0e0;
    --gray-400: #9e9e9e;
    --gray-600: #757575;
    --gray-800: #424242;
    --text-dark: #212121;
    --shadow-sm: 0 2px 8px rgba(0, 169, 165, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 169, 165, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 169, 165, 0.16);
    
    /* Additional brand colors */
    --yellow-accent: #ffd700;
    --blue-accent: #4a90e2;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-green);
}

.logo-image {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.logo-icon {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

.btn-nav {
    background-color: var(--primary-green);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background-color: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--primary-green-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-block {
    width: 100%;
}

.btn-icon {
    font-size: 1.2rem;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--white);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.highlight {
    color: var(--primary-green);
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    font-weight: 500;
    color: var(--text-dark);
}

.badge-icon {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 80px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
}

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

.service-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid var(--gray-100);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

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

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-green);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 0.75rem;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 80px 0;
    background-color: var(--off-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-intro {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.about-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.list-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.about-list li strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.about-list li p {
    color: var(--gray-600);
    line-height: 1.6;
}

.about-image {
    position: relative;
}

.image-placeholder {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--light-green);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    font-size: 8rem;
    opacity: 0.3;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background-color: var(--light-green);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.contact-link {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1.125rem;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-green-dark);
}

.contact-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* ===== CONTACT FORM ===== */
.contact-form-wrapper {
    background-color: var(--off-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(45, 122, 79, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    text-align: center;
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray-400);
}

.footer-links h4,
.footer-contact h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: var(--gray-400);
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent-green);
}

.footer-contact p {
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        transition: left 0.3s ease;
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

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

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

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

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-features {
        flex-direction: column;
        align-items: stretch;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

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

.hero-content,
.service-card,
.about-content,
.contact-card {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* ===== NEW SERVICE SECTIONS ===== */

/* Service Categories Overview */
.services-overview {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-teal) 0%, var(--white) 100%);
}

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

.category-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-teal);
}

.category-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.category-card h3 {
    color: var(--primary-teal);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.category-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Residential Services */
.residential-services {
    padding: 5rem 0;
    background: var(--white);
}

.residential-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-details {
    list-style: none;
    margin-top: 1.5rem;
    text-align: left;
}

.service-details li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-800);
    line-height: 1.5;
}

.service-details li:before {
    content: "?";
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: 700;
}

.service-note {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--light-teal);
    border-radius: 12px;
}

.service-note p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.service-note a {
    color: var(--primary-teal);
    font-weight: 600;
    text-decoration: underline;
}

/* Commercial Services */
.commercial-services {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--light-teal) 100%);
}

.commercial-services .services-grid.three-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Airbnb Services */
.airbnb-services {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-teal-light) 0%, var(--primary-teal) 100%);
    color: var(--white);
}

.airbnb-services .section-header h2,
.airbnb-services .section-header p {
    color: var(--white);
}

.subtitle-large {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.airbnb-services .service-card {
    background: var(--white);
    color: var(--text-dark);
}

.airbnb-services .service-card.featured {
    border: 3px solid var(--yellow-accent);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

.airbnb-services .service-details strong {
    color: var(--primary-teal);
    display: block;
    margin-bottom: 0.25rem;
}

.airbnb-footer {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.airbnb-footer p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.airbnb-footer .service-types {
    font-style: italic;
    opacity: 0.9;
}

.airbnb-footer .contact-info {
    font-size: 1.3rem;
    font-weight: 700;
}

.airbnb-footer a {
    color: var(--white);
    text-decoration: underline;
}

/* Service Card Enhancements */
.service-card.featured {
    position: relative;
    overflow: hidden;
}

.service-card.featured:before {
    content: "? POPULAR";
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--yellow-accent);
    color: var(--text-dark);
    padding: 0.25rem 3rem;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-grid.three-col {
        grid-template-columns: 1fr;
    }
    
    .service-categories {
        grid-template-columns: 1fr;
    }
    
    .residential-services .services-grid,
    .commercial-services .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Update existing color references */
.logo {
    color: var(--primary-teal);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-teal-dark) 0%, var(--primary-teal) 100%);
}

.btn-nav {
    background-color: var(--primary-teal);
}

.btn-nav:hover {
    background-color: var(--primary-teal-dark);
}

.highlight {
    color: var(--primary-teal);
}

.hero-shape {
    background: linear-gradient(135deg, var(--light-teal) 0%, transparent 100%);
}

.section-header h2 {
    color: var(--primary-teal);
}

.service-icon {
    color: var(--primary-teal);
}

.service-link {
    color: var(--primary-teal);
}

.service-link:hover {
    color: var(--primary-teal-dark);
}

.list-icon {
    color: var(--primary-teal);
}

.contact-icon {
    color: var(--primary-teal);
}

.footer {
    background: linear-gradient(135deg, var(--primary-teal-dark) 0%, var(--primary-teal) 100%);
}
