/*
Theme Name: 1st Movers Theme
Theme URI: https://yourwebsite.com
Author: Your Name
Author URI: https://yourwebsite.com
Description: Professional moving company theme with ratings and chatbot
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: 1st-movers
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}



.site-branding .site-logo {
    width: 100% !important;
    height: 100px !important;
   
   
    display: block !important;

   
}

.header-contact {
    display: flex;
    gap: 20px;
    align-items: center;
}

.phone-number {
    font-size: 24px;
    font-weight: bold;
    color: #e31e24;
    text-decoration: none;
}

.btn {
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-primary {
    background: #e31e24;
    color: #fff;
}

.btn-primary:hover {
    background: #c41a1f;
}

/* Navigation */
.main-navigation {
    background: #fff;
    border-top: 1px solid #eee;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.nav-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 15px 0;
    display: block;
    transition: color 0.3s;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
    color: #e31e24;
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 20px;
}

/* Callback Form */
.callback-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.callback-form h3 {
    color: #e31e24;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.g-recaptcha {
    margin-bottom: 15px;
}

/* Services Section */
.services-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.service-card h3 {
    color: #e31e24;
    margin-bottom: 15px;
}

/* Reviews Section */
.reviews-section {
    padding: 60px 0;
}

.reviews-header {
    text-align: center;
    margin-bottom: 40px;
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.rating-number {
    font-size: 48px;
    font-weight: bold;
    color: #333;
}

.stars {
    color: #ffc107;
    font-size: 24px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.review-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e31e24;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.review-stars {
    color: #ffc107;
}

.review-date {
    color: #999;
    font-size: 14px;
}


/* Chatbot */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e31e24;
    color: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.chatbot-window {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: #fff;
    border-radius: 20px; /* YEH CHANGE KAREIN */
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    flex-direction: column;
}

.chatbot-window.active {
    display: flex;
}

.chatbot-header {
    background: #e31e24;
    color: #fff;
    padding: 15px;
    border-radius: 20px 20px 0 0; /* YEH CHANGE KAREIN */
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.chatbot-input {
    display: flex;
    padding: 22px 24px; /* YEH CHANGE KAREIN */
    border-top: 1px solid #eee;
    gap: 16px; /* YEH CHANGE KAREIN */
}

.chatbot-input input {
    flex: 1;
    padding: 22px 28px; /* YEH CHANGE KAREIN */
    border: 2px solid #e5e5e5;
    border-radius: 40px; /* YEH CHANGE KAREIN */
    font-size: 17px; /* YEH CHANGE KAREIN */
    min-height: 64px; /* YEH CHANGE KAREIN */
}

.chatbot-input button {
    background: #e31e24;
    color: #fff;
    border: none;
    width: 64px; /* YEH CHANGE KAREIN */
    height: 64px; /* YEH CHANGE KAREIN */
    border-radius: 50%; /* YEH CHANGE KAREIN */
    cursor: pointer;
    flex-shrink: 0; /* YEH CHANGE KAREIN */
}

/* Footer */
.site-footer {
    background: #333;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
    }
    
     .chatbot-window {
        width: 90%;
        right: 5%;
        border-radius: 18px; /* YEH CHANGE KAREIN */
    }
    
    .chatbot-header {
        border-radius: 18px 18px 0 0; /* YEH CHANGE KAREIN */
    }
    
    .chatbot-input {
        padding: 18px 20px; /* YEH CHANGE KAREIN */
        gap: 12px; /* YEH CHANGE KAREIN */
    }
    
    .chatbot-input input {
        padding: 18px 22px; /* YEH CHANGE KAREIN */
        min-height: 56px; /* YEH CHANGE KAREIN */
        font-size: 15px; /* YEH CHANGE KAREIN */
    }
    
    .chatbot-input button {
        width: 56px; /* YEH CHANGE KAREIN */
        height: 56px; /* YEH CHANGE KAREIN */
    }

}