* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #ffffff; /* Light background instead of dark */
}

/* TOP BAR STYLES */
.top-bar {
    background-color: #f9f9f9; /* Changed to light grey */
    color: #444;               /* Changed to dark grey */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    font-size: 13px;
    border-bottom: 1px solid #ddd; /* Light border */
}

.top-right {
    display: flex;
    gap: 30px;
    align-items: center;
}

.info-item i {
    margin-right: 8px;
}

.social-icons a {
    color: #444;               /* Changed to dark grey */
    margin-left: 15px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #e31e24;
}

/* MAIN NAVBAR STYLES */
.main-nav {
    background-color: #ffffff; /* Changed from black to white */
    color: #111;               /* Changed text base color to black */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* Added subtle shadow for depth */
}

/* Logo Area */
.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    color: #e31e24;
    font-size: 40px;
}

.logo-text h1 {
    font-size: 22px;
    letter-spacing: 1px;
    line-height: 1;
    color: #111; /* Explicitly black */
}

.logo-text h2.red-text {
    font-size: 18px;
    color: #e31e24;
    letter-spacing: 4px;
    line-height: 1;
}

.logo-text p {
    font-size: 11px;
    color: #555; /* Darker grey for readability */
    margin-top: 4px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #111; /* Changed from white to black */
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
}

.nav-links a:hover, 
.nav-links a.active {
    color: #e31e24;
}

/* Red underline for active link */
.nav-links a.active {
    border-bottom: 2px solid #e31e24;
    padding-bottom: 5px;
}

/* Call Section */
.call-section {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #111; /* Added to make phone number dark */
}

.phone-icon {
    width: 45px;
    height: 45px;
    border: 1px solid #ddd; /* Light border for the circle */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #111;
}

.call-text small {
    display: block;
    font-size: 12px;
    color: #666; /* Medium grey */
}

.phone-number {
    font-size: 18px;
    font-weight: bold;
}

/* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url("chimny.png") no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

/* Dark gradient to make text visible */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 30%, rgba(0,0,0,0.3) 100%);
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* Left Side */
.hero-text {
    flex: 1;
    max-width: 650px;
    color: white;
}

.badge {
    color: #e31e24;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

.hero-text h1 {
    font-size: 64px;
    font-weight: 800;
    margin: 15px 0;
    line-height: 1.1;
}

.hero-text p {
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Buttons */
.btn-group {
    display: flex;
    gap: 15px;
    margin-bottom: 60px;
}

.btn-primary {
    background: #bc1e22;
    color: white;
    text-decoration: none;
    padding: 18px 30px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #9c181b;
}

.btn-secondary {
    background: transparent;
    border: 1.5px solid white;
    color: white;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* The Glass Effect Trust Bar */
.glass-bar {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    width: fit-content;
    gap: 30px;
}

.item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.item i {
    color: #e31e24;
    font-size: 20px;
}

.item span {
    font-size: 12px;
    font-weight: 600;
    color: #f1f1f1;
}

/* Right Side Form */
.form-card {
    background: white;
    width: 420px;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.form-card h2 {
    color: #222;
    font-size: 26px;
    font-weight: 700;
}

.form-sub {
    color: #777;
    font-size: 14px;
    margin-bottom: 25px;
}

.input-box {
    position: relative;
    margin-bottom: 12px;
}

.input-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.input-box input, 
.input-box select {
    width: 100%;
    padding: 14px 14px 14px 45px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    transition: 0.2s;
}

.input-box input:focus, 
.input-box select:focus {
    border-color: #e31e24;
}

.submit-btn {
    width: 100%;
    background: #bc1e22;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

.submit-btn:hover { 
    background: #9c181b; 
}

/* Form Footer */
.form-footer {
    display: flex;
    align-items: center;
    margin-top: 25px;
    gap: 15px;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
}

.avatars img:first-child { 
    margin-left: 0; 
}

.rating-text {
    font-size: 12px;
    color: #555;
    font-weight: 600;
}

.rating-text span {
    color: #222;
    margin-left: 5px;
}

/* Mobile Responsive */
@media (max-width: 1100px) {
    .container {
        flex-direction: column;
        gap: 40px;
    }
    
    .form-card {
        width: 100%;
        max-width: 500px;
    }
    
    .hero-text h1 {
        font-size: 48px;
    }
}

@media (max-width: 900px) {
    .nav-links, 
    .top-bar {
        display: none;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .btn-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .glass-bar {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .main-nav {
        padding: 15px 20px;
    }
    
    .logo-icon {
        font-size: 30px;
    }
    
    .logo-text h1 {
        font-size: 16px;
    }
    
    .logo-text h2.red-text {
        font-size: 14px;
    }
    
    .call-section {
        display: none;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .container {
        width: 90%;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .form-card {
        padding: 25px;
    }
}