/* ==========================================================
   CONTACT HERO
========================================================== */
html,
body{
    overflow-x:hidden;
    max-width:100%;
}

.contact-hero{

    position:relative;

    min-height:640px;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:
    radial-gradient(circle at top left,
    rgba(196,155,58,.15),
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(196,155,58,.08),
    transparent 40%),

    linear-gradient(
        135deg,
        #090909 0%,
        #141414 50%,
        #1f1f1f 100%
    );

}

/* ==========================================================
   GRID OVERLAY
========================================================== */

.contact-overlay{

    position:absolute;

    inset:0;

    background-image:

    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),

    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);

    background-size:70px 70px;

    mask-image:linear-gradient(to bottom,
    rgba(0,0,0,.85),
    transparent);

    pointer-events:none;

}

/* ==========================================================
   GLOW EFFECTS
========================================================== */

.contact-hero::before{

    content:"";

    position:absolute;

    width:480px;

    height:480px;

    border-radius:50%;

    background:rgba(196,155,58,.10);

    filter:blur(110px);

    top:-160px;

    right:-120px;

    animation:contactGlow 10s ease-in-out infinite;

}

.contact-hero::after{

    content:"";

    position:absolute;

    width:340px;

    height:340px;

    border-radius:50%;

    background:rgba(196,155,58,.07);

    filter:blur(90px);

    bottom:-120px;

    left:-100px;

    animation:contactGlow 12s ease-in-out infinite reverse;

}

/* ==========================================================
   CONTENT
========================================================== */

.contact-hero .container{

    position:relative;

    z-index:5;

}

.contact-hero-content{

    max-width:760px;

}

.contact-hero-content small{

    display:inline-block;

    color:var(--accent);

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:22px;

}

.contact-hero-content h1{

    color:#ffffff;

    font-size:64px;

    line-height:1.1;

    margin-bottom:28px;

}

.contact-hero-content p{

    color:rgba(255,255,255,.82);

    font-size:18px;

    line-height:1.9;

    max-width:650px;

    margin-bottom:40px;

}

/* ==========================================================
   BUTTONS
========================================================== */

.contact-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:50px;

}

.contact-buttons .btn{

    min-width:200px;

}

.contact-hero .btn-outline{

    color:#ffffff;

    border:2px solid rgba(255,255,255,.7);

    background:transparent;

}

.contact-hero .btn-outline:hover{

    background:#ffffff;

    color:#111111;

    border-color:#ffffff;

}

/* ==========================================================
   HIGHLIGHTS
========================================================== */

.contact-highlights{

    display:flex;

    flex-wrap:wrap;

    gap:30px;

}

.highlight{

    display:flex;

    align-items:center;

    gap:12px;

    color:#ffffff;

    font-size:15px;

}

.highlight i{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(196,155,58,.15);

    color:var(--accent);

    font-size:18px;

    transition:.35s;

}

.highlight:hover i{

    background:var(--accent);

    color:#111111;

    transform:translateY(-4px);

}

/* ==========================================================
   GLOW ANIMATION
========================================================== */

@keyframes contactGlow{

    0%{

        transform:translateY(0) scale(1);

    }

    50%{

        transform:translateY(25px) scale(1.12);

    }

    100%{

        transform:translateY(0) scale(1);

    }

}

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

@media(max-width:992px){

    .contact-hero-content h1{

        font-size:54px;

    }

}

@media(max-width:768px){

    .contact-hero{

        min-height:560px;

        padding:120px 0 80px;

    }

    .contact-hero-content{

        text-align:center;

    }

    .contact-hero-content h1{

        font-size:40px;

    }

    .contact-hero-content p{

        font-size:16px;

    }

    .contact-buttons{

        flex-direction:column;

        margin-bottom:40px;

    }

    .contact-buttons .btn{

        width:100%;

    }

    .contact-highlights{

        justify-content:center;

        gap:20px;

    }

    .highlight{

        width:100%;

        justify-content:center;

    }

}

@media(max-width:480px){

    .contact-hero-content h1{

        font-size:34px;

    }

    .highlight{

        font-size:14px;

    }

    .highlight i{

        width:42px;

        height:42px;

    }

}


/* ==========================================================
   CONTACT FORM SECTION
========================================================== */

.contact-form-section{

    padding:100px 0;

    background:#ffffff;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:1.25fr .75fr;

    gap:70px;

    align-items:start;

}

/* ==========================================================
   LEFT
========================================================== */

.contact-left small{

    display:inline-block;

    margin-bottom:18px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.contact-left h2{

    margin-bottom:20px;

}

.contact-left>p{

    max-width:650px;

    margin-bottom:40px;

    line-height:1.8;

}

/* ==========================================================
   FORM
========================================================== */

.contact-form{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.form-row{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:18px 22px;

    border:1px solid var(--border);

    border-radius:14px;

    background:#fafafa;

    font-size:15px;

    transition:.35s;

}

.contact-form textarea{

    resize:none;

    min-height:190px;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:var(--accent);

    background:#ffffff;

    box-shadow:0 0 0 4px rgba(196,155,58,.12);

}

.contact-form button{

    width:220px;

}

/* ==========================================================
   RIGHT PANEL
========================================================== */

.contact-right{

    position:sticky;

    top:120px;

    background:#111111;

    color:#ffffff;

    padding:45px;

    border-radius:24px;

    overflow:hidden;

}

.contact-right::before{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    border-radius:50%;

    background:rgba(196,155,58,.10);

    top:-120px;

    right:-80px;

    filter:blur(45px);

}

.contact-right>*{

    position:relative;

    z-index:2;

}

.contact-right h3{

    color:#ffffff;

    margin-bottom:18px;

}

.contact-right>p{

    color:rgba(255,255,255,.75);

    margin-bottom:35px;

    line-height:1.8;

}

/* ==========================================================
   SUPPORT STEPS
========================================================== */

.support-steps{

    display:flex;

    flex-direction:column;

    gap:16px;

    margin-bottom:40px;

}

.support-step{

    display:flex;

    align-items:center;

    gap:18px;

    padding:18px;

    border-radius:14px;

    background:rgba(255,255,255,.05);

    transition:.35s;

}

.support-step:hover{

    transform:translateX(8px);

    background:rgba(196,155,58,.12);

}

.support-step strong{

    width:46px;

    height:46px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--accent);

    color:#111111;

    font-size:15px;

    font-weight:700;

    flex-shrink:0;

}

.support-step span{

    color:#ffffff;

    font-weight:600;

}

/* ==========================================================
   RESPONSE TIME
========================================================== */

.response-time{

    border-top:1px solid rgba(255,255,255,.10);

    padding-top:30px;

}

.response-time h4{

    color:rgba(255,255,255,.70);

    margin-bottom:10px;

}

.response-time h2{

    color:var(--accent);

    font-size:52px;

    margin-bottom:12px;

}

.response-time p{

    color:rgba(255,255,255,.70);

}

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

@media(max-width:992px){

    .contact-wrapper{

        grid-template-columns:1fr;

        gap:50px;

    }

    .contact-right{

        position:static;

    }

}

@media(max-width:768px){

    .contact-form-section{

        padding:70px 0;

    }

    .form-row{

        grid-template-columns:1fr;

    }

    .contact-right{

        padding:30px;

    }

    .contact-form button{

        width:100%;

    }

    .response-time h2{

        font-size:40px;

    }

}

@media(max-width:480px){

    .contact-left h2{

        font-size:30px;

    }

    .contact-right{

        padding:25px;

    }

    .support-step{

        padding:15px;

    }

    .support-step strong{

        width:40px;

        height:40px;

        font-size:14px;

    }

}



/* ==========================================================
   SUPPORT PROCESS
========================================================== */

.support-process{

    padding:100px 0;

    background:var(--surface);

}

/* ==========================================================
   PROCESS LINE
========================================================== */

.process-line{

    display:flex;

    align-items:flex-start;

    justify-content:space-between;

    gap:20px;

    margin-top:70px;

}

/* ==========================================================
   STEP
========================================================== */

.process-step{

    flex:1;

    text-align:center;

}

.process-step h3{

    font-size:22px;

    color:var(--primary);

    margin:25px 0 15px;

}

.process-step p{

    max-width:220px;

    margin:0 auto;

    color:var(--text-secondary);

    line-height:1.8;

}

/* ==========================================================
   CIRCLE
========================================================== */

.process-circle{

    width:90px;

    height:90px;

    margin:0 auto;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#ffffff;

    border:3px solid var(--accent);

    color:var(--accent);

    font-size:30px;

    font-weight:700;

    box-shadow:var(--shadow-md);

    transition:var(--transition);

}

.process-step:hover .process-circle{

    background:var(--accent);

    color:#111111;

    transform:translateY(-10px) scale(1.05);

}

/* ==========================================================
   DIVIDER
========================================================== */

.process-divider{

    flex:0 0 90px;

    height:4px;

    margin-top:45px;

    border-radius:50px;

    background:linear-gradient(
        to right,
        var(--accent),
        rgba(196,155,58,.25)
    );

}

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

@media(max-width:992px){

    .process-line{

        flex-wrap:wrap;

        justify-content:center;

        gap:40px;

    }

    .process-divider{

        display:none;

    }

    .process-step{

        flex:0 0 calc(50% - 20px);

    }

}

@media(max-width:768px){

    .support-process{

        padding:70px 0;

    }

    .process-line{

        flex-direction:column;

        align-items:center;

        gap:30px;

    }

    .process-step{

        width:100%;

        max-width:360px;

    }

    .process-circle{

        width:80px;

        height:80px;

        font-size:26px;

    }

    .process-step h3{

        font-size:20px;

    }

    .process-step p{

        max-width:100%;

    }

}


/* ==========================================================
   CONTACT FAQ
========================================================== */

.contact-faq{

    padding:100px 0;

    background:#ffffff;

}

.contact-faq-wrapper{

    max-width:900px;

    margin:60px auto 0;

}

/* ==========================================================
   FAQ ITEM
========================================================== */

.contact-faq .faq-item{

    background:#ffffff;

    border:1px solid var(--border);

    border-radius:18px;

    margin-bottom:18px;

    overflow:hidden;

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

}

.contact-faq .faq-item:hover{

    border-color:var(--accent);

    box-shadow:var(--shadow-md);

}

/* ==========================================================
   QUESTION
========================================================== */

.contact-faq .faq-question{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    padding:24px 30px;

    background:#ffffff;

    border:none;

    cursor:pointer;

    text-align:left;

}

.contact-faq .faq-question span{

    font-size:18px;

    font-weight:600;

    color:var(--primary);

    line-height:1.5;

}

.contact-faq .faq-question i{

    width:42px;

    height:42px;

    flex-shrink:0;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(196,155,58,.12);

    color:var(--accent);

    transition:var(--transition);

}

/* ==========================================================
   ANSWER
========================================================== */

.contact-faq .faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

}

.contact-faq .faq-answer p{

    padding:0 30px 25px;

    color:var(--text-secondary);

    line-height:1.8;

}

/* ==========================================================
   ACTIVE
========================================================== */

.contact-faq .faq-item.active{

    border-color:var(--accent);

}

.contact-faq .faq-item.active .faq-question i{

    background:var(--accent);

    color:#111111;

    transform:rotate(45deg);

}

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

@media(max-width:768px){

    .contact-faq{

        padding:70px 0;

    }

    .contact-faq-wrapper{

        margin-top:45px;

    }

    .contact-faq .faq-question{

        padding:20px;

    }

    .contact-faq .faq-question span{

        font-size:16px;

    }

    .contact-faq .faq-question i{

        width:36px;

        height:36px;

        font-size:14px;

    }

    .contact-faq .faq-answer p{

        padding:0 20px 20px;

        font-size:15px;

    }

}


/* ==========================================================
   CONTACT INFORMATION
========================================================== */

.contact-info{

    padding:100px 0;

    background:var(--surface);

}

/* ==========================================================
   GRID
========================================================== */

.contact-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;

}

/* ==========================================================
   CARD
========================================================== */

.contact-card{

    position:relative;

    background:#ffffff;

    border:1px solid var(--border);

    border-radius:22px;

    padding:40px 30px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    overflow:hidden;

}

.contact-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:var(--accent);

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.contact-card:hover{

    transform:translateY(-12px);

    border-color:var(--accent);

    box-shadow:var(--shadow-lg);

}

.contact-card:hover::before{

    transform:scaleX(1);

}

/* ==========================================================
   ICON
========================================================== */

.contact-icon{

    width:82px;

    height:82px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(196,155,58,.12);

    transition:.35s;

}

.contact-icon i{

    font-size:32px;

    color:var(--accent);

    transition:.35s;

}

.contact-card:hover .contact-icon{

    background:var(--accent);

    transform:rotate(8deg);

}

.contact-card:hover .contact-icon i{

    color:#111111;

}

/* ==========================================================
   TEXT
========================================================== */

.contact-card h3{

    font-size:24px;

    margin-bottom:15px;

    color:var(--primary);

}

.contact-card p{

    color:var(--text-secondary);

    line-height:1.8;

    margin-bottom:25px;

    min-height:90px;

}

.contact-card span{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:12px 20px;

    border-radius:999px;

    background:rgba(196,155,58,.10);

    color:var(--accent);

    font-weight:700;

    font-size:14px;

    word-break:break-word;

}

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

@media(max-width:1200px){

    .contact-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .contact-info{

        padding:70px 0;

    }

    .contact-grid{

        grid-template-columns:1fr;

        gap:25px;

        margin-top:45px;

    }

    .contact-card{

        padding:30px 25px;

    }

    .contact-card p{

        min-height:auto;

    }

    .contact-icon{

        width:72px;

        height:72px;

    }

    .contact-icon i{

        font-size:28px;

    }

}

@media(max-width:480px){

    .contact-card{

        padding:25px 20px;

    }

    .contact-card h3{

        font-size:22px;

    }

    .contact-card span{

        width:100%;

    }

}


/* ==========================================================
   FINAL CONTACT CTA
========================================================== */

.contact-cta{

    padding:100px 0;

    background:linear-gradient(
        135deg,
        #111111 0%,
        #1c1c1c 50%,
        #111111 100%
    );

    position:relative;

    overflow:hidden;

}

.contact-cta::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(196,155,58,.08);

    top:-180px;

    left:-120px;

    filter:blur(20px);

}

.contact-cta::after{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(196,155,58,.06);

    bottom:-140px;

    right:-100px;

    filter:blur(20px);

}

/* ==========================================================
   CONTENT
========================================================== */

.contact-cta-content{

    position:relative;

    z-index:2;

    max-width:850px;

    margin:auto;

    text-align:center;

}

.contact-cta-content small{

    display:inline-block;

    margin-bottom:18px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.contact-cta-content h2{

    color:#ffffff;

    margin-bottom:25px;

    font-size:52px;

    line-height:1.2;

}

.contact-cta-content p{

    max-width:700px;

    margin:0 auto 45px;

    color:rgba(255,255,255,.78);

    font-size:18px;

    line-height:1.9;

}

/* ==========================================================
   BUTTONS
========================================================== */

.contact-cta-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}

.contact-cta-buttons .btn{

    min-width:220px;

}

.contact-cta-buttons .btn-outline{

    border:1px solid rgba(255,255,255,.25);

    color:#ffffff;

    background:transparent;

}

.contact-cta-buttons .btn-outline:hover{

    background:#ffffff;

    color:#111111;

    border-color:#ffffff;

}

.contact-cta-buttons .btn-accent:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 45px rgba(196,155,58,.35);

}

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

@media(max-width:768px){

    .contact-cta{

        padding:70px 0;

    }

    .contact-cta-content h2{

        font-size:36px;

    }

    .contact-cta-content p{

        font-size:16px;

        margin-bottom:35px;

    }

    .contact-cta-buttons{

        flex-direction:column;

    }

    .contact-cta-buttons .btn{

        width:100%;

    }

}

@media(max-width:480px){

    .contact-cta-content h2{

        font-size:30px;

    }

}


/* Prevent iPhone Safari from zooming on form fields */
input,
textarea,
select,
button {
    font-size: 16px;
}