:root {
    --navy: #0A2A4A;
    --dark-navy: #08233E;
    --light-bg: #F7F8FB;
    --text: #0B1B2A;
    --gray-line: #E2E8F0;
    --dark-gold: #B78F36
    --gold1: #C8A24A;
    --gold: #D4AF37;
    --gold-light: #F4E4BC;
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --medium-gray: #2d2d2d;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
} 

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 10 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: none;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold);
    color: var(--black) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.mobile-menu {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(80deg, rgba(23, 23, 23, 0.85), rgba(45, 45, 45, 0.9)), url('https://hb-moving.com/wp-content/uploads/2026/03/img3.jpg') center/cover;
    /* display: flex; */
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none" stroke="%23D4AF37" stroke-width="0.5" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2rem 4rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slogan {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.6rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-slogan::before {
    content: '';
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.hero h1 {
    font-size: clamp(2.5rem, 1vw, 0.5 rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.hero h1 span {
    color: var(--gold);
    position: relative;
}

.hero-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    background: var(--gold-light);
}

.btn-secondary {
    text-align: center;
    background: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    color: #0A2A4A;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Styles */
section {
    padding: 6rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--black);
    margin-bottom: 1rem;
}

.section-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* About Section */
.about {
    background: var(--light-gray);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
    transform: scale(1.2);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    border-radius: 20px;
    z-index: -1;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.about-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-feature i {
    color: var(--gold);
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature span {
    font-weight: 600;
    color: var(--dark-gray);
}

/* Services Section */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--black);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

/* Why Choose Us */
/* .why-us {
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
} */

.why-us::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.why-us .section-header h2,
.why-us .section-header p {
    color: #ffffff;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.why-us-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.why-us-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.why-us-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.why-us-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--white);  
}

.why-us-item p {
    color:#ffffff;
    font-size: 0.95rem;
}

/* Service Areas */
.service-areas {
    background: var(--light-gray);
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.areas-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.area-item:hover {
    transform: translateX(10px);
    border-left: 3px solid var(--gold);
}

.area-item i {
    color: var(--gold);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 400px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Reviews Section */
.reviews {
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.2;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.review-stars {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.review-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--black);
    font-size: 1.2rem;
}

.reviewer-details h4 {
    color: var(--black);
    margin-bottom: 0.25rem;
}

.reviewer-details p {
    color: #888;
    font-size: 0.9rem;
}

/* Quote Form Section */
.quote-section {
    background: linear-gradient(135deg, var(--black), var(--dark-gray));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0L60 30L30 60L0 30L30 0z" fill="none" stroke="%23D4AF37" stroke-width="0.5" opacity="0.1"/></svg>');
}

.quote-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.quote-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.quote-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.quote-benefits {
    list-style: none;
}

.quote-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.quote-benefits i {
    color: var(--gold);
}

.quote-form {
    background: var(--gold1);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.form-grid {
    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    gap: 0.2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: 0.2px solid #eee;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--light-gold);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    background: var(--gold);
    color: var(--black);
    padding: 0.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Trust Badges */
.trust-badges {
    background: var(--light-gray);
    padding: 4rem 2rem;
}

.badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.badge-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    min-width: 200px;
}

.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.badge-item h3 {
    color: var(--black);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.badge-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Blog Section */
.blog {
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid #eee;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 220px;
    background: linear-gradient(135deg, var(--dark-gray), var(--medium-gray));
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--black);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--black);
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.read-more:hover {
    gap: 1rem;
}

/* Footer */
footer {
    background: gray;
    color: var(--white);
    padding: 5rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
    display: inline-flex;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-column h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--gold);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}
.top-button {
        display: none;
    }
.top-button2 {
        display: none;
}


/* ww.license-info{
    background-color: #082A58;
    color: var(--white);
} */

/* Responsive Design */

 .why-us {min-height: 100vh;
   background: linear-gradient(80deg, rgba(23, 23, 23, 0.85), rgb(45, 45, 45)), 
   url(https://hb-moving.com/wp-content/uploads/2026/03/img8.jpg);
    align-items: center;
    position: relative;
    overflow: hidden;}

@media (max-width: 968px) {

 .why-us{
    min-height: 100vh;
    background: linear-gradient(80deg, rgba(23,23,23,0.85), rgb(45, 45, 45)),
    url('https://hb-moving.com/wp-content/uploads/2026/03/img8.jpg');
    
    background-repeat: no-repeat;
}



    .hero{
    min-height: 100vh;
    background: linear-gradient(80deg, rgba(23,23,23,0.85), rgba(45,45,45,0.9)),
    url('https://hb-moving.com/wp-content/uploads/2026/03/img6.jpg');
    
    background-position: center;
    background-repeat: no-repeat;
}
    .hero {
        display: block;
    }


        .mobile-menu {
        display: flex;
        align-items: center;
        gap: 30px
    }  

    .top-button {
        display: flex;
        padding: 12px 8px;
        background: #fff;
        color: #082A58;
        font-weight: 700;
        font-size: 0.6rem;
        text-decoration: none;
        border-radius: 10px;
        white-space: nowrap; /* prevents text breaking */
        border: 2px solid #082A58;
    }
     .top-button2 {
        display: flex;
        padding: 8px 4px;
        background: #C8A24A;
        color: #fff;
        font-weight: 700;
        font-size: 0.4rem;
        text-decoration: none;
        border-radius: 20px;
        white-space: nowrap; /* prevents text breaking */
    }

    

    


  
.quote-form {
    background: var(--gold1);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    margin: auto;
}
    .quote-info h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.quote-info p {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}


     .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.3rem 0.3rem 0.3rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    }
    
     .nav-links {
        
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
    }

    /* Show menu when active */
    /* .nav-links.active {
        display: none;
    } */

    
.fa-bars:before, .fa-navicon:before {
    background-color: black;
    content: "\f0c9";
}
    .mobile-menu {
        display: block;
    }

    .hero-content {
        padding-top: 1rem;
    }

    .hero-stats { 
        gap: 2rem;
    }

    .about-grid,
    .areas-content,
    .quote-container {
        grid-template-columns: 1fr;
    }

    .about-image::before {
        display: none;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .badges-grid {
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .areas-list {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b8941f;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 65px;
    width: auto;
}

/* ===== MOBILE FORM FIX ===== */
@media (max-width: 768px) {

   

    .quote-form input,
    .quote-form textarea,
    .quote-form select {
        height: 45px;        /* smaller input height */
        padding: 8px 12px;   /* reduce inside space */
        font-size: 14px;
        border-radius: 10px;
    }

    .quote-section {
    display: flex;
    justify-content: center;
}
    #movingQuoteForm {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;      /* centers it */
    }

    .form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: 0.2px solid #eee;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--light-gray);
}

    .quote-form .form-group {
        margin-bottom: 15px;   /* reduce space between fields */
    }
}
   /* ===== NAVBAR MOBILE CONTROL ===== */

.nav-links {
    display: flex;
    gap: 2.5rem;
}

@media (max-width: 968px) {


     .license-container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .license-info {
        flex-wrap: wrap;
        justify-content: center;
    }






    .logo-img {
    height: 45px;
    width: auto;
}

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex !important;
    }

    .mobile-menu {
        display: block;
    }

}


.policy-modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
    z-index:3000;
}

.policy-close{
    position:absolute;
    right:20px;
    top:15px;
    font-size:28px;
    cursor:pointer;
    color:#555;
    font-weight:bold;
}

.policy-box{
    position:relative;
    background:white;
    width:90%;
    max-width:800px;
    margin:5% auto;
    padding:40px 30px 30px;
    border-radius:15px;
    max-height:80vh;
    overflow-y:auto;
}

.policy-box h2{
    color:#111;
    margin-bottom:15px;
}

.policy-box p{
    color:#555;
    line-height:1.7;
}

@keyframes fadeIn{
    from{opacity:0; transform:translateY(30px);}
    to{opacity:1; transform:translateY(0);}
}  
 










 .hbm-quote-container {
        margin: auto; 
        width: 100%;
        max-width: 390px;
        background: linear-gradient(145deg, #0A2A4A 0%, #08233E 100%);
        border-radius: 24px;
        padding: 28px 24px;
        box-shadow:
            0 20px 60px rgba(10, 42, 74, 0.4),
            0 0 0 1px rgba(201, 162, 74, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);
        position: relative;
        overflow: hidden;
    }

    .hbm-quote-container::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 100%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(201, 162, 74, 0.03) 0%, transparent 70%);
        pointer-events: none;
    }

    .hbm-secure-badge {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        margin-bottom: 16px;
        color: rgba(255, 255, 255, 0.6);
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .hbm-secure-badge svg {
        width: 12px;
        height: 12px;
        fill: #C9A24A;
    }

    .hbm-quote-header {
        text-align: center;
        margin-bottom: 24px;
    }

    .hbm-quote-header h2 {
        color: #FFFFFF;
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 6px;
        letter-spacing: -0.3px;
    }

    .hbm-quote-header p {
        color: rgba(255, 255, 255, 0.6);
        font-size: 12px;
        font-weight: 500;
    }

    .hbm-step-indicator {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 24px;
        position: relative;
        padding: 0 10px;
    }

    .hbm-step-line {
        position: absolute;
        top: 50%;
        left: 35px;
        right: 35px;
        height: 2px;
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-50%);
        z-index: 0;
    }

    .hbm-step-line-progress {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        background: linear-gradient(90deg, #C9A24A 0%, #B78F36 100%);
        transition: width 0.4s ease;
        width: 0%;
    }

    .hbm-step-circle {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        border: 2px solid rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.5);
        font-weight: 700;
        font-size: 14px;
        position: relative;
        z-index: 1;
        transition: all 0.3s ease;
    }

    .hbm-step-circle.hbm-active {
        background: linear-gradient(145deg, #C9A24A 0%, #B78F36 100%);
        border-color: #C9A24A;
        color: #0A2A4A;
        box-shadow: 0 4px 15px rgba(201, 162, 74, 0.4);
    }

    .hbm-step-circle.hbm-completed {
        background: #C9A24A;
        border-color: #C9A24A;
        color: #0A2A4A;
    }

    .hbm-step-title {
        text-align: center;
        color: #C9A24A;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 20px;
        letter-spacing: 0.5px;
    }

    .hbm-form-step {
        display: none;
        animation: hbmFadeIn 0.3s ease;
    }

    .hbm-form-step.hbm-active {
        display: block;
    }

    @keyframes hbmFadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .hbm-form-group {
        margin-bottom: 16px;
    }

    .hbm-form-group label {
        display: block;
        color: rgba(255, 255, 255, 0.8);
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 6px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .hbm-form-group input,
    .hbm-form-group select,
    .hbm-form-group textarea {
        width: 100%;
        padding: 14px 18px;
        border: none;
        border-radius: 50px;
        background: #FFFFFF;
        font-size: 15px;
        color: #0A2A4A;
        box-shadow:
            0 4px 15px rgba(0, 0, 0, 0.1),
            inset 0 2px 4px rgba(0, 0, 0, 0.02);
        transition: all 0.3s ease;
        font-family: inherit;
    }

    .hbm-form-group input:focus,
    .hbm-form-group select:focus,
    .hbm-form-group textarea:focus {
        outline: none;
        box-shadow:
            0 4px 20px rgba(201, 162, 74, 0.3),
            inset 0 2px 4px rgba(0, 0, 0, 0.02);
        transform: translateY(-1px);
    }

    .hbm-form-group input::placeholder,
    .hbm-form-group textarea::placeholder {
        color: #999;
    }

    .hbm-form-group select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230A2A4A' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 18px center;
        padding-right: 40px;
    }

    .hbm-form-group textarea {
        border-radius: 20px;
        min-height: 100px;
        resize: vertical;
    }

    .hbm-error-message {
        color: #ff6b6b;
        font-size: 11px;
        margin-top: 4px;
        display: none;
        padding-left: 8px;
    }

    .hbm-form-group.hbm-error input,
    .hbm-form-group.hbm-error select,
    .hbm-form-group.hbm-error textarea {
        box-shadow: 0 0 0 2px #ff6b6b;
    }

    .hbm-form-group.hbm-error .hbm-error-message {
        display: block;
    }

    .hbm-button-group {
        display: flex;
        gap: 12px;
        margin-top: 20px;
    }

    .hbm-btn {
        flex: 1;
        padding: 16px 24px;
        border: none;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        text-align: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .hbm-btn-primary {
        background: linear-gradient(145deg, #C9A24A 0%, #B78F36 100%);
        color: #0A2A4A;
        box-shadow:
            0 4px 15px rgba(201, 162, 74, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }

    .hbm-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow:
            0 6px 20px rgba(201, 162, 74, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }

    .hbm-btn-secondary {
        background: transparent;
        color: #FFFFFF;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .hbm-btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
    }

    .hbm-btn-navy {
        background: linear-gradient(145deg, #0A2A4A 0%, #08233E 100%);
        color: #FFFFFF;
        border: 2px solid rgba(201, 162, 74, 0.3);
    }

    .hbm-btn-navy:hover {
        background: linear-gradient(145deg, #0d3560 0%, #0a2d4f 100%);
        border-color: rgba(201, 162, 74, 0.5);
    }

    .hbm-submit-note {
        text-align: center;
        color: rgba(255, 255, 255, 0.5);
        font-size: 11px;
        margin-top: 16px;
        line-height: 1.5;
    }

    .hbm-success-message {
        display: none;
        text-align: center;
        padding: 40px 20px;
        animation: hbmFadeIn 0.5s ease;
    }

    .hbm-success-message.hbm-active {
        display: block;
    }

    .hbm-success-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(145deg, #C9A24A 0%, #B78F36 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        box-shadow: 0 4px 20px rgba(201, 162, 74, 0.4);
    }

    .hbm-success-icon svg {
        width: 30px;
        height: 30px;
        fill: #0A2A4A;
    }

    .hbm-success-message h3 {
        color: #FFFFFF;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .hbm-success-message p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 14px;
    }

    @media (min-width: 768px) {
        /* .hbm-quote-container {
            max-width: 450px;
            padding: 32px;
        } */
        .hero {
         display: flex;
        }
    }     
    
    
    @media (min-width: 768px) {

    .hbm-quote-container {
        max-width: 520px;   /* slightly bigger */
        padding: 57px;
    }

    /* Make inputs bigger */
    .hbm-form-group input,
    .hbm-form-group select,
    .hbm-form-group textarea {
        height: 60px;            /* taller */
        font-size: 16px;         /* bigger text */
        padding: 0 20px;         /* more inside spacing */
        border-radius: 30px;     /* smoother premium look */
    }

    /* Labels spacing */
    .hbm-form-group {
        margin-bottom: 22px;
    }

    /* Step title bigger */
    .hbm-step-title {
        font-size: 18px;
        margin-bottom: 25px;
    }
}



























 .how-it-works {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Header Section */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            color: var(--navy);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 8px 20px;
            border-radius: 50px;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(201, 162, 74, 0.3);
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: #64748B;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Timeline Container */
        .timeline {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 40px;
        }

        /* Desktop Line */
        .timeline::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 16.66%;
            right: 16.66%;
            height: 2px;
            background: var(--gray-line);
            z-index: 0;
        }

        /* Step Card */
        .step {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 1;
            padding: 0 10px;
        }

        /* Step Circle */
        .step-circle {
            width: 80px;
            height: 80px;
            background: var(--navy);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            position: relative;
            box-shadow:
                0 0 0 4px var(--light-bg),
                0 0 0 6px rgba(201, 162, 74, 0.2),
                0 10px 40px rgba(10, 42, 74, 0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .step-circle::after {
            content: '';
            position: absolute;
            inset: -8px;
            border-radius: 50%;
            border: 2px solid transparent;
            background: linear-gradient(135deg, var(--gold), transparent) border-box;
            -webkit-mask:
                linear-gradient(#fff 0 0) padding-box,
                linear-gradient(#fff 0 0);
            mask:
                linear-gradient(#fff 0 0) padding-box,
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0.5;
        }

        .step-number {
            font-size: 28px;
            font-weight: 800;
            color: var(--white);
        }

        /* Step Content */
        .step-content {
            background: var(--white);
            padding: 32px 24px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(10, 42, 74, 0.06);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(226, 232, 240, 0.5);
            height: 100%;
        }

        .step:hover .step-content {
            transform: translateY(-8px);
            box-shadow:
                0 20px 40px rgba(10, 42, 74, 0.12),
                0 8px 16px rgba(10, 42, 74, 0.08);
            border-color: rgba(201, 162, 74, 0.3);
        }

        .step:hover .step-circle {
            transform: scale(1.05);
            box-shadow:
                0 0 0 4px var(--light-bg),
                0 0 0 8px rgba(201, 162, 74, 0.3),
                0 15px 50px rgba(10, 42, 74, 0.2);
        }

        .step-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 12px;
        }

        .step-text {
            font-size: 0.95rem;
            color: #475569;
            line-height: 1.7;
        }

        /* CTA Button */
        .cta-container {
            text-align: center;
            margin-top: 60px;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            color: var(--navy);
            font-size: 1rem;
            font-weight: 700;
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            box-shadow:
                0 4px 20px rgba(201, 162, 74, 0.4),
                0 2px 8px rgba(10, 42, 74, 0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow:
                0 8px 30px rgba(201, 162, 74, 0.5),
                0 4px 12px rgba(10, 42, 74, 0.15);
            background: linear-gradient(135deg, var(--dark-gold), var(--gold));
        }

        .cta-button:active {
            transform: translateY(0);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .how-it-works {
                padding: 60px 20px;
            }

            .section-header {
                margin-bottom: 40px;
            }

            .timeline {
                flex-direction: column;
                gap: 0;
            }

            /* Remove desktop line */
            .timeline::before {
                display: none;
            }

            .step {
                display: flex;
                align-items: flex-start;
                text-align: left;
                padding: 0;
                margin-bottom: 32px;
                gap: 20px;
            }

            .step:last-child {
                margin-bottom: 0;
            }

            /* Mobile vertical line */
            .step::before {
                content: '';
                position: absolute;
                left: 39px;
                top: 80px;
                width: 2px;
                height: calc(100% - 60px);
                background: var(--gray-line);
                z-index: 0;
            }

            .step:last-child::before {
                display: none;
            }

            .step-circle {
                width: 60px;
                height: 60px;
                flex-shrink: 0;
                margin: 0;
            }

            .step-number {
                font-size: 22px;
            }

            .step-content {
                flex: 1;
                padding: 24px;
            }

            .step-title {
                font-size: 1.125rem;
            }

            .step-text {
                font-size: 0.9rem;
            }

            .cta-container {
                margin-top: 40px;
            }

            .cta-button {
                width: 100%;
                max-width: 300px;
            }
        }

        /* Small mobile optimization */
        @media (max-width: 430px) {
            .how-it-works {
                padding: 50px 16px;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .step {
                gap: 16px;
            }

            .step-circle {
                width: 56px;
                height: 56px;
            }

            .step-number {
                font-size: 20px;
            }

            .step::before {
                left: 27px;
            }

            .step-content {
                padding: 20px;
            }
        }

        /* Reduced motion */
        @media (prefers-reduced-motion: reduce) {
            .step-content,
            .step-circle,
            .cta-button {
                transition: none;
            }
        }











/* ===== FLOATING BUTTONS ===== */

.floating-call {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.fab__button {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #D4AF37;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

/* Pulse animation */
.pulse-rings {
    position: absolute;
    top: 0;
    left: 0;
    width: 65px;
    height: 65px;
}

.pulse {
    position: absolute;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.5);
    animation: pulse 2s infinite;
}

.pulse:nth-child(2) { animation-delay: 0.5s; }
.pulse:nth-child(3) { animation-delay: 1s; }

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2); opacity: 0; }
}

/* ===== CHAT BUTTON ===== */

/* .floating-chat {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #0A2A4A;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: 0.3s;
} */

/* .floating-chat:hover {
    background: #08233E;
    transform: translateY(-2px);
} */

/* Mobile adjust */
@media (max-width: 768px) {
    .floating-call {
        bottom: 15px;
        right: 15px;
    }

    /* .floating-chat {
        bottom: 15px;
        left: 15px;
    }*/
} 

/* .chat-box {
    position: fixed;
    bottom: 90px;
    left: 20px;
    width: 280px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: none;
    z-index: 9999;
} */

.chat-header {
    background: #0A2A4A;
    color: white;
    padding: 10px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
}

.chat-body {
    padding: 15px;
}

.chat-body button {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border: none;
    border-radius: 10px;
    background: #D4AF37;
    cursor: pointer;
}


#tidio-chat iframe {
    /* opacity: 0;
    pointer-events: none; */
    transition: 0.3s;
}
.floating-chat:active {
    transform: scale(0.95);
}
/* iframe#tidio-chat-iframe {
    display: none !important;
} */
 /* #tidio-chat {
    display: none !important;
} */

/* Move Tidio to LEFT instead of RIGHT */
#tidio-chat {
    right: auto !important;
    left: 20px !important;
}

/* Also target iframe (important) */
iframe#tidio-chat-iframe {
    right: auto !important;
    left: 20px !important;
}
body #tidio-chat,
body iframe#tidio-chat-iframe {
    right: auto !important;
    left: 20px !important;
}