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

body {
    background-color: #f8fafc;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    color: #333;
}

/* Hero Section - Construction Theme (Amber/Dark) */
.material-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, #1c1917 0%, #451a03 100%);
    margin-top: 80px;
    overflow: hidden;
}

.material-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1541888946425-d03df1329b76?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-content {
    z-index: 2;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(to right, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: #fcd34d;
    max-width: 700px;
    margin: 0 auto;
}

/* Stats Bar */
.stats-bar {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: -40px auto 40px;
    position: relative;
    z-index: 10;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

/* Packages Section */
.packages-section {
    padding: 80px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #451a03;
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: #f59e0b;
}

.package-image-box {
    height: 200px;
    overflow: hidden;
}

.package-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-content h3 {
    font-size: 1.5rem;
    color: #451a03;
    margin-bottom: 15px;
}

.popular-ribbon {
    position: absolute;
    top: 20px;
    right: -40px;
    transform: rotate(45deg);
    background: #f59e0b;
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}

.features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 25px;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 12px;
    color: #475569;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li i {
    color: #f59e0b;
}

.btn-select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    background: #1c1917;
    color: white;
    text-align: center;
}

.btn-select:hover {
    background: #f59e0b;
}

/* Order Form Section */
.filing-section {
    padding: 80px 0;
    background: #f8fafc;
}

.filing-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-side {
    flex: 1;
    min-width: 320px;
}

.docs-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    position: sticky;
    top: 120px;
}

.docs-card h3 {
    font-size: 1.2rem;
    color: #451a03;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.doc-list li {
    margin-bottom: 12px;
    padding-left: 10px;
    border-left: 3px solid #f59e0b;
    color: #334155;
    font-size: 0.95rem;
    list-style: none;
}

.form-side {
    flex: 1.2;
    min-width: 350px;
}

.booking-form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.form-header h3 {
    font-size: 1.5rem;
    color: #451a03;
    margin-bottom: 5px;
    font-weight: 700;
}

.form-header p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

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

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #ffffff;
    color: #1e293b;
    outline: none;
    transition: 0.2s;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #f59e0b;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #d97706;
}

@media (max-width: 768px) {
    .filing-container {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .stats-bar {
        gap: 10px;
    }
}