/* ========================================
   WORKFITTER PAGE
   ======================================== */

/* Import Fonts */
@import url('/css/fonts.css');

/* Color Variables */
:root {
    --primary-navy: #253948;
    --secondary-gold: #B9975B;
    --primary-gold: #EAD5AF;
    --secondary-black: #091421;
}

/* Call to Action Section */
.cta-section {
    background-color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-section__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-section__main-text {
    font-family: 'Anton', sans-serif;
    font-size: 40px;
    font-weight: 400;
    color: var(--primary-navy);
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: 0%;
}

.cta-section__secondary-text {
    font-family: 'Anton', sans-serif;
    font-size: 40px;
    font-weight: 400;
    font-style: normal;
    color: var(--secondary-gold);
    text-transform: uppercase;
    line-height: 130%;
    letter-spacing: 0%;
    margin-bottom: 30px;
}

.cta-section__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-navy);
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 2%;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cta-section__link:hover {
    color: var(--secondary-gold);
}

.cta-section__link svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.cta-section__link:hover svg {
    transform: translateX(5px);
}

.cta-section__link:hover svg circle,
.cta-section__link:hover svg path {
    stroke: var(--secondary-gold);
}

/* Icons Section */
.icons-section {
    padding: 80px 0;
}

.icons-section__title {
    text-align: center;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: #fff;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.icon-card {
    text-align: center;
    color: #fff;
}

.icon-card__image {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-card__image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.icon-card__title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: var(--font-weight-black);
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--primary-gold);
}

.icon-card__description {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    color: #fff;
}

/* Explore Section */
.explore-section {
    margin-top: 6rem;
    padding: 0;
    background-color: #fff;
    overflow: hidden;
    width: 100%;
}

.explore-section__grid {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
    align-items: stretch;
    max-width: 100%;
    width: 100%;
    margin: 0;
}

.explore-section__image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 700px;
}

.explore-section__image-link {
    position: relative;
    display: block;
    cursor: pointer;
    height: 100%;
    width: 100%;
}

.explore-section__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.explore-section__play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
    z-index: 10;
}

.explore-section__image-link:hover .explore-section__play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.explore-section__content {
    padding: 50px 100px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.explore-section__title {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-navy);
    margin-bottom: 30px;
    text-transform: uppercase;
    line-height: 1.2;
}

.explore-section__trademark {
    font-size: 1.5rem;
    vertical-align: super;
}

.explore-section__description {
    font-family: 'AvertaStd', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: #333;
}

.explore-section__description ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.explore-section__description li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
}

.explore-section__description li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-weight: 900;
    color: var(--secondary-black);
    font-size: 1.2rem;
}

.explore-section__description p {
    margin-bottom: 15px;
}

/* Contact Section */



.contact-section {
    background-color: #FFFFFF;
    padding: 100px 0;
    border-top: 1px solid rgba(100, 101, 105, 1);
}

.contact-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-section__header {
    padding-right: 40px;
}

.contact-section__title {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.2;
}


.contact-section__trademark {
    font-size: 1.5rem;
    vertical-align: super;
}

.contact-section__description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(37, 57, 72, 1);
}


.contact-form {
    background: white;
    padding: 0;
    border-radius: 8px;
}

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


.form-input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-bottom: 1px solid rgba(100, 101, 105, 1);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: var(--font-weight-regular);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: border-color 0.3s ease;
    background: transparent;
}

.form-input::placeholder {
    color: rgba(100, 101, 105, 1);
}

.form-input:focus {
    outline: none;
    border-bottom-color: var(--primary-navy);
}

.form-submit {
    /* width: 100%; */
    padding: 10px 40px;
    background-color: rgba(157, 23, 46, 1);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: var(--font-weight-regular);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.form-submit:hover {
    background-color: #6d0f2a;
    transform: translateY(-2px);
}

.form-submit:active {
    transform: translateY(0);
}

.contact-form__success {
    display: none;
}

.contact-form__success.visible {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    gap: 16px;
}

.contact-form__success svg {
    width: 56px;
    height: 56px;
    stroke: #2C4F5E;
}

.contact-form__success h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2C4F5E;
    text-transform: uppercase;
    margin: 0;
}

.contact-form__success p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
    .cta-section__main-text {
        font-size: 1.75rem;
    }
    
    .cta-section__secondary-text {
        font-size: 1.25rem;
    }
    
    .icons-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .explore-section__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .explore-section__title {
        font-size: 2rem;
    }
    
    .contact-section__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-section__title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section__main-text {
        font-size: 1.5rem;
    }
    
    .cta-section__secondary-text {
        font-size: 1.1rem;
    }
    
    .icons-section {
        padding: 60px 0;
    }
    
    .icon-card__image {
        width: 80px;
        height: 80px;
    }
    
    .explore-section {
        padding: 0px;
        margin-top: 0px;
    }
    
    .explore-section__content {
        padding-left: 25px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section__header {
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    .cta-section__main-text {
        font-size: 1.3rem;
    }
    
    .explore-section__title {
        font-size: 1.75rem;
    }
    
    .contact-section__title {
        font-size: 1.75rem;
    }
    
    .form-input {
        padding: 12px 15px;
        font-size: 0.85rem;
    }
    
    .explore-section__image-wrapper {
        min-height: 350px;
    }
}