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

:root {
    --primary-yellow: #FFCC00;
    --dark-bg: #1a1a1a;
    --white: #ffffff;
    --text-dark: #333333;
    --gray-light: #f5f5f5;
    --gray-medium: #999999;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    padding-top: 37px;
}

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

/* Top Banner */
.top-banner {
    background: var(--primary-yellow);
    color: var(--dark-bg);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
}
.top-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-banner a { color: var(--dark-bg); text-decoration: none; }
.top-banner a:hover { text-decoration: underline; }
.banner-right { display: flex; align-items: center; gap: 22px; }
.banner-sep { color: rgba(0,0,0,0.25); }

/* Navigation */
.navbar {
    background: var(--dark-bg);
    padding: 1rem 0;
    position: sticky;
    width: 100%;
    top: 37px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: color 0.3s;
}

.nav-menu a.active {
    color: var(--primary-yellow);
}

.nav-menu a:hover {
    color: var(--primary-yellow);
}

.btn-quote {
    background: var(--primary-yellow) !important;
    color: var(--dark-bg) !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-quote:hover {
    background: #FFD700 !important;
    transform: translateY(-2px);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
}

.dropdown-toggle::after {
    content: '';
    display: inline-block;
    margin-left: 5px;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-bg);
    border-top: 3px solid var(--primary-yellow);
    border-radius: 5px;
    min-width: 200px;
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    display: flex;
    flex-direction: column;
}

.dropdown-menu a {
    padding: 12px 20px;
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
}

.dropdown-menu a:hover {
    background: rgba(255, 204, 0, 0.1);
    color: var(--primary-yellow);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 600px;
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-content {
    padding: 60px 40px;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-decoration: underline;
    text-decoration-color: var(--primary-yellow);
    text-underline-offset: 5px;
    text-decoration-thickness: 3px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    font-size: 14px;
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary-yellow);
}

.btn-outline:hover {
    background: var(--primary-yellow);
    color: var(--dark-bg);
}

.btn-primary {
    background: var(--primary-yellow);
    color: var(--dark-bg);
}

.btn-primary:hover {
    background: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}

.btn span {
    margin-left: 5px;
}

.hero-image {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 40px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 4px solid var(--primary-yellow);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--white);
}

.services h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

.service-card {
    border: 1px solid #ddd;
    padding: 30px;
    border-radius: 5px;
    transition: all 0.3s;
    text-align: center;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

/* Welcome Section */
.welcome {
    padding: 80px 0;
    background: var(--primary-yellow);
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.welcome-image img {
    width: 100%;
    border: 4px solid var(--white);
    border-radius: 5px;
}

.welcome-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.welcome-content p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Why Choose Us Section */
.why-choose {
    padding: 80px 0;
    background: var(--dark-bg);
    color: var(--white);
}

.why-choose h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.benefit {
    padding: 20px;
}

.benefit-icon {
    font-size: 32px;
    color: var(--primary-yellow);
    margin-bottom: 15px;
    display: block;
}

.benefit h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--white);
}

.benefit p {
    color: #ccc;
}

.why-choose-image {
    margin-top: 40px;
}

.why-choose-image img {
    width: 100%;
    border: 4px solid var(--primary-yellow);
    border-radius: 5px;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: var(--gray-light);
    text-align: center;
    border-top: 4px solid var(--primary-yellow);
}

.cta-section p {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--primary-yellow);
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--primary-yellow);
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-section p {
    margin-bottom: 10px;
    color: #ccc;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #999;
    font-size: 13px;
}

.locations-list {
    columns: 2;
    column-gap: 20px;
}

.locations-list li {
    margin-bottom: 10px;
    break-inside: avoid;
}

/* Page Header */
.page-header {
    margin-top: 0;
    padding: 60px 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: var(--white);
    text-align: center;
    border-bottom: 4px solid var(--primary-yellow);
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 16px;
    color: #ddd;
}

/* Content Section */
.content-section {
    padding: 60px 0;
    background: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.main-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.main-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.main-content p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.8;
}

.sidebar {
    background: var(--gray-light);
    padding: 30px;
    border-radius: 5px;
    height: fit-content;
}

.sidebar h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.sidebar p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.sidebar-info {
    margin-bottom: 20px;
}

.sidebar-label {
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    margin-bottom: 5px;
}

.sidebar-value {
    color: var(--primary-yellow);
    font-size: 16px;
    font-weight: 600;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.file-input-wrapper {
    position: relative;
}

.file-input-label {
    display: inline-block;
    padding: 10px 20px;
    background: var(--gray-light);
    border: 2px dashed #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    width: 100%;
}

.file-input-label:hover,
.file-input-wrapper.drag-over .file-input-label {
    border-color: var(--primary-yellow);
    background: rgba(255, 204, 0, 0.10);
}

.form-group input[type="file"] {
    display: none;
}

.file-selected {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background: var(--gray-light);
    border-radius: 3px;
    font-size: 13px;
    color: #666;
}

.form-submit {
    display: inline-block;
    width: 100%;
}

.form-message {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.show {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-desktop-only { display: none; }
    .top-banner .container { justify-content: center; }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--dark-bg);
        padding: 20px;
        gap: 10px;
    }

    .dropdown-menu {
        position: static;
        display: none !important;
        box-shadow: none;
        border-top: none;
        background: rgba(0, 0, 0, 0.5);
        margin-top: 0;
    }

    .dropdown.active .dropdown-menu {
        display: flex !important;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 40px 0;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-image {
        padding: 20px;
    }

    .welcome-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .locations-list {
        columns: 1;
    }

    .page-header h1 {
        font-size: 32px;
    }
}