/* Import Lalezar font from Google Fonts */
body{
    background-color: #171B1B;
}
/* Block 1: Hero Section */
.hero-section {
    min-height: 100vh;
    height: 100vh;
    max-height: 900px;
    background-image: url('../images/block1-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Header stays at top */
.hero-header {
    padding: 37px 52px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    display: block;
    width: 302px;
    height: 84px;
    object-fit: contain;
}

/* Acheter Button */
.header-button-container {
    display: flex;
    align-items: center;
}

.btn-acheter {
    font-family: 'Inter', sans-serif;
    height: 45px;
    width: 123px;
    font-weight: 700;
    font-size: 14px;
    color: #DD9229;
    background-color: transparent;
    border: 1px solid var(--Golden, #DD9229);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.btn-acheter:hover {
    background-color: #DD9229;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(221, 146, 41, 0.3);
}

/* Hero Bottom Container - This pushes content to bottom */
.hero-bottom-container {
    margin-top: auto; /* This pushes it to the bottom */
    width: 100%;
    padding-bottom: 60px; /* Space from bottom */
}

/* Hero Content */
.hero-content {
    max-width: 100%;
    padding: 0 86px;
}

.formation-label {
    font-family: 'Lalezar', cursive;
    font-weight: 400;
    font-size: 40px;
    color: #DD9229;
    line-height: 1;
    margin: 0;
}

.formation-title {
    font-family: 'Lalezar', cursive;
    font-weight: 400;
    font-size: 40px;
    color: #7972B5;
    line-height: 1.2;
    margin:0;
}

.formation-description {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #8A928D;
    line-height: 1.2;
    max-width: 900px;
}

@media (max-width: 768px) {
    .hero-header {
        padding: 20px 10px;
    }
    
    .logo {
        width: 200px;
        height: auto;
    }
    
    .hero-content {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        padding: 0 20px;
    }
    
    .formation-title,
    .formation-label {
        margin-bottom: 15px;
    }
    .hero-bottom-container {
        padding-bottom: 40px;
    }
}

/* Block 2: Why This Master? */
.why-master-section {
    min-height: 821px;
    background-color: #252240;
    padding: 150px;
    display: flex;
    align-items: center;
}

.why-master-content {
    max-width: 100%;
    margin: 0 auto;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 29px;
    color: #DD9229;
    text-align: left;
    margin: 0;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.section-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #F5F5F5;
    line-height: 1.3;
    margin: 0;
}
.section-description p {
    margin: 0;
}
.section-description p.m {
    margin-bottom: 25px;
}

.section-description p:last-child {
    margin-bottom: 0;
}

.section-description ul {
    margin-left: 5px;
    margin-bottom: 25px;
}
.section-description ul li{
    margin-bottom: 8px;
}
.section-description ul li:last-child {
    margin-bottom: 0;
}



@media (max-width: 768px) {
    .why-master-section {
        padding: 80px 20px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .section-description {
        font-size: 18px;
        line-height: 1.5;
    }
    
    .section-description p {
        margin-bottom: 20px;
    }
}

/* Block 3: Complete Program */
.program-section {
    background-color: white;
    padding: 190px 190px 0;
}

.program-content {
    max-width: 100%;
    margin: 0 auto;
}

.program-main-title {
    font-family: 'Lalezar', cursive;
    font-weight: 400;
    font-size: 42px;
    color: #DD9229;
    text-align: center;
    margin-bottom: 40px;
}

.program-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 34px;
    color: #7972B5;
    text-align: left;
    padding-left: 45px;
    margin-bottom: 20px;
    line-height: 1.3;
}
.program-subtitle strong{
    font-weight: 800;
}

.module-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.module-row {
    height: 51px;
    border: 1px solid #BCBCCB;
    border-radius: 14px;
    background-color: white;
    display: flex;
    align-items: center;
    padding: 0 5px;
    transition: all 0.3s ease;
}

.module-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(188, 188, 203, 0.2);
    border-color: #7972B5;
}

.module-number {
    width: 39px;
    height: 39px;
    background-color: #37335E;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lalezar', cursive;
    font-weight: 400;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
    margin-right: 10px;
    padding-top: 5px;
}

.module-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #37335E;
    flex-shrink: 0;
    margin-right: 0;
    white-space: nowrap;
}

.module-arrow {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #37335E;
    margin: 0 4px;
    flex-shrink: 0;
}

.module-description {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #37335E;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
}
.part-1{
    margin-bottom: 100px;
}
@media (max-width: 768px) {
    .program-section {
        padding: 80px 20px;
    }
    
    .program-main-title {
        font-size: 34px;
    }
    
    .program-subtitle {
        font-size: 28px;
        margin-bottom: 40px;
        padding-left: 0;
        text-align: center;
    }
    
    .module-row {
        height: auto;
        min-height: 51px;
        flex-wrap: wrap;
        padding: 10px;
        flex-direction: column;
    }
    
    .module-number {
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    .module-title {
        margin: 0;
        white-space: normal;
        text-align: center;
    }
    
    .module-arrow {
        display: none;
    }
    
    .module-description {
        white-space: normal;
        flex-basis: 100%;
        padding: 0;
        margin: 0;
        text-align: center;
    }
}


/* Block 4: Practical Modalities */
.modalities-section {
    background-color: white;
    padding: 100px 67px 0;
}

.modalities-content {
    max-width: 100%;
    margin: 0 auto;
}

.modalities-main-title {
    font-family: 'Lalezar', cursive;
    font-weight: 400;
    font-size: 42px;
    color: #37335E;
    text-align: center;
    margin: 0;
    margin-bottom: 5px;
    line-height: 1;
}

.modalities-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 36px;
    color: #7972B5;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1;
}

.modalities-subtitle strong{
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

.modalities-card {
    background-color: #F2F2F8;
    border-radius: 12px;
    padding: 67px 67px;
    min-height: 355px;
}

.card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 28px;
    color: #7972B5;
    margin-bottom: 25px;
    text-align: left;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    width: 25.5px;
    height: 25.5px;
    object-fit: contain;
    flex-shrink: 0;
}

.feature-text {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #37335E;
    line-height: 1.2;
}


@media (max-width: 768px) {
    .modalities-section {
        padding: 60px 20px;
    }
    
    .modalities-main-title {
        font-size: 34px;
        margin-bottom: 10px;
    }
    
    .modalities-subtitle {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .card-title {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .modalities-card {
        padding: 25px 10px;
    }
    
    .feature-text {
        font-size: 18px;
        line-height: 1.4;
    }
    
    .feature-row {
        gap: 15px;
    }
}

/* Block 5: Practical Modalities Part 2 */
.modalities2-section {
    background-color: white;
    padding: 196px;
}

.modalities2-content {
    max-width: 100%;
    margin: 0 auto;
}

.modalities2-main-title {
    font-family: 'Lalezar', cursive;
    font-weight: 400;
    font-size: 42px;
    color: #DD9229;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1;
}

.features2-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature2-row {
    min-height: 52px;
    background-color: #F2F2F8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 20px;
    transition: all 0.3s ease;
}

.feature2-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.feature2-icon {
    width: 19.6px;
    height: 18.7px;
    object-fit: contain;
    flex-shrink: 0;
}

.feature2-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #37335E;
    line-height: 1.4;
    padding: 15px 0;
}

.feature2-text strong{
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}


@media (max-width: 768px) {
    .modalities2-section {
        padding: 80px 20px;
    }
    
    .modalities2-main-title {
        font-size: 34px;
        margin-bottom: 40px;
    }
    
    .feature2-text {
        font-size: 18px;
    }
    
    .feature2-row {
        padding: 0 20px;
        gap: 15px;
        min-height: 48px;
    }
    
    .feature2-icon {
        width: 18px;
        height: 17px;
    }
}

/* Block 6: Specialisations possibles */
.specializations-section {
    min-height: 767px;
    background-color: #7972B5;
    padding: 154px;
    display: flex;
    align-items: center;
}

.specializations-content {
    max-width: 100%;
    margin: 0 auto;
}

.specializations-title {
    font-family: 'Lalezar', cursive;
    font-weight: 400;
    font-size: 42px;
    color: #37335E;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1;
}

.specializations-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #F2F2F8;
    line-height: 1.4;
}

.specializations-description p {
    margin-bottom: 30px;
}

.specializations-description p {
    margin: 0;
}
.specializations-description p.m {
    margin-bottom: 25px;
}

.specializations-description p:last-child {
    margin-bottom: 0;
}

.specializations-description ul {
    margin-left: 5px;
    margin-bottom: 25px;
}
.specializations-description ul li{
    margin-bottom: 8px;
}
.specializations-description ul li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .specializations-section {
        padding: 60px 20px;
        min-height: auto;
    }
    
    .specializations-title {
        font-size: 30px;
        margin-bottom: 35px;
    }
    
    .specializations-description {
        font-size: 18px;
    }
    
    .specializations-description p {
        margin-bottom: 20px;
    }
}

/* Block 7: Career Opportunities */
.career-section {
    background-color: white;
    padding: 100px 67px;
}

.career-section .container {
    max-width: 100%;
    margin: 0 auto;
}

.career-card {
    min-height: 701px;
    background-color: #DD9229;
    border-radius: 12px;
    padding: 100px 150px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 30px rgba(221, 146, 41, 0.15);
}

/* Card Title */
.career-title {
    font-family: 'Lalezar', cursive;
    font-weight: 400;
    font-size: 42px;
    color: #DFE4E1;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1;
}

/* Card Content */
.career-content {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 23px;
    color: #F2F2F8;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.career-content p {
    margin-bottom: 10px;
}

.career-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .career-section {
        padding: 60px 20px;
    }
    
    .career-card {
        padding: 40px 10px;
        min-height: auto;
    }
    
    .career-title {
        font-size: 30px;
        margin-bottom: 35px;
    }
    
    .career-content {
        font-size: 20px;
    }
    
    .career-content p {
        margin-bottom: 22px;
    }
}

/* Block 8: Investment & Financial Modalities */
.investment-section {
    background-color: white;
    padding: 100px 119px;
    min-height: 786px;
    display: flex;
    align-items: center;
}

.investment-section .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.investment-card {
    min-height: 701px;
    background-color: #252F2D;
    border-radius: 12px;
    padding: 100px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 30px rgba(37, 47, 45, 0.15);
}

.investment-title {
    font-family: 'Lalezar', cursive;
    font-weight: 400;
    font-size: 36px;
    color: #DD9229;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1;
}

.investment-content {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #DFE4E1;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.investment-content p {
    margin-bottom: 20px;
}

.investment-content p strong{
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

.investment-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .investment-section {
        padding: 0 20px 60px;
    }
    
    .investment-card {
        padding: 40px 10px;
        min-height: auto;
    }
    
    .investment-title {
        font-size: 30px;
        margin-bottom: 35px;
    }
    
    .investment-content {
        font-size: 20px;
    }
    
    .investment-content p {
        margin-bottom: 22px;
        text-align: justify;
    }
}

/* Block 9: Practical Modalities Part 3 */
.modalities3-section {
    background-color: white;
    padding: 80px 196px 196px;
}

.modalities3-content {
    max-width: 100%;
    margin: 0 auto;
}

.modalities3-main-title {
    font-family: 'Lalezar', cursive;
    font-weight: 400;
    font-size: 42px;
    color: #37335E;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1;
}

.features3-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature3-row {
    min-height: 52px;
    background-color: white;
    border: 1px solid #BCBCCB;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 20px;
    transition: all 0.3s ease;
}

.feature3-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(188, 188, 203, 0.15);
    border-color: #DD9229;
}

.feature3-icon {
    width: 18px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

.feature3-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #37335E;
    line-height: 1.3;
    padding: 15px 0;
}

.feature3-text strong{
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

@media (max-width: 768px) {
    .modalities3-section {
        padding: 40px 20px;
    }
    
    .modalities3-main-title {
        font-size: 34px;
        margin-bottom: 40px;
    }
    
    .feature3-text {
        font-size: 18px;
    }
    
    .feature3-row {
        padding: 0 20px;
        gap: 15px;
        min-height: 48px;
    }
    
    .feature3-icon {
        width: 16px;
        height: 14px;
    }
}

/* Block 10: Join the Circle */
.join-circle-section {
    min-height: 492px;
    background-color: #37335E;
    display: flex;
    align-items: center;
    padding: 80px 154px;
}

.join-circle-content {
    max-width: 100%;
    margin: 0 auto;
    
}

.join-circle-title {
    font-family: 'Lalezar', cursive;
    font-weight: 400;
    font-size: 42px;
    color: #DD9229;
    margin-bottom: 30px;
    line-height: 1;
    text-align: center;
}

.join-circle-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #DFE4E1;
    line-height: 1.4;
    text-align: left;
}

.join-circle-text p {
    margin-bottom: 30px;
}

.join-circle-text p strong{
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

.join-circle-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .join-circle-section {
        padding: 40px 20px;
        min-height: auto;
    }
    
    .join-circle-title {
        font-size: 30px;
        margin-bottom: 30px;
    }
    
    .join-circle-text {
        font-size: 18px;
    }
    
    .join-circle-text p {
        margin-bottom: 18px;
    }
}

/* Block 11: Contact Form */
.contact-section {
    background-color: white;
    padding: 146px;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Column 1: Text Content */
.contact-text-col {
    flex: 1;
    min-width: 300px;
}

.contact-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 44px;
    color: #37335E;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 29px;
    color: #8E8FAD;
    line-height: 1.4;
}

.contact-form-col {
    flex: 1;
    min-width: unset;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    position: relative;
}

.input-with-icon {
    position: relative;
}

.input-with-icon .input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    object-fit: contain;
    pointer-events: none;
}

.input-with-icon input {
    width: 100%;
    max-width: 100%;
    height: 58px;
    border: 1px solid #8A928D;
    border-radius: 12px;
    background-color: white;
    padding: 0 20px 0 55px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #171B1B;
    transition: all 0.3s ease;
}

.input-with-icon input:focus {
    outline: none;
    border-color: #37335E;
    box-shadow: 0 0 0 2px rgba(55, 51, 94, 1);
}

.input-with-icon input::placeholder {
    color: #8A928D;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.textarea-with-icon {
    position: relative;
}

.textarea-with-icon .textarea-icon {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 20px;
    height: 20px;
    object-fit: contain;
    pointer-events: none;
}

.textarea-with-icon textarea {
    width: 100%;
    max-width: 100%;
    height: 157px;
    border: 1px solid #8A928D;
    border-radius: 12px;
    background-color: white;
    padding: 20px 20px 20px 55px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #171B1B;
    resize: vertical;
    min-height: 157px;
    transition: all 0.3s ease;
}

.textarea-with-icon textarea:focus {
    outline: none;
    border-color: #37335E;
    box-shadow: 0 0 0 2px rgba(55, 51, 94, 0.1);
}

.textarea-with-icon textarea::placeholder {
    color: #8A928D;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.submit-btn {
    width: 169px;
    height: 48px;
    background-color: #37335E;
    border: none;
    border-radius: 10px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background-color: #2a2649;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(55, 51, 94, 0.2);
}

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

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 20px;
    }
    
    .contact-title {
        font-size: 34px;
    }
    
    .contact-subtitle {
        font-size: 24px;
    }
    
    .contact-form {
        gap: 0;
    }
}

/* Footer */
.main-footer {
    background-color: #171B1B;
    height: 291px;
    display: flex;
    align-items: center;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 38px;
}

/* Column 1: Logo and Newsletter */
.footer-col-left {
    flex: 1;
}

.footer-logo-newsletter {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-logo-container {
    flex-shrink: 0;
}

.footer-logo {
    width: 229px;
    height: 229px;
    object-fit: contain;
}

.newsletter-block {
    max-width: 500px;
}

.newsletter-title {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #DFE4E1;
    margin-bottom: 0;
    line-height: 1.2;
}

.newsletter-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #8A928D;
    margin-bottom: 10px;
}

.newsletter-form {
    width: 392px;
    height: 51px;
    border: 1px solid #DD9229;
    border-radius: 10px;
    background-color: transparent;
    display: flex;
    overflow: hidden;
    margin-bottom: 10px;
}

.newsletter-input {
    flex: 1;
    background-color: transparent;
    border: none;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: white;
    outline: none;
}

.newsletter-input::placeholder {
    color: #DFE4E1;
    opacity: 0.8;
}

.newsletter-btn {
    width: 127px;
    background-color: #DD9229;
    color: #171B1B;
    border: none;
    padding: 0 auto;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.newsletter-btn:hover {
    background-color: #c78224;
}
.newsletter-btn .loading{
    color: #171B1B;
}
.copyright {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #8A928D;
    margin: 0;
}

.copyright strong{
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

.footer-col-right {
    flex-shrink: 0;
    padding-right: 60px;
}

.social-media-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.social-media-list {
    display: flex;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
}

.social-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;    
    transition: all 0.3s ease;
}

.social-link:hover .social-icon {
    filter: brightness(0) invert(1) opacity(1);
}


@media (max-width: 768px) {
    .main-footer{
        height: auto;
    }
    .footer-wrapper{
        padding: 60px 20px;
        flex-direction: column;
        gap: 45px;
    }
    .footer-logo-newsletter {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }
    
    .footer-logo {
        width: 180px;
        height: 180px;
    }

    .newsletter-form{
        width: 100%;
        height: unset;
    }
    .newsletter-form .newsletter-btn{
        height: 48px;
    }
    .newsletter-form .newsletter-input{
        min-height: 60px;
    }
    .footer-col-right{
        padding-right: 0;
    }
    .social-media-list {
        gap: 20px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-icon {
        width: 18px;
        height: 18px;
    }
}

/* Form animations */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake {
    animation: shake 0.5s ease-in-out;
}

/* Form validation styles */
.is-invalid {
    border-color: #dc3545 !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.success-message {
    color: #28a745;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Loading spinner */
.loading-spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
}

@keyframes spinner-border {
    to { transform: rotate(360deg); }
}


/* Form focus effects */
.input-with-icon input:focus,
.textarea-with-icon textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.25);
    border-color: #80bdff;
}

@media (max-width: 768px) {
    .contact-form .form-group {
        margin-bottom: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        width: 100% !important;
    }
    
    .newsletter-btn {
        width: 100% !important;
    }
}

.loading {
    display: none;
}
.swal2-container{
    font-family: 'Inter', sans-serif;
}
.swal2-confirm{
    width: 169px;
    height: 48px;
    background-color: #37335E;
    border: none;
    border-radius: 10px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.swal2-confirm:hover{
    background-color: #37335E;
    border: none;
    color: white;
}