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

:root {
    --primary-color: #c9a961;
    --dark: #1a1a1a;
    --light: #f8f8f8;
    --white: #ffffff;
    --text-light: #666666;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark);
}

.landing-container {
    min-height: 100vh;
}

/* Compact Header Bar */
.header-bar {
    background: linear-gradient(135deg, var(--dark), #2d2d2d);
    color: var(--white);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.business-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 1px;
}

.tagline {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 10px;
    margin: 0;
}

.social-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.social-link svg,
.social-link .material-icons {
    font-size: 18px;
}

.header-right {
    display: flex;
    gap: 12px;
}

.btn-primary,
.btn-secondary {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.btn-primary:hover {
    background: #b89851;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

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

/* Gallery Section */
.gallery-section {
    padding: 20px;
    background: #f5f5f5;
}

.gallery-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    height: 200px;
    border-radius: 10px;
    background: #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    border: 2px dashed #c0c0c0;
}

.gallery-placeholder {
    font-size: 3rem;
    color: #999;
    margin-bottom: 10px;
}

.placeholder-text {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

.gallery-item:hover {
    transform: scale(1.05);
    background: #d8d8d8;
}

/* Info Section */
.info-section {
    padding: 25px 20px;
    background: var(--light);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.info-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.info-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.info-card p {
    color: var(--text-light);
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 10px;
}

.link:hover {
    text-decoration: underline;
}

/* Testimonials */
.testimonials-section {
    padding: 30px 20px;
    background: var(--white);
    text-align: center;
}

.testimonials-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--light);
    padding: 25px;
    border-radius: 12px;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 15px;
}

.client-name {
    color: var(--text-light);
    font-weight: 500;
}

/* Google Section */
.google-section {
    padding: 30px 20px;
    background: var(--light);
}

.google-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.google-info h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.google-rating {
    margin-bottom: 25px;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.rating-stars .stars {
    color: #fbbc04;
    font-size: 1.3rem;
}

.rating-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--dark);
}

.google-rating p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.google-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: white;
    border: 2px solid #4285f4;
    border-radius: 8px;
    color: #4285f4;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-bottom: 25px;
}

.google-reviews-btn:hover {
    background: #4285f4;
    color: white;
}

.google-reviews-btn img {
    width: 20px;
    height: 20px;
}

.google-badges {
    display: flex;
    gap: 20px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--dark);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.badge .material-icons {
    font-size: 1.2rem;
    color: var(--primary);
}

.google-map {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Footer */
.landing-footer {
    background: var(--dark);
    color: var(--white);
    padding: 20px 15px;
    text-align: center;
}

.footer-content p {
    margin-bottom: 5px;
    opacity: 0.8;
}

/* Sign In Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.modal-header h2 {
    color: var(--dark);
    font-size: 1.5rem;
}

.close-btn {
    width: 35px;
    height: 35px;
    border: none;
    background: var(--light);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body {
    padding: 30px;
}

.signin-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.signin-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.signin-btn:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.signin-btn .material-icons {
    font-size: 2rem;
    color: var(--primary-color);
}

.signin-btn h3 {
    margin-bottom: 5px;
    color: var(--dark);
}

.signin-btn p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.divider {
    text-align: center;
    color: var(--text-light);
    margin: 25px 0;
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #e0e0e0;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.phone-signin h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.phone-signin input {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 15px;
}

.phone-signin input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.full-width {
    width: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-bar {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .header-left {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .business-name {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .header-right {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .gallery-section {
        padding: 15px;
    }
    
    .gallery-preview {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .gallery-item {
        height: 150px;
    }
    
    .gallery-placeholder {
        font-size: 2rem;
    }
    
    
    .info-section,
    .testimonials-section,
    .google-section {
        padding: 20px 15px;
    }
    
    .info-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .info-card,
    .testimonial-card {
        padding: 20px;
    }
    
    .info-icon {
        font-size: 1.5rem;
    }
    
    .info-card h3 {
        font-size: 1.1rem;
    }
    
    .testimonials-section h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .google-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .google-info h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .rating-number {
        font-size: 1.5rem;
    }
    
    .google-reviews-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .google-map {
        height: 250px;
        margin-top: 10px;
    }
    
    .google-badges {
        flex-wrap: wrap;
    }
    
    .badge {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .landing-footer {
        padding: 15px;
    }
    
    .footer-content p {
        font-size: 0.9rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .signin-btn {
        padding: 15px;
    }
    
    .signin-btn .material-icons {
        font-size: 1.5rem;
    }
    
    .signin-btn h3 {
        font-size: 1rem;
    }
    
    .phone-signin input {
        padding: 12px;
        font-size: 0.95rem;
    }
}