/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    font-weight: 400;
}

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

/* Top Navigation */
.top-navigation {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-bottom: 20px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Playfair Display', serif;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 30px;
    padding: 25px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-image {
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

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

.logo h1 {
    font-size: 2.6rem;
    margin-bottom: 6px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.logo p {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

/* Progress Bar */
.progress-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 60px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #e5e5e5 0%, #f0f0f0 100%);
    transform: translateY(-50%);
    z-index: 1;
}

.progress-step.active {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    border-color: #000000;
}

.progress-step.completed {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%);
    color: #ffffff;
    border-color: #2d5016;
}

.step-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    border: 2px solid #e5e5e5;
}

.progress-step.active .step-number {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
    transform: scale(1.1);
}

.progress-step.completed .step-number {
    background: #ffffff;
    color: #2d5016;
    border-color: #ffffff;
}

.step-label {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Main Content */
.main-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    position: relative;
    border: 1px solid #f0f0f0;
}

.step-content {
    display: none;
    animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-content h2 {
    color: #1a1a1a;
    margin-bottom: 15px;
    font-size: 2.4rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: center;
}

.step-content p {
    color: #666;
    margin-bottom: 40px;
    font-size: 1.15rem;
    text-align: center;
    font-weight: 300;
    line-height: 1.8;
}

/* Form Styles */
.form {
    max-width: 650px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
    color: #2c2c2c;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-size: 1.05rem;
    font-family: 'Playfair Display', serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafafa;
    color: #2c2c2c;
}

.form-group input:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 4px rgba(26, 26, 26, 0.1);
    background: #ffffff;
    transform: translateY(-2px);
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
    display: block;
}

/* Package Selection */
.package-selection h3 {
    color: #1a1a1a;
    margin: 40px 0 25px 0;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: center;
    border-bottom: 2px solid #e5e5e5;
    padding-bottom: 15px;
    position: relative;
}

.package-selection h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #1a1a1a;
}

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

.package-option {
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    padding: 30px 25px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.package-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.package-option:hover {
    border-color: #1a1a1a;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.package-option:hover::before {
    opacity: 1;
}

.package-option.selected {
    border-color: #1a1a1a;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.package-header h4 {
    font-size: 1.4rem;
    color: #1a1a1a;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.price {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.package-option p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 300;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Add-ons */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.addon-option {
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.addon-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.addon-option:hover {
    border-color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.addon-option:hover::before {
    opacity: 1;
}

.addon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #1a1a1a;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    margin-right: 12px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafafa;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #1a1a1a;
    border-color: #1a1a1a;
    transform: scale(1.1);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.addon-name {
    font-size: 1.15rem;
    font-weight: 400;
}

.addon-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.addon-option p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 300;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.quantity-selector {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
    position: relative;
    z-index: 2;
}

.quantity-selector label {
    display: inline-block;
    margin-right: 15px;
    font-weight: 500;
    color: #1a1a1a;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.quantity-selector select {
    padding: 10px 15px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    background: #fafafa;
    font-family: 'Playfair Display', serif;
    transition: all 0.3s ease;
}

.quantity-selector select:focus {
    outline: none;
    border-color: #1a1a1a;
    background: #ffffff;
}

/* Quote Summary */
.quote-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.quote-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a1a1a 0%, #2d2d2d 100%);
}

.quote-summary h3 {
    color: #1a1a1a;
    margin-bottom: 25px;
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: center;
}

.summary-details {
    space-y: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.summary-item:hover {
    background: rgba(26,26,26,0.02);
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 8px;
}

.summary-item:last-child {
    border-bottom: none;
}

.item-name {
    color: #666;
    font-weight: 400;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.item-price {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 0 0;
    margin-top: 20px;
    border-top: 3px solid #1a1a1a;
    font-size: 1.3rem;
    background: rgba(26,26,26,0.05);
    padding: 20px;
    border-radius: 12px;
}

.total-label {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.total-price {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

/* Quote Review */
.quote-details {
    background: #f8f9ff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.client-info, .package-details, .final-total {
    margin-bottom: 25px;
}

.client-info:last-child, .package-details:last-child, .final-total:last-child {
    margin-bottom: 0;
}

.quote-details h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 8px;
}

.quote-details p {
    margin-bottom: 8px;
    color: #666;
}

.final-total {
    background: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.total-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #667eea;
}

/* Buttons */
.btn {
    padding: 16px 35px;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(26, 26, 26, 0.3);
}

.btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(26, 26, 26, 0.4);
}

.btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: linear-gradient(135deg, #666 0%, #888 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(102, 102, 102, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #555 0%, #777 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 102, 102, 0.4);
}

.disclaimer {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
    margin-top: 20px;
    margin-bottom: 15px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    border-radius: 4px;
}

.step-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    color: white;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px;
    background: #d4edda;
    border: 2px solid #c3e6cb;
    border-radius: 12px;
    color: #155724;
}

.success-message h3 {
    color: #155724;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.success-message p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-navigation {
        padding: 12px 0;
    }
    
    .nav-container {
        gap: 15px;
        padding: 0 15px;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .container {
        padding: 10px;
    }
    
    .main-content {
        padding: 20px;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .progress-bar {
        flex-direction: column;
        gap: 10px;
    }
    
    .progress-step:not(:last-child)::after {
        display: none;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
    }
    
    .addons-grid {
        grid-template-columns: 1fr;
    }
    
    .step-actions {
        flex-direction: column;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .top-navigation {
        padding: 10px 0;
    }
    
    .nav-container {
        gap: 10px;
        padding: 0 10px;
    }
    
    .nav-link {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .header {
        padding: 15px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .step-content h2 {
        font-size: 1.5rem;
    }
    
    .total-amount {
        font-size: 2rem;
    }
}
/* SEO Content Section */
.seo-content {
    max-width: 800px;
    margin: 60px auto 40px;
    padding: 40px 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.seo-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.seo-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #444;
    font-weight: 600;
}

.seo-content p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
    font-size: 16px;
}

.seo-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
    list-style-type: disc;
}

.seo-content li {
    line-height: 1.8;
    color: #666;
    margin-bottom: 10px;
    font-size: 16px;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    margin-left: 0;
    font-size: 15px;
}