/* ================= PARTNER PAGE ================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600&display=swap');

/* Reset and Globals inherited from style.css */

/* HERO SECTION */
.partner-hero {
    height: 90vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
        url("../image/bg_img.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.partner-hero-content {
    max-width: 800px;
    z-index: 2;
}

.partner-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    margin-bottom: 25px;
    color: #c6a75e;
    line-height: 1.2;
}

.partner-hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #ddd;
}

.partner-hero-btn {
    display: inline-block;
    background: #c6a75e;
    padding: 16px 45px;
    border-radius: 50px;
    color: #0c0c0c;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(198, 167, 94, 0.3);
}

.partner-hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(198, 167, 94, 0.5);
    background: #d4b26a;
}

/* HOW IT WORKS SECTION */
.partner-steps {
    background: #f3efe7;
    padding: 100px 20px;
}

.partner-section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.partner-section-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #a67c2d;
    margin-bottom: 15px;
}

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

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step-card {
    background: #ffffff;
    border: 1px solid rgba(198, 167, 94, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #f4f1ea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: bold;
    color: #a67c2d;
    margin: 0 auto 25px;
    border: 2px solid #c6a75e;
}

.step-card h3 {
    font-size: 20px;
    color: #0c0c0c;
    margin-bottom: 15px;
}

.step-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* BENEFITS SECTION */
.partner-benefits {
    background: #0c0c0c;
    color: #ffffff;
    padding: 100px 20px;
}

.partner-benefits .partner-section-heading h2 {
    color: #c6a75e;
}

.partner-benefits .partner-section-heading p {
    color: #aaa;
}

.benefits-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #1a1a1a;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(198, 167, 94, 0.1);
}

.benefit-icon {
    font-size: 30px;
    color: #c6a75e;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(198, 167, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #f4f1ea;
}

.benefit-content p {
    font-size: 15px;
    color: #aaa;
    line-height: 1.6;
}

/* CALL TO ACTION */
.partner-cta {
    background: #f3efe7;
    padding: 120px 20px;
    text-align: center;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
    border: 1px solid rgba(198, 167, 94, 0.2);
}

.cta-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #0c0c0c;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .partner-hero-content h1 {
        font-size: 38px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    
    .cta-box h2 {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .partner-hero {
        height: 80vh;
    }

    .partner-hero-content h1 {
        font-size: 32px;
    }

    .partner-hero-btn {
        padding: 14px 30px;
        font-size: 16px;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}


/* ================= FORM SECTION ================= */

.project-form-section {
    background: #f4f1ea;
    padding: 80px 20px;
}

.form-container {
    max-width: 900px;
    margin: auto;
    background: #f9f6ef;
    padding: 60px 60px 50px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

/* Heading */
.form-heading {
    text-align: center;
    margin-bottom: 50px;
}

.form-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #a67c2d;
    margin-bottom: 10px;
}

.form-heading p {
    color: #b89447;
    font-size: 15px;
}

/* Form Layout */
.project-form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 30px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.form-group.full {
    width: 100%;
}

/* Labels */
.form-group label {
    font-size: 14px;
    color: #a67c2d;
    margin-bottom: 8px;
    font-weight: 500;
}

/* Inputs */
.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #d8cfc0;
    background: #f3efe6;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    outline: none;
    transition: 0.3s ease;
}

/* Focus Effect */
.form-group input:focus,
.form-group textarea:focus {
    border-color: #c6a75e;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(198, 167, 94, 0.15);
}

/* Button */
.submit-btn {
    background: linear-gradient(135deg, #d4b26a, #c6a75e);
    border: none;
    padding: 16px;
    border-radius: 10px;
    color: white;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s ease;
}

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

/* Note */
.form-note {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
    color: #b89447;
}

/* Responsive */
@media (max-width: 768px) {

    .form-container {
        padding: 40px 25px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

