@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=Qwigley&display=swap');

:root {
    --font-family: 'Montserrat';
    --bg-dark: #0d1117;
    --accent-teal: #00d4c8;
    --accent-cyan: #00aaff;
    --accent-red: #e84545;
    --text-primary: #e8edf2;
    --text-muted: #7a8fa6;
    --tab-border: rgba(255, 255, 255, 0.2);
    --bg-panel: rgba(122, 122, 122, 0.18);
    --border-subtle: #00655B;
    --teal: linear-gradient(90deg, #27998E 0%, #006B61 100%);
    --teal-glow: #00655B;
    --text-primary: #878787;
    --text-secondary: #DADADA;
}


html {
    overflow-x: clip;
    max-width: 100%;
}

body {
    font-family: var(--font-family);
    background: linear-gradient(81.22deg, #00B2FF -38.22%, #000000 32.12%, #000000 34.13%, #000000 72.1%, #41FFEC 141.12%);
    background-attachment: fixed;
    overflow-x: clip;
    max-width: 100%;
}

h1 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 42px;
    background: linear-gradient(90deg, #FFFFFF 0%, #DADADA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

h1 span {
    background: linear-gradient(90deg, #00B2FF 0%, #41FFEC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;

}

p.description {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #DADADA;
    margin: 20px 0;
}

p.description.title {
    font-size: 22px;
    font-weight: 600;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1160px;
    }
}

.hero-section {
    position: relative;
    overflow: hidden;
    margin-top: -80px;
}

.hero-section p {
    font-family: var(--font-family);
    max-width: 460px;
}

.hero-section .hero-slide {
    display: flex;
    align-items: center;
}

.hero-section .hero-image {
    position: relative;
    text-align: right;
}

.hero-section .hero-image img {
    height: 420px;
    object-fit: contain;
    filter: brightness(0.9) contrast(1.05);
    padding-right: 100px;
}

@media (max-width: 991px) {

    .hero-section .hero-image {
        text-align: center !important;
        margin-bottom: 40px;
    }

    .hero-section .hero-image img {
        height: 380px;
    }

    h1 {
        font-size: 35px;
    }

}

@media (max-width: 767px) {
    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 24px;
        line-height: 35px;
    }

    h6 {
        font-size: 18px;
    }

    p.description {
        margin: 10px 0;
        max-width: 100%;
        font-size: 14px;
    }

    .hero-section {
        margin-top: 0;
    }

    .hero-section .hero-slide {
        padding-top: 0;
    }

    .hero-section .hero-slide .hero-content {
        order: 2;
        margin-bottom: 32px;
        text-align: center;
    }

    .hero-section .hero-image img {
        bottom: 15px;
    }

    .hero-image {
        margin-top: 0;
    }

    .hero-section .hero-image img {
        width: 300px;
        height: 100%;
    }

    .hero-btn {
        font-size: 12px;
    }
}

@media (max-width: 568px) {
    .hero-section .hero-image img {
        width: 270px;
        height: 100%;
    }

    h1 {
        text-align: center;
    }

    .service-label {
        text-align: center;
    }

    .service-headline {
        text-align: center;
    }

    .tag-row {
        justify-content: center;
    }
}


/* ============== form section========== */

.contact-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.contact-wrapper {
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    margin-top: 60px;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
}

.contact-info h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    background: linear-gradient(90deg, #00B2FF 0%, #41FFEC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 16px;
}

.contact-info .subtitle {
    color: var(--text-secondary);
    font-size: 15px;
    max-width: 420px;
    margin-bottom: 40px;
}

.info-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: rgba(122, 122, 122, 0.15);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 16px 18px;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.info-card:hover {
    border-color: var(--teal-glow);
    transform: translateY(-2px);
}

.info-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.icon-box {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    border: 1px solid #00655B;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
}

.icon-box svg {
    width: 26px;
    height: 26px;
    color: var(--text-secondary);
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.info-text strong {
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(90deg, #27998E 0%, #006B61 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.info-text a,
.info-text span:not(.icon-box) {
    font-size: 16px;
    color: var(--text-secondary);
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.arrow-btn {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #353535;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.arrow-btn svg {
    width: 24px;
    height: 24px;
}

.arrow-btn:hover,
.info-card:hover .arrow-btn {
    background: var(--teal);
    border-color: var(--teal);
    color: #06110e;
}

.contact-form-card {
    border: 1px solid var(--teal-glow);
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 0 0 1px rgba(23, 195, 160, 0.08), 0 20px 60px rgba(0, 0, 0, 0.4);
}

.contact-form-card h3 {
    color: #41FFEC;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 24px;
}

.field {
    margin-bottom: 16px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    background: var(--bg-panel);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 14px 16px;
    color: var(--text-secondary);
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.25s ease;
}

.field textarea {
    resize: vertical;
    min-height: 100px;
}

.field-error {
    display: block;
    color: var(--accent-red);
    font-size: 12px;
    margin: -8px 0 16px;
}

.field input.has-error,
.field select.has-error,
.field textarea.has-error,
.select-trigger.has-error {
    border-color: var(--accent-red) !important;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #878787;
}


/* Phone field */
.phone-field {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-panel);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 0 16px;
    transition: border-color 0.25s ease;
}

.phone-field:focus-within {
    border-color: var(--teal);
}

.phone-field .flag img {
    max-width: 24px;
    display: block;
    border-radius: 2px;
}

.phone-field .code {
    font-size: 14px;
    color: var(--text-secondary);
}

.phone-field input {
    border: none;
    background: transparent;
    padding: 14px 0 14px 10px;
}

.country-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    border-right: 1px solid var(--border-subtle);
    padding: 14px 10px 14px 0;
    cursor: pointer;
    font-family: inherit;
}

.country-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 6px;
    width: 280px;
    max-width: 90vw;
    background: #0f1512;
    border: 1px solid var(--teal-glow);
    border-radius: 10px;
    z-index: 30;
    overflow: hidden;
}

.phone-field.open .country-dropdown {
    display: block;
}

.country-search {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    outline: none;
}

.country-search::placeholder {
    color: #878787;
}

.country-options {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 240px;
    overflow-y: auto;
}

.country-options li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.country-options li:last-child {
    border-bottom: none;
}

.country-options li img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    flex-shrink: 0;
}

.country-options li .country-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.country-options li .country-dial {
    color: #878787;
    flex-shrink: 0;
}

.country-options li:hover,
.country-options li.selected {
    background: rgba(0, 178, 255, 0.1);
    color: #fff;
}

.country-options .no-results {
    padding: 14px 16px;
    color: #878787;
    font-size: 14px;
}

/* Select field */
.select-field {
    position: relative;
}

.select-field::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--text-secondary);
    border-bottom: 2px solid var(--text-secondary);
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
    transition: transform 0.25s ease;
    z-index: 2;
}

.select-field.open::after {
    transform: translateY(-30%) rotate(-135deg);
}

/* Custom dropdown */
.select-native {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
}

.select-trigger {
    width: 100%;
    background: var(--bg-panel);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 14px 16px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.25s ease, border-radius 0.15s ease;
}

.select-field.open .select-trigger {
    border-color: var(--teal-glow);
    border-radius: 10px 10px 0 0;
}

.select-options {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: -1px;
    background: #0f1512;
    border: 1px solid var(--teal-glow);
    border-top: none;
    border-radius: 0 0 10px 10px;
    max-height: 260px;
    overflow-y: auto;
    z-index: 30;
}

.select-field.open .select-options {
    display: block;
}

.select-options li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease, color 0.2s ease;
}

.select-options li:last-child {
    border-bottom: none;
}

.select-options li:hover,
.select-options li.selected {
    background: rgba(0, 212, 200, 0.1);
    color: #fff;
}

.select-options .option-checkbox {
    position: relative;
    flex-shrink: 0;
    width: 19px;
    height: 19px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25);
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.select-options li:hover .option-checkbox {
    border-color: var(--accent-teal);
    background: rgba(0, 212, 200, 0.08);
}

.select-options li.selected .option-checkbox {
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-cyan));
    border-color: var(--accent-teal);
    box-shadow: 0 0 4px rgba(0, 212, 200, 0.25);
    transform: scale(1.05);
}

.select-options li.selected .option-checkbox::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #04110f;
    border-width: 0 2.5px 2.5px 0;
    border-radius: 1px;
    transform: rotate(45deg);
}

.select-options li.selected {
    font-weight: 500;
}

/* Submit button */
.submit-btn {
    width: 100%;
    background: #006B61;
    color: var(--text-primary);
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: filter 0.25s ease, transform 0.15s ease;
}

.submit-btn:not(:disabled) {
    background: linear-gradient(90deg, #3DBBAE 0%, #1F8F82 100%);
    color: #fff;
}

.submit-btn:hover {
    filter: brightness(1.08);
}

.submit-btn:active {
    transform: scale(0.98);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: none;
    transform: none;
}

.form-status {
    margin: 12px 0 0;
    font-size: 13px;
    text-align: center;
    min-height: 18px;
}

.form-status.is-success {
    color: var(--accent-teal);
}

.form-status.is-error {
    color: var(--accent-red);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .contact-info h2 {
        text-align: center;
    }

    .contact-info .subtitle {
        max-width: 100%;
        text-align: center;
    }

    .contact-section {
        padding: 40px 16px;
    }

    .icon-box svg {
        height: 20px;
        width: 20px;
    }

}

@media (max-width: 480px) {

    .contact-form-card {
        padding: 24px 20px;
    }

    .info-card {
        padding: 14px;
    }

    .icon-box {
        width: 38px;
        height: 38px;
    }

    .arrow-btn {
        width: 35px;
        height: 35px;
    }
}

/* -----------banner section- */


.banner {
    position: relative;
    width: 100%;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;

}

.banner-title {
    font-family: var(--font-family);
    font-size: clamp(60px, 14vw, 200px);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: transparent;
    background: linear-gradient(180deg, rgba(65, 255, 236,0.25), rgba(0, 107, 97, 0.25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-text-stroke: 0;
    line-height: 1;
    text-transform: uppercase;
    user-select: none;
    white-space: nowrap;
}

.banner-tagline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Qwigley', cursive;
    font-size: clamp(40px, 2.2vw, 22px);
    color: #DADADA;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .banner {
        min-height: 160px;
        padding: 30px 0;
    }

    .banner-tagline {
        font-size: clamp(12px, 3.5vw, 18px);
    }
}

@media (max-width: 420px) {
    .banner {
        min-height: 130px;
    }

    .banner-title {
        letter-spacing: 0.02em;
    }
}
