/* Blueprint Course Content Styles */

.blueprint-contents {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.content-section {
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.content-section:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.content-section::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0;
    border-radius: 16px;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(240, 244, 248, 0.7));
    transition: opacity 0.4s ease;
}

.content-section:hover::after {
    opacity: 1;
}

.content-icon {
    background: linear-gradient(135deg, #084cdf, #052c65);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(8, 76, 223, 0.3);
    transition: transform 0.3s ease;
}

.content-section:hover .content-icon {
    transform: scale(1.1) rotate(5deg);
}

.content-icon i {
    font-size: 2rem;
    color: white;
}

.content-section h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #1a1a2e;
    font-weight: 700;
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a68;
    margin-bottom: 20px;
}

.blueprint-list {
    list-style-type: none;
    padding: 0;
    margin: 0 0 30px;
}

.blueprint-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #4a4a68;
}

.blueprint-list li::before {
    content: '✓';
    color: #084cdf;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.content-cta {
    margin-top: auto;
    display: inline-block;
    padding: 12px 24px;
    background-color: #084cdf;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(8, 76, 223, 0.3);
}

.content-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(8, 76, 223, 0.4);
    background-color: #052c65;
}

.content-cta.highlight {
    background-color: #f5a623;
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3);
}

.content-cta.highlight:hover {
    background-color: #f39c12;
    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.4);
}

.content-cta-row {
    text-align: center;
    margin: 40px 0 20px;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #084cdf, #052c65);
    color: white;
    border-radius: 40px;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(8, 76, 223, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-lg:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(8, 76, 223, 0.4);
}

/* Blueprint Form Section */
.blueprint-form-section {
    background: linear-gradient(135deg, #052c65 0%, #084298 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.blueprint-form-section::before,
.blueprint-form-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.blueprint-form-section::before {
    top: -250px;
    right: -250px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: float 15s infinite alternate ease-in-out;
}

.blueprint-form-section::after {
    bottom: -200px;
    left: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    animation: float 18s infinite alternate-reverse ease-in-out;
}

.form-container-wrapper {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
}

.form-container-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #084cdf, #f5a623);
    z-index: 1;
}

.form-header {
    padding: 60px 50px;
    background-image: linear-gradient(135deg, #f8f9fa 0%, #e2e8f0 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a1a2e;
    line-height: 1.2;
    font-weight: 700;
}

.form-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #4a4a68;
}

.blueprint-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blueprint-benefits li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    color: #1a1a2e;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.blueprint-benefits li:last-child {
    border-bottom: none;
}

.blueprint-benefits li i {
    color: #f5a623;
    font-size: 1.2rem;
    min-width: 20px;
    text-align: center;
}

.form-embed-container {
    padding: 30px;
    background-color: white;
    height: 100%;
}

/* Join Team Section */
.join-team-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
}

.join-team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zm20.97 0l9.315 9.314-1.414 1.414L34.828 0h2.83zM22.344 0L13.03 9.314l1.414 1.414L25.172 0h-2.83zM32 0l12.142 12.142-1.414 1.414L30 .828 17.272 13.556l-1.414-1.414L28 0h4zM.284 0l28 28-1.414 1.414L0 2.544V0h.284zM0 5.373l25.456 25.455-1.414 1.415L0 8.2V5.374zm0 5.656l22.627 22.627-1.414 1.414L0 13.86v-2.83zm0 5.656l19.8 19.8-1.415 1.413L0 19.514v-2.83zm0 5.657l16.97 16.97-1.414 1.415L0 25.172v-2.83zM0 28l14.142 14.142-1.414 1.414L0 30.828V28zm0 5.657L11.314 44.97 9.9 46.386l-9.9-9.9v-2.828zm0 5.657L8.485 47.8 7.07 49.212 0 42.143v-2.83zm0 5.657l5.657 5.657-1.414 1.415L0 47.8v-2.83zm0 5.657l2.828 2.83-1.414 1.413L0 53.456v-2.83zM54.627 60L30 35.373 5.373 60H8.2L30 38.2 51.8 60h2.827zm-5.656 0L30 41.03 11.03 60h2.828L30 43.858 46.142 60h2.83zm-5.656 0L30 46.686 16.686 60h2.83L30 49.515 40.485 60h2.83zm-5.657 0L30 52.343 22.344 60h2.83L30 55.172 34.828 60h2.83zM32 60l-2-2-2 2h4zM59.716 0l-28 28 1.414 1.414L60 2.544V0h-.284zM60 5.373L34.544 30.828l1.414 1.415L60 8.2V5.374zm0 5.656L37.373 33.656l1.414 1.414L60 13.86v-2.83zm0 5.656l-19.8 19.8 1.415 1.413L60 19.514v-2.83zm0 5.657l-16.97 16.97 1.414 1.415L60 25.172v-2.83zM60 28L45.858 42.142l1.414 1.414L60 30.828V28zm0 5.657L48.686 44.97l1.415 1.415 9.9-9.9v-2.828zm0 5.657L51.515 47.8l1.414 1.413 7.07-7.07v-2.83zm0 5.657l-5.657 5.657 1.414 1.415L60 47.8v-2.83zm0 5.657l-2.828 2.83 1.414 1.413L60 53.456v-2.83zM39.9 16.385l1.414-1.414L30 3.658 18.686 14.97l1.415 1.415 9.9-9.9 9.9 9.9zm-2.83 2.828l1.415-1.414L30 9.313 21.515 17.8l1.414 1.413L30 11.8l7.07 7.414z' fill='%23084cdf' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.join-team-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.join-team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a2e;
    font-weight: 700;
}

.join-team-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #4a4a68;
}

.join-team-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    min-width: 150px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    font-size: 2.2rem;
    color: #084cdf;
}

.benefit-item span {
    font-weight: 600;
    color: #1a1a2e;
}

.join-team-cta {
    margin-top: 40px;
}

.join-team-cta .btn-primary {
    background: linear-gradient(135deg, #084cdf, #052c65);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(8, 76, 223, 0.3);
    transition: all 0.3s ease;
}

.join-team-cta .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(8, 76, 223, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blueprint-contents {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .join-team-benefits {
        gap: 20px;
    }
    
    .form-container-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-header {
        padding: 40px 30px;
    }
    
    .form-embed-container {
        height: 900px;
    }
}

@media (max-width: 768px) {
    .blueprint-contents {
        grid-template-columns: 1fr;
    }
    
    .content-section {
        padding: 25px;
    }
    
    .join-team-content h2 {
        font-size: 2rem;
    }
    
    .join-team-content p {
        font-size: 1.1rem;
    }
    
    .benefit-item {
        min-width: 120px;
        padding: 20px;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .form-header p {
        font-size: 1rem;
    }
    
    .blueprint-benefits li {
        font-size: 0.95rem;
    }
    
    .form-embed-container {
        padding: 20px;
        height: 950px;
    }
}