
body {
    background-color: #E8D8C4;
    margin: 0;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    font-family: Arial, sans-serif;
}

.nav1 {
    background-color: #561C24;
    width: 100%;
    max-width: 950px;
    height: 65px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.links-group {
    display: flex;
    gap: 25px;
}

.links-group a {
    color: #E8D8C4;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: 0.3s;
}

.links-group a:hover {
    color: #ffffff;
}

.search-container {
    display: flex;
    align-items: center;
}

.search-input {
    width: 0;
    opacity: 0;
    border: none;
    outline: none;
    border-radius: 20px;
    transition: 0.4s ease;
    background-color: #E8D8C4;
    color: #561C24;
    font-size: 12px;
    direction: ltr;
}

.search-input.active {
    width: 180px;
    opacity: 1;
    padding: 6px 15px;
    margin-left: 10px;
}

.nav-icon-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}
.float-logo{
     
    position: fixed !important; 
    top: 20px !important;
    left: 20px !important;
    width: 100px !important; 
    height: 100px !important; 
    border-radius: 50% !important; 
    object-fit: cover !important;
    z-index: 99999 !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    cursor: pointer;
}

.nav-img {
    width: 30px;
    height: auto;
    display: block;
}
.nav-logo {
    width: 30px;
    height: 30px;;
    filter: brightness(0) invert(1); 
   border: none;
}

.nav-logo:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}
.profile-card {
    background-color: #DFD0B8;
    width: 100%;
    max-width: 950px;

    border-radius: 40px;
    padding: 25px;
    margin-top: 20px;
    box-sizing: border-box;
}

.main-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
}
.maintenance-section img {
    width: 60px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #561C24;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
}

.bottom-content {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 25px;
    padding: 0 10px;
}

.circles-group {
    display: flex;
    gap: 15px;
}

.mini-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #561C24;
    overflow: hidden;
}

.mini-circle img {
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
    filter: contrast(1,2);
    object-fit: cover;
}

.bio-text {
    padding-left: 20px;
    text-align: left;
}

.bio-text h3 {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #444;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.bio-text h3 span {
    color: #561C24;
}

.bio-text p {
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    max-width: 600px;
    margin: 0;
}

.bio-text p strong {
    color: #222;
    font-weight: 700;
}

.bio-text p em {
    color: #561C24;
    font-style: italic;
    font-weight: 600;
}
#chat-circle {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #561C24;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 10000;
    transition: transform 0.3s ease;
    font-size: 24px;
}

#chat-circle:hover { 
    transform: scale(1.1); 
}

#chat-box {
    position: fixed;
    bottom: 95px;
    right: 25px;
    width: 330px;
    height: 450px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    z-index: 10000;
    overflow: hidden;
    font-family: 'Segoe UI', Arial, sans-serif;
    border: 1px solid #eee;
}

.chat-header {
    background: #561C24;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

#chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.msg {
    padding: 10px 14px;
    border-radius: 15px;
    font-size: 14px;
    max-width: 85%;
    line-height: 1.6;
    word-wrap: break-word;
}

.bot {
    background: #ffffff;
    color: #333;
    align-self: flex-start;
    border: 1px solid #ddd;
    border-left: 4px solid #561C24;
    border-bottom-left-radius: 2px;
}

.user {
    background: #561C24;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.whatsapp-link {
    display: inline-block;
    margin-top: 8px;
    color: #25d366;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid #25d366;
    padding: 5px 10px;
    border-radius: 8px;
    transition: 0.3s;
}

.whatsapp-link:hover {
    background: #25d366;
    color: white;
}

.chat-input-area {
    display: flex;
    padding: 12px;
    border-top: 1px solid #eee;
    background: white;
}

.chat-input-area input {
    flex: 1;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 20px;
    outline: none;
    margin-right: 8px;
}

.chat-input-area button {
    background: #561C24;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.chat-input-area button:hover {
    background: #561C24;
}
.maintenance-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card {
    background-color: #E8D8C4;
    border: 1px solid #561C24;
    border-radius: 25px;
    padding: 50px 35px;
    width: 380px;
    text-align: center;
    text-decoration: none;
    color: #333333;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    border-color: #561C24;
}

.card .icon {
    font-size: 60px;
    margin-bottom: 25px;
}

.card h3 {
    font-size: 28px;
    color: #561C24;
    margin-bottom: 20px;
    font-weight: 700;
}

.card p {
    font-size: 17px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 30px;
    height: 80px;
}

.btn-label {
    display: inline-block;
    padding: 12px 35px;
    background-color: #561C24;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
}

.card:hover .btn-label {
    background-color: #561C24;
}
.site-footer {
    background-color: #561C24;
    color: #a0a0a0;
    padding: 15px 0;
    font-family: 'Inter', sans-serif;
    width: 100%;
    margin-top: 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    color: #ffffff;
    font-size: 14px;
    margin: 0;
    font-weight: 600;
    white-space: nowrap;
}

.footer-description {
    font-size: 11px;
    line-height: 1.2;
    color: #888;
    max-width: 500px;
    margin: 0;
}

.footer-right .footer-nav {
    display: flex;
    gap: 20px;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
}

.footer-bottom {
    max-width: 1200px;
    margin: 10px auto 0 auto;
    padding: 0 40px;
}

.footer-line {
    height: 1px;
    background-color: #4a4a4a;
    margin-bottom: 8px;
}

.footer-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.last-update, .copyright {
    font-size: 9px;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .nav1 {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
    }

    .links-group {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 15px;
        width: 100%;
    }

    .links-group a {
        font-size: 14px;
        padding: 5px 8px;
        white-space: nowrap;
    }

    .float-logo {
        width: 50px;
        height: 50px;
        top: 10px;
        left: 10px;
    }

    .grid-container {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .h-modal-content {
        width: 95%;
        padding: 20px;
    }

    .h-device-row {
        flex-direction: column;
        gap: 15px;
    }
}
.reviews-display {
    padding: 50px 20px;
    background-color: #E8D8C4; 
    text-align: center;
}

.section-title {
    color: #561C24;
    margin-bottom: 30px;
    font-size: 28px;
}

.reviews-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.review-card {
    background: #e4d7c7;
    border: 2px solid #561C24;
    border-radius: 15px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-stars {
    color: #561C24;
    font-size: 20px;
    margin-bottom: 10px;
}

.review-text {
    font-style: italic;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
}

.review-author {
    font-weight: bold;
    color: #561C24;
    display: block;
}

@media (max-width: 768px) {
    .review-card {
        width: 100%;
        max-width: 350px;
    }
}
.add-review-section {
    margin: 20px auto; 
    padding: 15px 30px; 
    background-color: #E8D8C4;
    border: 2px solid #561C24;
    border-radius: 12px;
    max-width: 950px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row; 
    flex-wrap: wrap; 
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

#user-name {
    flex: 1; 
    min-width: 200px;
    padding: 8px 12px;
    border: 1px solid #561C24;
    border-radius: 8px;
    background-color: #E8D8C4;
}

#user-review {
    flex: 2; 
    min-width: 300px;
    height: 40px; 
    padding: 8px 12px;
    border: 1px solid #561C24;
    border-radius: 8px;
    background-color: #E8D8C4;
    resize: none;
}

.stars-input {
    display: flex;
    flex-direction: row-reverse;
    gap: 3px;
}

.submit-review-btn {
    background-color: #561C24;
    color: white;
    border: none;
    padding: 8px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .input-wrapper {
        flex-direction: column;
    }
    #user-review {
        height: 60px;
    }
}