
#headline-section {
    position: relative;
    overflow: hidden;
    padding: 224px 0;          /* preserve your vertical spacing */
    padding-top: 144px;
    padding-bottom: 0;
    background-color: var(--primary-background);

    .container {
        position: relative;
        z-index: 1;

        /* --- Headline wrapper & layout --- */
        .headline {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
            width: 100%;
            height: 100%;
        }

        .headline__text {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
        }

        /* --- Title styling --- */
        .headline__title {
            max-width: 1029px;
            text-align: center;
            font-family: 'Rubik', sans-serif;
            font-size: 55px;
            font-weight: 700;
            line-height: 76px;
        }

        .headline__title--primary {
            color: #ffffff;
            text-shadow: 0px 7px 22px rgba(0, 0, 0, 0.20);
        }

        .headline__title--accent {
            /* hide the solid color */
            color: transparent;

            /* keep your text shadow */
            text-shadow: 0px 7px 22px rgba(0, 0, 0, 0.20);

            /* paint a left→right gradient from primary → tertiary → your old accent */
            background-image: linear-gradient(
                    to right,
                    var(--tertiary-color),
                    var(--primary-color)
            );

            /* clip the gradient to the letters */
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }


        /* --- Subtitle styling --- */
        .cta-description {
            width: 100%;
            color: #ABABAB;
            font-size: 22px;
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            line-height: 28px;
            word-wrap: break-word;
        }

        .cta-highlight {
            font-weight: 700;
        }

        .contact-card {
            margin: 0;
            width: 100%;
            height: 100%;
            padding: 32px;
            background: linear-gradient(
                    180deg,
                    rgba(23.91, 25.77, 42.50, 0.50) 0%,
                    rgba(23.91, 35.81, 42.50, 0.23) 0%,
                    rgba(13.60, 19.88, 34, 0.50) 100%
            );
            border-radius: 32px;
            outline: 2px solid #252528;
            outline-offset: -2px;
            backdrop-filter: blur(24px);
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 32px;
        }

        .contact-content {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 32px;
        }

        .contact-item {
            display: inline-flex;
            align-items: center;
            gap: 12px;
        }

        .contact-icon-box {
            width: 24px;
            height: 24px;
            position: relative;
            overflow: hidden;
        }

        .contact-icon {
            position: absolute;
            outline: 3px #C13C90 solid;
            outline-offset: -1.5px;
        }

        /* Email icon box */
        .email-icon {
            width: 19.5px;
            height: 15px;
            left: 2.25px;
            top: 4.5px;
        }

        /* Address icon parts */
        .address-dot {
            width: 6px;
            height: 6px;
            left: 9px;
            top: 7.5px;
        }

        .address-box {
            width: 15px;
            height: 18.75px;
            left: 4.5px;
            top: 3px;
        }

        .contact-label {
            color: #C13C90;
            font-size: 16px;
            font-family: 'Rubik', sans-serif;
            font-weight: 700;
            word-wrap: break-word;
        }

        .contact-value {
            color: white;
            font-size: 18px;
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            word-wrap: break-word;
        }








        /* --- CTA button container --- */
        .headline__cta {
            display: inline-flex;
            align-items: flex-start;
            justify-content: center;
            gap: 16px;
        }

        /* --- Explore button --- */
        .btn--explore {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            background: #C13C90;
            color: #ffffff;
            border-radius: 100px;
            outline: 1px solid #FACEEA;
            outline-offset: -1px;
            font-family: 'Inter', sans-serif;
            font-size: 18px;
            font-weight: 500;
            line-height: 18px;
            cursor: pointer;
            border: none;
        }



        /* MAKE THE CONTACT CARD FLOAT BOTTOM */
        .headline {
            height: 100%;
            justify-content: space-between;
            display: flex;
            flex-direction: column;
        }
        .contact-card {
            width: 100%;
            padding: 34px;
            background: linear-gradient(
                    180deg,
                    rgba(23.91, 25.77, 42.50, 0.50) 0%,
                    rgba(23.91, 35.81, 42.50, 0.23) 0%,
                    rgba(13.60, 19.88, 34, 0.50) 100%
            );
            border-radius: 32px;
            outline: 2px solid #252528;
            outline-offset: -2px;
            backdrop-filter: blur(24px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 350px; /* Set fixed height */
        }




        .form-wrapper {
            width: 100%;
            height: 100%;
            padding: 32px;
            background: linear-gradient(
                    180deg,
                    rgba(23.91, 25.77, 42.50, 0.50) 0%,
                    rgba(23.91, 35.81, 42.50, 0.23) 0%,
                    rgba(13.60, 19.88, 34, 0.50) 100%
            );
            border-radius: 32px;
            outline: 2px solid #252528;
            outline-offset: -2px;
            backdrop-filter: blur(24px);
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .form-container {
            width: 100%;
            max-width: 100%;
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .form-label {
            color: #C13C90;
            font-size: 1.375rem; /* 22px */
            font-family: 'Rubik', sans-serif;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: -20px;
        }

        .form-field {
            width: 100%;
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .form-input {
            flex: 1 1 auto;
            height: 60px;
            background-color: #18242B;
            border-radius: 8px;
            outline: 1px solid #9EA9A8;
            outline-offset: -1px;
            padding: 18px 12px;
            color: #C9CFCF;
            font-size: 1.25rem; /* 20px */
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            line-height: 1.2;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .form-select {
            margin-top: 17px;
            height: 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #18242B;
            border-radius: 8px;
            outline: 1px solid #9EA9A8;
            outline-offset: -1px;
            padding: 12px 16px;
        }


        .form-select::placeholder,
        .form-input::placeholder {
            color: #ABABAB !important;
            opacity: 1 !important;
        }

        .form-select::placeholder,
        .form-input::-webkit-input-placeholder {
            color: #ABABAB !important;
            opacity: 1 !important;
        }

        .form-select::placeholder,
        .form-input:-moz-placeholder {
            color: #ABABAB !important;
            opacity: 1 !important;
        }

        .form-select::placeholder,
        .form-input::-moz-placeholder {
            color: #ABABAB !important;
            opacity: 1 !important;
        }

        .form-select::placeholder,
        .form-input:-ms-input-placeholder {
            color: #ABABAB !important;
            opacity: 1 !important;
        }


        .form-select-text {
            flex: 1 1 auto;
            color: #ABABAB;
            font-size: 1.25rem;
            font-family: 'Inter', sans-serif;
            font-weight: 400;
        }

        .form-select-arrow {
            width: 17px;
            height: 8px;
            background: #ABABAB;
        }

        .form-select-space {
            width: 24px;
            height: 24px;
            opacity: 0;
        }

        .form-textarea {
            width: 100%;
            height: auto;
            min-height: 120px;
            padding: 12px;
            background: #18242B;
            border-radius: 8px;
            outline: 1px solid #9EA9A8;
            outline-offset: -1px;
            display: flex;
            align-items: flex-start;
        }

        .form-textarea-placeholder {
            color: #ABABAB;
            font-size: 1.25rem;
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            line-height: 1.2;
        }

        .form-button {
            align-self: flex-start;
            padding: 16px 32px;
            background: #C13C90;
            border-radius: 100px;
            outline: 1px solid #FACEEA;
            outline-offset: -1px;
            color: white;
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            line-height: 1;
            border: none;
            cursor: pointer;
        }

        select.form-select {
            background: #18242B;
            color: #C9CFCF;
            border: none;
            border-radius: 8px;
            outline: 1px solid #9EA9A8;
            outline-offset: -1px;
            padding: 12px 16px;
            font-size: 1.25rem;
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            line-height: 1.2;
            appearance: none; /* Optional: removes native dropdown arrow */
        }

        /* Optional: change text color of options (works in some modern browsers) */
        select.form-select option {
            background-color: #18242B;
            color: #C9CFCF;
        }





    }
    video#hero-video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        width: auto;
        height: 100vh;
        transform: translate(-50%, -50%);
        object-fit: cover;
        z-index: 1;               /* behind overlay & content */
    }






}


/* Semi-opaque layer between video and content */
#headline-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
}




/* Second section base */
#second-section {
    background-color: var(--primary-background);
    padding-top: 0;
    .container {
        padding-top: 0;
        .map-responsive {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* 16:9 ratio */
            height: 0;
            overflow: hidden;
            border-radius: 16px;
        }

        .map-responsive iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }


    }
}

