:root {
    --primary-color: #1a1aa0;
    --secondary-color: #12128a;
    --accent-color: #dafe23;
    --divergius-color: #FF0080;
    --accent-text: #1a1aa0;
    --text-color: #333;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--primary-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px 0;
    text-align: left;
}

header .logo {
    width: 120px;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.two-column-layout {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    flex: 1;
}

@media (min-width: 992px) {
    .two-column-layout {
        flex-direction: row;
        min-height: calc(100vh - 60px); /* Header height */
    }
}

.two-column-layout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://files.wearemind.io/src/images/Idyllic%20Coastal%20Lounging%20Area.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
    display: none;
}

.left-column, .right-column {
    position: relative;
    z-index: 1;
    padding: 30px;
}

@media (min-width: 992px) {
    .left-column {
        flex: 5;
        overflow-y: auto;
        padding: 40px;
        display: flex;
        flex-direction: column;
        background-color: white;
        color: var(--primary-color);
    }
    
.right-column {
    flex: 4;
    background: linear-gradient(135deg, var(--primary-color) 30%, var(--secondary-color) 100%);
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.right-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://files.wearemind.io/src/images/Idyllic%20Coastal%20Lounging%20Area.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.right-column > * {
    position: relative;
    z-index: 1;
}
}

.hero-content {
    text-align: left;
    max-width: 600px;
}

.date-badge {
    background-color: var(--accent-color);
    color: var(--accent-text);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1rem;
}

.online-badge {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: normal;
    color: rgba(26, 26, 160, 0.7);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(26, 26, 160, 0.8);
}

.speakers-section {
    margin-top: 30px;
}

.speakers-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.speaker-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.speaker-card {
    display: flex;
    align-items: center;
    background-color: rgba(26, 26, 160, 0.05);
    border-radius: 10px;
    padding: 15px;
    width: 100%;
    border: 1px solid rgba(26, 26, 160, 0.1);
}

.speaker-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0;
    border: 2px solid rgba(26, 26, 160, 0.2);
    flex-shrink: 0;
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-info {
    margin-left: 15px;
    text-align: left;
}

.speaker-name {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

.speaker-title {
    font-size: 0.9rem;
    color: rgba(26, 26, 160, 0.7);
    margin-bottom: 0;
}

.speaker-company {
    font-size: 0.9rem;
    color: var(--divergius-color);
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.partner-logo {
    height: 40px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo-mind {
    height: 60px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.partner-logo-mind:hover {
    opacity: 1;
}
.countdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

.countdown h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.countdown-segment {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px;
    border-radius: 8px;
    min-width: 60px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-segment .number {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
}

.countdown-segment .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.form-container {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.form-container h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.form-group input, 
.form-group select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    font-size: 0.9rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.form-group input:focus, 
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(218, 254, 35, 0.2);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

button {
    background-color: var(--accent-color);
    color: var(--accent-text);
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;

    &:disabled {
        opacity: 0.5;
        cursor: not-allowed;

        &:after { content: ""; }
    }
}

button:hover {
    background-color: #c5e600;
    transform: translateY(-2px);
}

button::after {
    content: "→";
    margin-left: 8px;
    font-size: 1.2rem;
}

.asterisk {
    color: var(--accent-color);
    margin-left: 2px;
}

footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 0;
    text-align: center;
    font-size: 0.8rem;
}

footer p {
    opacity: 0.8;
}

.benefits-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.benefit-tag {
    background-color: rgba(26, 26, 160, 0.1);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(26, 26, 160, 0.2);
}

.benefit-tag:nth-child(3n) {
    background-color: rgba(218, 254, 35, 0.3);
    color: var(--accent-text);
    border-color: var(--accent-color);
}

@media (max-width: 991px) {
    .left-column, .right-column {
        padding: 20px;
    }
    
    .left-column {
        background-color: white;
        color: var(--primary-color);
    }
    
    .right-column {
        background: linear-gradient(135deg, var(--primary-color) 30%, var(--secondary-color) 100%);
    }
    
    h1 {
        font-size: 2rem;
        color: var(--primary-color);
    }
    
    .speakers-section h2 {
        font-size: 1.5rem;
    }
    
    .speaker-grid {
        flex-direction: column;
    }
}

/* FORM : Message */
#contact-form-content {
  
  &.hidden {
    display: none;
    pointer-events: none;
    visibility: hidden;
  }
}
.success-message {
  height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;

  p {
    color: white;
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .msg {
    font-weight: bold;
  }

  &.hidden { display: none; height: 0; }

  .btn-close {
    font-size: 1.1rem;
    color: #fff;
  }
 
}