:root {
    --primary: #FF6B6B;
    --secondary: #4ECDC4;
    --dark: #2C3E50;
    --light: #F8F9FA;
    --gray: #6C757D;
    --success: #28A745;
    --warning: #FFC107;
    --danger: #DC3545;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #fff;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Header Styles */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo img {
    height: 50px;
}
.logo h1 {
    font-size: 1.5rem;
    color: var(--primary);
}
nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}
nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}
nav a:hover {
    color: var(--primary);
}
.cta-button {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}
.cta-button:hover {
    background: #E55555;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}
/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FF9A8B 0%, #FF6B6B 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 107, 107, 0.8);
}
.hero .container {
    position: relative;
    z-index: 1;
}
.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}
.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}
.hero .cta-button {
    background: white;
    color: var(--primary);
    font-size: 1.1rem;
    padding: 15px 30px;
}
.hero .cta-button:hover {
    background: var(--light);
}
/* Section Styles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}
.section-title p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}
/* Card Styles */
.brand-card, .value-card, .category-card, .testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.brand-card:hover, .value-card:hover, .category-card:hover, .testimonial-card:hover {
    transform: translateY(-10px);
}
/* Form Styles */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}
.progress-bar {
    display: flex;
    background: var(--light);
}
.progress-step {
    flex: 1;
    text-align: center;
    padding: 20px 10px;
    position: relative;
    font-weight: 600;
}
.progress-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 15px solid var(--light);
    transform: translateY(-50%);
    z-index: 2;
}
.progress-step:last-child::after {
    display: none;
}
.progress-step.active {
    background: var(--primary);
    color: white;
}
.progress-step.active::after {
    border-left-color: var(--primary);
}
.progress-step.completed {
    background: var(--success);
    color: white;
}
.progress-step.completed::after {
    border-left-color: var(--success);
}
/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 50px 0 20px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}
.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}
.footer-column ul {
    list-style: none;
}
.footer-column ul li {
    margin-bottom: 10px;
}
.footer-column a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-column a:hover {
    color: var(--primary);
}
.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.9rem;
}
/* Mobile Menu */
.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}
/* Responsive */
@media (max-width: 992px) {
    nav ul {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
}
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}
@media (max-width: 576px) {
    .hero {
        padding: 60px 0;
    }
    
    .brand-story, .value-prop, .process-section, .faq-section {
        padding: 60px 0;
    }
}
/* Registration Form Styles */
.form-step {
    padding: 40px;
    display: none;
}
.form-step.active {
    display: block;
}
.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.file-upload {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 100%;
}
.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: var(--light);
    border: 2px dashed #ddd;
    border-radius: 8px;
    transition: all 0.3s;
}
.file-upload:hover .file-upload-label {
    background: #f0f0f0;
    border-color: var(--primary);
}
.file-upload.has-file .file-upload-label {
    background: rgba(40, 167, 69, 0.1);
    border-color: var(--success);
    color: var(--success);
}
.conditional-field {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--warning);
}
.conditional-field.show {
    display: block;
}
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}
.btn-prev {
    background: var(--gray);
    color: white;
}
.btn-prev:hover {
    background: #5a6268;
}
.btn-next {
    background: var(--primary);
    color: white;
}
.btn-next:hover {
    background: #E55555;
}
.btn-submit {
    background: var(--success);
    color: white;
}
.btn-submit:hover {
    background: #218838;
}
.success-message {
    display: none;
    text-align: center;
    padding: 60px 40px;
}
.success-message i {
    font-size: 5rem;
    color: var(--success);
    margin-bottom: 20px;
}
.success-message h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--dark);
}
.success-message p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 30px;
}

/* Photo Preview Styles */
.photo-preview {
    margin-top: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    display: none;
}

.photo-preview.show {
    display: block;
}

.photo-preview p {
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--dark);
}

.image-preview {
    position: relative;
    max-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
    margin-top: 10px;
}

.image-preview img {
    width: 100%;
    height: auto;
    display: block;
}

.image-preview .remove-image {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--danger);
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive adjustments for photo preview */
@media (max-width: 576px) {
    .image-preview-container {
        justify-content: center;
    }
}