/* Customization Page Styles */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f5f5;
}

.customization-section {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.customization-section .section-heading {
    text-align: center;
}
.section-heading {
    text-align: left;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 42px;
    color: #2a2a2a;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-heading p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Form Card */
.customization-form-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.required {
    color: #e74c3c;
    font-size: 16px;
}

/* Form Controls */
.form-control {
    width: 100%;
    padding: 8px 8px;
    font-size: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
    background-color: white;
}

.form-control:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

/* FIXED: Select dropdown styling */
select.form-control {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 5px center;
    padding-right: 20px;
    color: #333;
    height: 75px;
    line-height: normal;
}

select.form-control option {
    padding: 10px;
    color: #333;
    background-color: white;
}

select.form-control:invalid {
    color: #999;
}

select.form-control option:first-child {
    color: #999;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Error Messages */
.error-message {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

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

.form-control.error {
    border-color: #e74c3c;
}

/* Upload Area */
.upload-area {
    border: 3px dashed #d0d0d0;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
}

.upload-area:hover {
    border-color: #4a90e2;
    background: #f0f7ff;
}

.upload-area.dragover {
    border-color: #4a90e2;
    background: #e3f2fd;
}

.upload-content i {
    font-size: 48px;
    color: #4a90e2;
    margin-bottom: 15px;
}

.upload-content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.upload-content span {
    font-size: 13px;
    color: #999;
}

/* Image Preview */
.image-preview {
    margin-top: 15px;
    display: none;
}

.image-preview.show {
    display: block;
}

.preview-container {
    position: relative;
    display: inline-block;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.preview-container img {
    max-width: 300px;
    max-height: 300px;
    display: block;
    border-radius: 10px;
}

.remove-image {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.remove-image:hover {
    background: #c0392b;
    transform: scale(1.1);
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 15px 50px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn i {
    margin-right: 10px;
    font-size: 22px;
}

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

/* Info Cards */
.info-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.info-card i {
    font-size: 48px;
    color: #4a90e2;
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 20px;
    color: #2a2a2a;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Success Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.show {
    display: flex;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-icon i {
    font-size: 64px;
    color: #25D366;
    margin-bottom: 20px;
}

.modal-content h3 {
    font-size: 24px;
    color: #2a2a2a;
    margin-bottom: 15px;
}

.modal-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
}

.modal-btn {
    background: #4a90e2;
    color: white;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    background: #357abd;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .customization-section {
        padding: 100px 0 60px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .customization-form-card {
        padding: 25px;
    }

    .submit-btn {
        width: 100%;
        padding: 15px 30px;
    }

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

    .preview-container img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .section-heading h2 {
        font-size: 28px;
    }

    .customization-form-card {
        padding: 20px;
    }

    .form-control {
        font-size: 14px;
    }

    .submit-btn {
        font-size: 16px;
        padding: 12px 25px;
    }
}






















/* ============================================
   CUSTOM DESIGN CTA SECTION STYLES - WHITE THEME
   ============================================ */

/* Custom Design CTA Section */
.custom-design-cta {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Optional: Add subtle pattern background */
.custom-design-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(0, 0, 0, .02) 25%, rgba(0, 0, 0, .02) 26%, transparent 27%, transparent 74%, rgba(0, 0, 0, .02) 75%, rgba(0, 0, 0, .02) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(0, 0, 0, .02) 25%, rgba(0, 0, 0, .02) 26%, transparent 27%, transparent 74%, rgba(0, 0, 0, .02) 75%, rgba(0, 0, 0, .02) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    opacity: 0.3;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.cta-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border-color: #e0e0e0;
}

/* Icon Section */
.cta-icon {
    flex: 0 0 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 40px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.cta-icon i {
    font-size: 48px;
    color: #fff;
    animation: rotate 4s linear infinite;
}

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

/* Text Section */
.cta-text {
    flex: 1;
    margin-right: 40px;
}

.cta-text h3 {
    font-size: 36px;
    color: #2a2a2a;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* Button Section */
.cta-button {
    flex: 0 0 auto;
}

.custom-design-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.custom-design-btn:hover::before {
    left: 100%;
}

.custom-design-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.custom-design-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.custom-design-btn i {
    font-size: 20px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Decorative Elements */
.cta-content::after {
    content: '✨';
    position: absolute;
    font-size: 40px;
    top: 20px;
    right: 20px;
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .cta-icon {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .cta-text {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .cta-text h3 {
        font-size: 28px;
    }

    .cta-text p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .custom-design-cta {
        padding: 60px 0;
    }

    .cta-content {
        padding: 30px 20px;
    }

    .cta-icon {
        width: 100px;
        height: 100px;
        flex: 0 0 100px;
    }

    .cta-icon i {
        font-size: 40px;
    }

    .cta-text h3 {
        font-size: 24px;
    }

    .cta-text p {
        font-size: 15px;
    }

    .custom-design-btn {
        padding: 15px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .cta-text h3 {
        font-size: 22px;
    }

    .custom-design-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 25px;
    }
}