/* ============================================
   NTPL CONTACT PAGE STYLES
   ============================================
   
   Color Palette:
   - Lime Green: #89F336
   - Warm Yellow: #FFF3C0
   - Teal: #4FE0CB
   - Vibrant Green: #00BF33
   
   ============================================ */

/* ============================================
   GOOGLE FONTS IMPORT
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ============================================
   BASE STYLES & RESET
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a2e;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a2e;
}

p {
    font-family: 'Inter', sans-serif;
    color: #555;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    font-family: 'Inter', sans-serif;
}

ul,
ol {
    list-style: none;
}

::selection {
    background: #89F336;
    color: #1a1a2e;
}

/* ============================================
   MAIN CONTAINER
   ============================================ */
.ntpl-contact {
    overflow-x: hidden;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.ntpl-text-gradient {
    background: linear-gradient(135deg, #89F336, #00BF33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   HERO SECTION
   ============================================ */
.ntpl-contact-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #fefffe 0%, #f0fff4 50%, #e8fff0 100%);
    overflow: hidden;
}

.ntpl-contact-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ntpl-contact-hero__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.ntpl-contact-hero__shape--1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #89F336, #4FE0CB);
    top: -200px;
    right: -100px;
    opacity: 0.2;
}

.ntpl-contact-hero__shape--2 {
    width: 350px;
    height: 350px;
    background: #4FE0CB;
    bottom: -100px;
    left: -80px;
    opacity: 0.25;
}

.ntpl-contact-hero__shape--3 {
    width: 200px;
    height: 200px;
    background: #FFF3C0;
    top: 40%;
    left: 20%;
    opacity: 0.5;
}

.ntpl-contact-hero__pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(0, 191, 51, 0.04) 1px, transparent 0);
    background-size: 40px 40px;
}

.ntpl-contact-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.ntpl-contact-hero__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.ntpl-contact-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px 22px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #00BF33;
    box-shadow: 0 4px 20px rgba(0, 191, 51, 0.12);
    margin-bottom: 25px;
}

.ntpl-contact-hero__badge-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #89F336, #00BF33);
    border-radius: 50%;
    animation: ntpl-pulse 2s infinite;
}

@keyframes ntpl-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.6;
    }
}

.ntpl-contact-hero__title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.15;
    margin-bottom: 20px;
}

.ntpl-contact-hero__title-highlight {
    position: relative;
    display: inline-block;
}

.ntpl-contact-hero__title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg, #89F336, #4FE0CB);
    opacity: 0.3;
    z-index: -1;
    border-radius: 4px;
}

.ntpl-contact-hero__desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: #555;
    line-height: 1.8;
}

/* ============================================
   QUICK CONTACT CARDS
   ============================================ */
.ntpl-contact-quick {
    padding: 0 0 80px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.ntpl-contact-quick__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.ntpl-contact-quick__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ntpl-contact-quick__card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    transition: all 0.3s ease;
}

.ntpl-contact-quick__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(137, 243, 54, 0.12);
    border-color: #89F336;
}

.ntpl-contact-quick__card--whatsapp:hover {
    border-color: #25D366;
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.15);
}

.ntpl-contact-quick__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0fff4, #e8fff0);
    border-radius: 14px;
    color: #00BF33;
    flex-shrink: 0;
}

.ntpl-contact-quick__card--whatsapp .ntpl-contact-quick__icon {
    background: linear-gradient(135deg, #dcf8c6, #c5f0a4);
    color: #25D366;
}

.ntpl-contact-quick__info {
    flex: 1;
}

.ntpl-contact-quick__label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.ntpl-contact-quick__value {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a2e;
}

.ntpl-contact-quick__arrow {
    color: #ccc;
    transition: all 0.3s ease;
}

.ntpl-contact-quick__card:hover .ntpl-contact-quick__arrow {
    color: #00BF33;
    transform: translate(3px, -3px);
}

/* ============================================
   MAIN CONTACT SECTION
   ============================================ */
.ntpl-contact-main {
    padding: 80px 0 120px;
    background: #fff;
}

.ntpl-contact-main__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.ntpl-contact-main__grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 50px;
    align-items: start;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.ntpl-contact-form {
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.ntpl-contact-form__header {
    margin-bottom: 35px;
}

.ntpl-contact-form__tag {
    display: inline-block;
    background: linear-gradient(135deg, #89F336, #4FE0CB);
    color: #fff;
    padding: 6px 18px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.ntpl-contact-form__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.ntpl-contact-form__desc {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #666;
    margin: 0;
}

.ntpl-contact-form__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ntpl-contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ntpl-contact-form__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ntpl-contact-form__label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.ntpl-contact-form__input,
.ntpl-contact-form__select,
.ntpl-contact-form__textarea {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    background: #fafafa;
    color: #1a1a2e;
    transition: all 0.3s ease;
    outline: none;
}

.ntpl-contact-form__input:focus,
.ntpl-contact-form__select:focus,
.ntpl-contact-form__textarea:focus {
    border-color: #89F336;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(137, 243, 54, 0.1);
}

.ntpl-contact-form__input::placeholder,
.ntpl-contact-form__textarea::placeholder {
    color: #aaa;
}

.ntpl-contact-form__select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

.ntpl-contact-form__textarea {
    resize: vertical;
    min-height: 130px;
}

.ntpl-contact-form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 5px 0;
}

.ntpl-contact-form__checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: #00BF33;
}

.ntpl-contact-form__checkbox label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    cursor: pointer;
}

.ntpl-contact-form__checkbox label a {
    color: #00BF33;
    font-weight: 500;
}

.ntpl-contact-form__checkbox label a:hover {
    text-decoration: underline;
}

.ntpl-contact-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #89F336, #00BF33);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(137, 243, 54, 0.35);
    transition: all 0.4s ease;
    margin-top: 10px;
}

.ntpl-contact-form__submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(137, 243, 54, 0.45);
}

.ntpl-contact-form__submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.ntpl-contact-form__submit svg {
    transition: transform 0.3s ease;
}

.ntpl-contact-form__submit:hover svg {
    transform: translateX(3px) translateY(-3px);
}

/* Success Message */
.ntpl-contact-form__success {
    text-align: center;
    padding: 60px 40px;
}

.ntpl-contact-form__success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #89F336, #00BF33);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    box-shadow: 0 10px 40px rgba(137, 243, 54, 0.4);
}

.ntpl-contact-form__success h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.ntpl-contact-form__success p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #666;
}

/* ============================================
   CONTACT INFO SIDEBAR
   ============================================ */
.ntpl-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ntpl-contact-info__card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.ntpl-contact-info__card--main {
    background: linear-gradient(135deg, #1a1a2e, #2d2d44);
    border: none;
}

.ntpl-contact-info__header {
    margin-bottom: 25px;
}

.ntpl-contact-info__tag {
    display: inline-block;
    background: rgba(137, 243, 54, 0.2);
    color: #89F336;
    padding: 5px 14px;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.ntpl-contact-info__title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.ntpl-contact-info__locations {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ntpl-contact-info__location {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ntpl-contact-info__location-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #89F336, #00BF33);
    border-radius: 12px;
    color: #fff;
    flex-shrink: 0;
}

.ntpl-contact-info__location-content h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.ntpl-contact-info__location-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 10px;
}

.ntpl-contact-info__location-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #89F336;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ntpl-contact-info__location-link:hover {
    gap: 10px;
}

/* Working Hours */
.ntpl-contact-info__hours {
    display: flex;
    gap: 16px;
}

.ntpl-contact-info__hours-icon {
    font-size: 2rem;
}

.ntpl-contact-info__hours-content h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.ntpl-contact-info__hours-content ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ntpl-contact-info__hours-content li {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.ntpl-contact-info__hours-content li span:first-child {
    color: #666;
}

.ntpl-contact-info__hours-content li span:last-child {
    font-weight: 500;
    color: #1a1a2e;
}

/* Social Links Card */
.ntpl-contact-info__card--social {
    text-align: center;
}

.ntpl-contact-info__card--social h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.ntpl-contact-info__social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.ntpl-contact-info__social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 12px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ntpl-contact-info__social-link:hover {
    background: linear-gradient(135deg, #89F336, #00BF33);
    color: #fff;
    transform: translateY(-3px);
}

/* ============================================
   MAP SECTION
   ============================================ */
.ntpl-contact-map {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fdf5 0%, #fff 100%);
}

.ntpl-contact-map__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.ntpl-contact-map__header {
    text-align: center;
    margin-bottom: 40px;
}

.ntpl-contact-map__tag {
    display: inline-block;
    background: #FFF3C0;
    color: #b38600;
    padding: 6px 18px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.ntpl-contact-map__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.ntpl-contact-map__desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #666;
}

.ntpl-contact-map__tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.ntpl-contact-map__tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ntpl-contact-map__tab:hover {
    border-color: #89F336;
    color: #00BF33;
}

.ntpl-contact-map__tab.is-active {
    background: linear-gradient(135deg, #89F336, #00BF33);
    border-color: transparent;
    color: #fff;
}

.ntpl-contact-map__tab-icon {
    font-size: 1.1rem;
}

.ntpl-contact-map__wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.ntpl-contact-map__frame iframe {
    display: block;
    width: 100%;
    height: 450px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.ntpl-contact-faq {
    padding: 100px 0;
    background: #fff;
}

.ntpl-contact-faq__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 5%;
}

.ntpl-contact-faq__header {
    text-align: center;
    margin-bottom: 50px;
}

.ntpl-contact-faq__tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(137, 243, 54, 0.15), rgba(79, 224, 203, 0.15));
    color: #00BF33;
    padding: 6px 18px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.ntpl-contact-faq__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
}

.ntpl-contact-faq__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.ntpl-contact-faq__item {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.ntpl-contact-faq__item:hover {
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border-color: #e0e0e0;
}

.ntpl-contact-faq__question {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
}

.ntpl-contact-faq__icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.ntpl-contact-faq__question h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
}

.ntpl-contact-faq__answer {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
    padding-left: 38px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.ntpl-contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #89F336 0%, #00BF33 50%, #4FE0CB 100%);
    position: relative;
    overflow: hidden;
}

.ntpl-contact-cta__bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 3px 3px, rgba(255, 255, 255, 0.1) 2px, transparent 0);
    background-size: 30px 30px;
    pointer-events: none;
}

.ntpl-contact-cta__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.ntpl-contact-cta__content {
    text-align: center;
}

.ntpl-contact-cta__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.ntpl-contact-cta__desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.ntpl-contact-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ntpl-contact-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ntpl-contact-cta__btn--primary {
    background: #fff;
    color: #00BF33;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.ntpl-contact-cta__btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.ntpl-contact-cta__btn--primary svg {
    transition: transform 0.3s ease;
}

.ntpl-contact-cta__btn--primary:hover svg {
    transform: translateX(4px);
}

.ntpl-contact-cta__btn--secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.ntpl-contact-cta__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
    .ntpl-contact-main__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ntpl-contact-info {
        order: -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .ntpl-contact-info__card--main {
        grid-column: span 2;
    }

    .ntpl-contact-faq__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ntpl-contact-hero {
        padding: 120px 0 60px;
    }

    .ntpl-contact-hero__title {
        font-size: 2.3rem;
    }

    .ntpl-contact-hero__desc {
        font-size: 1rem;
    }

    .ntpl-contact-quick {
        margin-top: -30px;
        padding-bottom: 60px;
    }

    .ntpl-contact-quick__grid {
        grid-template-columns: 1fr;
    }

    .ntpl-contact-main {
        padding: 60px 0 80px;
    }

    .ntpl-contact-form {
        padding: 35px 25px;
    }

    .ntpl-contact-form__title {
        font-size: 1.8rem;
    }

    .ntpl-contact-form__row {
        grid-template-columns: 1fr;
    }

    .ntpl-contact-info {
        grid-template-columns: 1fr;
    }

    .ntpl-contact-info__card--main {
        grid-column: span 1;
    }

    .ntpl-contact-map,
    .ntpl-contact-faq {
        padding: 70px 0;
    }

    .ntpl-contact-map__title,
    .ntpl-contact-faq__title {
        font-size: 2rem;
    }

    .ntpl-contact-map__tabs {
        flex-direction: column;
        align-items: center;
    }

    .ntpl-contact-map__tab {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .ntpl-contact-map__frame iframe {
        height: 350px;
    }

    .ntpl-contact-cta__title {
        font-size: 2rem;
    }

    .ntpl-contact-cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    .ntpl-contact-cta__btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .ntpl-contact-hero__title {
        font-size: 1.9rem;
    }

    .ntpl-contact-hero__badge {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .ntpl-contact-quick__card {
        padding: 18px 20px;
    }

    .ntpl-contact-quick__icon {
        width: 48px;
        height: 48px;
    }

    .ntpl-contact-quick__value {
        font-size: 0.9rem;
    }

    .ntpl-contact-form {
        padding: 28px 20px;
    }

    .ntpl-contact-form__input,
    .ntpl-contact-form__select,
    .ntpl-contact-form__textarea {
        padding: 12px 14px;
    }

    .ntpl-contact-form__submit {
        padding: 16px 30px;
    }

    .ntpl-contact-info__card {
        padding: 24px;
    }

    .ntpl-contact-info__location {
        padding: 16px;
        flex-direction: column;
        text-align: center;
    }

    .ntpl-contact-info__location-icon {
        margin: 0 auto;
    }

    .ntpl-contact-faq__item {
        padding: 22px;
    }

    .ntpl-contact-faq__answer {
        padding-left: 0;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes ntpl-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ntpl-contact-hero__content {
    animation: ntpl-fadeInUp 0.8s ease-out;
}

.ntpl-contact-quick__card {
    animation: ntpl-fadeInUp 0.6s ease-out backwards;
}

.ntpl-contact-quick__card:nth-child(1) {
    animation-delay: 0.1s;
}

.ntpl-contact-quick__card:nth-child(2) {
    animation-delay: 0.2s;
}

.ntpl-contact-quick__card:nth-child(3) {
    animation-delay: 0.3s;
}

.ntpl-contact-faq__item {
    animation: ntpl-fadeInUp 0.6s ease-out backwards;
}

.ntpl-contact-faq__item:nth-child(1) {
    animation-delay: 0.1s;
}

.ntpl-contact-faq__item:nth-child(2) {
    animation-delay: 0.15s;
}

.ntpl-contact-faq__item:nth-child(3) {
    animation-delay: 0.2s;
}

.ntpl-contact-faq__item:nth-child(4) {
    animation-delay: 0.25s;
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}