.seo-services-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.seo-services-form-wrapper {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 30px;
    margin: 20px 0;
}

.seo-services-title {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 28px;
}

.seo-services-form-group {
    margin-bottom: 25px;
}

.seo-services-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.seo-services-form-input,
.seo-services-form-select,
.seo-services-form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.seo-services-form-input:focus,
.seo-services-form-select:focus,
.seo-services-form-textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.seo-services-form-textarea {
    min-height: 100px;
    resize: vertical;
}

.seo-services-paypal-button-container {
    margin-top: 30px;
    text-align: center;
}

/* Packages Grid */
.seo-services-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.seo-package-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.seo-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.seo-package-card.featured {
    border: 2px solid #3498db;
    transform: scale(1.05);
}

.seo-package-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: 15px;
    right: -30px;
    background: #3498db;
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: bold;
}

.seo-package-header {
    margin-bottom: 20px;
}

.seo-package-name {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.seo-package-price {
    font-size: 36px;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 5px;
}

.seo-package-period {
    color: #7f8c8d;
    font-size: 14px;
}

.seo-package-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.seo-package-features li {
    padding: 8px 0;
    border-bottom: 1px solid #ecf0f1;
    position: relative;
    padding-left: 25px;
}

.seo-package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.seo-package-button {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
}

.seo-package-button:hover {
    background: #2980b9;
    color: white;
}

/* Success Message */
.seo-services-success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 6px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.seo-services-success-message h3 {
    color: #155724;
    margin-bottom: 15px;
}

.order-summary {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
}

.order-summary h4 {
    margin-top: 0;
    color: #2c3e50;
}

/* Loading States */
.seo-services-loading {
    opacity: 0.6;
    pointer-events: none;
}

.seo-services-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .seo-services-container {
        padding: 10px;
    }
    
    .seo-services-form-wrapper {
        padding: 20px;
    }
    
    .seo-services-packages-grid {
        grid-template-columns: 1fr;
    }
    
    .seo-package-card.featured {
        transform: none;
    }
}

/* Error States */
.seo-services-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 12px;
    border-radius: 4px;
    margin: 10px 0;
}

.seo-services-form-input.error {
    border-color: #dc3545;
}

/* Validation Styles */
.seo-services-validation {
    font-size: 12px;
    color: #dc3545;
    margin-top: 5px;
    display: none;
}