:root {
    --primary-color: #ff4757;
    --secondary-color: #2f3542;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --white-color: #ffffff;
    --black-color: #000000;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white-color);
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-family: 'Montserrat', sans-serif;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
}

section {
    padding: 80px 5%;
}

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

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background-color: #ff2e43;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

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

.btn-secondary:hover {
    background-color: #1e232d;
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-whatsapp:hover {
    background-color: #1da851;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

/* Logo Styles - CLEAN VERSION */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--black-color);
}

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

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    transition: var(--transition);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1523381210434-271e8be1f52b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white-color);
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero .tagline {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Designs Section */
.designs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.design-card {
    background-color: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.design-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.design-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.design-info {
    padding: 20px;
}

.design-name {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.design-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.design-options {
    margin-bottom: 15px;
}

.design-option {
    margin-bottom: 10px;
}

.design-option label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
}

/* Reviews Section */
.reviews {
    background-color: #f8f9fa;
}

.reviews-container {
    max-width: 900px;
    margin: 0 auto;
}

.reviews-placeholder {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.reviews-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Price Section */
.pricing-table {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.price-card {
    background-color: var(--white-color);
    border-radius: 8px;
    padding: 30px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: var(--shadow);
    text-align: center;
}

.price-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    position: relative;
}

.price-card.featured::before {
    content: "MOST POPULAR";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-header {
    margin-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price span {
    font-size: 1rem;
    color: var(--gray-color);
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* How to Order Section */
.steps-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 20px;
    margin: 10px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.step-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    border-radius: 50%;
    line-height: 30px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* About Section */
.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-content {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.about-features {
    flex: 1;
    min-width: 300px;
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-weight: 600;
}

.features-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Location Section */
.location-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.map-container {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.location-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h3 {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.info-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Contact Section */
.contact-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 200px;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white-color);
    text-align: center;
    padding: 30px 0;
}

/* Footer Logo - CLEAN VERSION */
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    gap: 15px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    display: block;
}

.footer-logo span {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white-color);
}

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

.copyright {
    margin-top: 20px;
    opacity: 0.8;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 100;
    transition: var(--transition);
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #1da851;
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .designs-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white-color);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hero .tagline {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
    }
    
    section {
        padding: 60px 5%;
    }
    
    .price-card.featured {
        transform: none;
    }
    
    /* Responsive logo */
    .logo-img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.8rem;
    }
    
    .footer-logo-img {
        height: 40px;
    }
    
    .footer-logo span {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.3rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .designs-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        min-width: 100%;
    }
    
    /* Smaller logo for mobile */
    .logo-img {
        height: 30px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .footer-logo {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-logo-img {
        height: 35px;
        margin-right: 0;
    }
    
    .footer-logo span {
        font-size: 1.5rem;
    }
}

/* Image fallback style */
.image-fallback {
    width: 100%;
    height: 250px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.image-fallback div {
    text-align: center;
}

.image-fallback div div:first-child {
    font-size: 48px;
}


/* ===== GOOGLE REVIEWS WIDGET STYLES ===== */
.google-reviews-widget {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
}

.reviews-widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
}

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

.google-icon svg {
    display: block;
}

.header-text h3 {
    margin: 0 0 5px 0;
    font-size: 22px;
    color: #3c4043;
    font-weight: 600;
}

.header-text p {
    margin: 0;
    color: #5f6368;
    font-size: 14px;
}

.overall-rating {
    text-align: right;
}

.rating-stars {
    color: #FFC107;
    font-size: 18px;
    margin-bottom: 5px;
}

.rating-score {
    font-size: 36px;
    font-weight: 700;
    color: #202124;
    line-height: 1;
}

.rating-count {
    font-size: 14px;
    color: #5f6368;
    margin-top: 4px;
}

/* Reviews Container */
.reviews-container {
    padding: 30px;
    min-height: 300px;
    position: relative;
}

.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    color: #666;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #4285F4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Individual Review */
.review-item {
    display: none;
    animation: fadeIn 0.5s ease;
}

.review-item.active {
    display: block;
}

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

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

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

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.reviewer-details h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #202124;
}

.reviewer-stars {
    color: #FFC107;
    font-size: 14px;
}

.review-time {
    color: #5f6368;
    font-size: 14px;
    white-space: nowrap;
}

.review-content {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
}

.review-text {
    color: #3c4043;
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
    position: relative;
    padding-left: 20px;
}

.review-text:before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 40px;
    color: #ff4757;
    font-family: serif;
    line-height: 1;
}

.review-response {
    background: #e8f4fd;
    border-radius: 8px;
    padding: 15px;
    border-left: 4px solid #4285F4;
    margin-top: 15px;
}

.response-label {
    font-weight: 600;
    color: #202124;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}

.response-text {
    color: #3c4043;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Controls */
.review-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-top: 1px solid #eee;
    gap: 20px;
}

.control-btn {
    background: #f8f9fa;
    border: 1px solid #dadce0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #5f6368;
    transition: all 0.3s ease;
    font-size: 18px;
}

.control-btn:hover {
    background: #4285F4;
    color: white;
    border-color: #4285F4;
}

.review-counter {
    font-size: 16px;
    color: #5f6368;
    font-weight: 600;
    min-width: 80px;
    text-align: center;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 25px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.view-all-btn {
    background: white;
    color: #4285F4;
    border: 2px solid #4285F4;
}

.view-all-btn:hover {
    background: #4285F4;
    color: white;
}

.write-review-btn {
    background: #34A853;
    color: white;
    border: 2px solid #34A853;
}

.write-review-btn:hover {
    background: #2d8c47;
    border-color: #2d8c47;
}

/* Responsive */
@media (max-width: 768px) {
    .reviews-widget-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .header-left {
        flex-direction: column;
        text-align: center;
    }
    
    .header-text h3 {
        font-size: 20px;
    }
    
    .overall-rating {
        text-align: center;
    }
    
    .review-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .review-time {
        align-self: flex-start;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}


/* Simple Location Section */
.map-clickable {
    margin-bottom: 40px;
}

.map-clickable a {
    text-decoration: none;
    color: inherit;
}

.map-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 50px 30px;
    text-align: center;
    color: white;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.map-placeholder i {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.map-placeholder h3 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.map-placeholder p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.map-placeholder .btn {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.map-placeholder .btn:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

/* Location Info */
.location-info-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.info-box {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-content h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 20px;
}

.info-content p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Directions Button */
.directions-container {
    text-align: center;
    margin-top: 40px;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #34A853;
    color: white;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.directions-btn:hover {
    background: #2d8c47;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 168, 83, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .location-info-simple {
        grid-template-columns: 1fr;
    }
    
    .info-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .map-placeholder {
        padding: 40px 20px;
    }
    
    .map-placeholder h3 {
        font-size: 24px;
    }
}
