/* SmartView Web - Light Theme */

body {
    background-color: #f0f2f5;
    color: #333;
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

.sticky-header {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
    z-index: 1000;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.login-button {
    background-color: #007bff;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.login-button:hover {
    background-color: #0056b3;
}

.hero {
    padding: 4rem 2rem;
    text-align: center;
}

.hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #333;
}

.image-viewer {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-container {
    width: 100%;
}

.image-container img {
    width: 100%;
    display: block;
}

.navigation-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.arrow {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.whatsapp-bot {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
}

.whatsapp-bot img {
    width: 40px;
    height: 40px;
}

.workflow, .services, .trust {
    padding: 4rem 2rem;
    text-align: center;
}

.workflow {
    background-color: #ffffff;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.workflow-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.workflow-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    width: 30%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.workflow-card:hover {
    transform: translateY(-10px);
}

.workflow-card .card-visual {
    height: 150px;
    background-color: #e9ecef;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #007bff;
}

.services {
    background-color: #f0f2f5;
}

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

.service-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.service-card .service-icon {
    width: 50px;
    height: 50px;
    background-color: #007bff;
    border-radius: 50%;
    margin-bottom: 1rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

.cta-button {
    display: inline-block;
    margin-top: 1rem;
    background-color: #007bff;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}

.trust {
    background-color: #ffffff;
}

.trust-counter {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.trust-counter .counter {
    color: #007bff;
}

.tour-embed {
    border: 1px solid #ddd;
    border-radius: 15px;
    overflow: hidden;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #e9ecef;
    margin-top: 2rem;
}

/* Glassmorphism Dashboard */
.dashboard-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

body.show-dashboard .dashboard-overlay {
    display: flex;
}

.dashboard-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    width: 80%;
    max-width: 900px;
    position: relative;
}

.close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.dashboard-menu {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.dashboard-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.dashboard-menu-item:hover {
    transform: scale(1.1);
}

.dashboard-menu-item .material-icons {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}
