* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #cbd5e0;
    background-color: #1a202c;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background-color: #111625;
    border-bottom: 1px solid #2d3748;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.logo a {
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: baseline;
}

.brand-my { color: #ffffff; }
.brand-lhd { color: #c69214; }
.brand-car { color: #a0aec0; }
.brand-division {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: #2d3748;
    color: #c69214;
    padding: 2px 10px;
    border-radius: 4px;
    margin-left: 12px;
    font-weight: 600;
    border: 1px solid rgba(198, 146, 20, 0.3);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #a0aec0;
    font-weight: 500;
    transition: color 0.2s;
    font-size: 15px;
}

.nav-links a:hover {
    color: #c69214;
}

.btn-tel {
    background: linear-gradient(135deg, #c69214 0%, #a1750e 100%);
    color: #111625 !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700 !important;
    box-shadow: 0 4px 10px rgba(198, 146, 20, 0.2);
    transition: transform 0.2s, box-shadow 0.2s !important;
}

.btn-tel:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(198, 146, 20, 0.3);
}

/* Hero Section */
.hero {
    background: radial-gradient(circle at top right, #2d3748 0%, #111625 100%);
    padding: 80px 0;
    border-bottom: 1px solid #2d3748;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.hero-text .subtitle {
    font-size: 18px;
    color: #a0aec0;
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
    color: #e2e8f0;
}

.feature-icon {
    font-size: 24px;
    background-color: #2d3748;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(198, 146, 20, 0.3);
}

/* Form Card */
.hero-form-container {
    display: flex;
    justify-content: flex-end;
}

.form-card {
    background-color: #111625;
    border: 1px solid #2d3748;
    color: #e2e8f0;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    width: 100%;
    max-width: 520px;
}

.form-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.form-intro {
    font-size: 14px;
    color: #a0aec0;
    margin-bottom: 25px;
    line-height: 1.4;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #c69214;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #4a5568;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    color: #ffffff;
    background-color: #1a202c;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #c69214;
    box-shadow: 0 0 0 3px rgba(198, 146, 20, 0.2);
    outline: none;
    background-color: #111625;
}

.form-group select option {
    background-color: #111625;
    color: #ffffff;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #c69214 0%, #a1750e 100%);
    color: #111625;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(198, 146, 20, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(198, 146, 20, 0.25);
}

/* Success Banner */
.success-banner {
    background-color: rgba(72, 187, 120, 0.1);
    border: 1px solid #48bb78;
    color: #9ae6b4;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.success-banner h3 {
    margin-top: 0;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.success-banner p {
    font-size: 15px;
    line-height: 1.6;
    color: #cbd5e0;
}

/* Services section */
.services {
    padding: 80px 0;
    background-color: #111625;
    border-bottom: 1px solid #2d3748;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    color: #ffffff;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: #a0aec0;
    text-align: center;
    margin-bottom: 50px;
}

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

.service-card {
    border: 1px solid #2d3748;
    border-radius: 8px;
    padding: 30px;
    background-color: #1a202c;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: #4a5568;
}

.service-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #a0aec0;
    line-height: 1.6;
}

/* Footer */
.main-footer {
    background-color: #0b0e17;
    color: #718096;
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
    border-top: 4px solid #c69214;
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-features {
        align-items: center;
    }
    
    .hero-form-container {
        justify-content: center;
    }
    
    .form-card {
        max-width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 15px 20px;
        gap: 15px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        text-align: center;
    }
    
    .btn-tel {
        width: 100%;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Floating chat widget styles */
.chat-widget-container {
    position: fixed;
    bottom: 30px;
    right: 25px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: Arial, sans-serif;
}
.chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50px;
    padding: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    color: white !important;
    font-weight: bold;
    min-width: 44px;
    height: 44px;
    width: 44px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}
.chat-btn:hover {
    width: auto;
    padding-right: 20px;
    padding-left: 15px;
    min-width: 150px;
}
.chat-btn .chat-label {
    display: none;
    margin-left: 10px;
    font-size: 14px;
    white-space: nowrap;
}
.chat-btn:hover .chat-label {
    display: inline-block;
}
.chat-btn img, .chat-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.whatsapp-bg { background-color: #25D366; }
.messenger-bg { background-color: #0084FF; }
.phone-bg { background-color: #c69214; }

