

body {
    margin: 0;
    padding: 0;
}

.contact-page{
    position: relative;
    min-height: 100vh;
    height: auto;
    overflow: hidden;
    z-index: 1;
    scroll-snap-align: start;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-bg {
 position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.contact-container{
    display:flex;
    justify-content:flex-start;
    gap:100px;
    padding:170px 120px 20px 140px;
    
    transform: translateX(150px);
    flex:1;
}

/* Left */
.contact-left {
    width: 38%;
     margin-top: -30px;

      opacity: 0;
    transform: translateX(-80px);
}

.contact-page.in-view .contact-left {
    animation: contactLeftReveal 1.2s ease forwards;
    animation-delay: 0.7s;
}

.tag {
    color: #ff7a1a;
    font-size: 16px;
    letter-spacing: 2px;
}

.contact-left h1 {
    font-size: 52px;
    font-weight: 100;
    line-height: 1.1;
    margin-top: 20px;
    color: #e5dcd3;
}

.contact-left h1 span {
    color: #ff7a1a;
}

.contact-left .line {
    width: 110px;
    height: 2px;
    margin: 30px 0;

    background: linear-gradient(
        to right,
        #ff7a1a,
        transparent
    );
}

.contact-left > p {
    font-size: 18px;
    line-height: 1.7;
    margin-top: -25px;
    color: rgba(229,220,211,0.8);
}

.info-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
    color: rgba(255,255,255,0.72);
}

.info-item h4 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 400;
}

/* Contact Info */
.contact-info {
    margin-top: 20px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.info-item div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.icon {
    position:relative;
    width:55px;
    height:55px;
    min-width:55px;
    min-height:55px;
    flex-shrink:0;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #f0d7c2;
    font-size: 22px;

    /* Same as social-icons */
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        inset 0 1px 2px rgba(255,255,255,0.12),
        inset 0 -2px 6px rgba(255,255,255,0.03),
        0 10px 25px rgba(0,0,0,0.18);

    overflow: hidden;
    transition: .35s ease;
}

.icon svg {
    width: 28px;   /* icon size */
    height: 28px;
    fill: #e06f0c; /* normal color */
    transition: .35s ease;
    position: relative;
    z-index: 2;
}

.icon::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 12px;

    width: 28px;
    height: 10px;

    background: rgba(255,255,255,0.45);
    border-radius: 50px;

    filter: blur(8px);
}

.icon::after {
    content: "";
    position: absolute;
    bottom: 8px;
    right: 8px;

    width: 18px;
    height: 18px;

    background: rgba(255,140,40,0.16);
    border-radius: 50%;

    filter: blur(10px);
}

.icon:hover {
    color: #ffffff;

    border-color: rgba(255,140,40,0.45);

    box-shadow:
        0 0 18px rgba(255,140,40,0.2),
        inset 0 1px 3px rgba(255,255,255,0.08);

    transform: translateY(-2px);
}

.icon:hover svg {
    fill: #ffffff;
    transform: scale(1.1);
}


/* Form */
.contact-form-box {
    width: 550px;
    padding: 22px;
    border-radius: 28px;
    height: fit-content;
    position: relative;
    top: -40px;   /* moves upward */
     /* Main transparent glass */
     background: rgba(255,255,255,0.02);

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    border: 1px solid rgba(255,255,255,0.05);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.16);

    overflow: hidden;

      opacity: 0;
    transform: translateX(100px);
}

.contact-page.in-view .contact-form-box {
    animation: formReveal 1.4s ease forwards;
    animation-delay: 1s;
}

.contact-form-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    pointer-events: none;

    background:
        radial-gradient(circle at top left,
            rgba(255,160,80,0.18),
            transparent 18%),

        radial-gradient(circle at top right,
            rgba(255,160,80,0.18),
            transparent 18%),

        radial-gradient(circle at bottom left,
            rgba(255,160,80,0.18),
            transparent 18%),

        radial-gradient(circle at bottom right,
            rgba(255,160,80,0.18),
            transparent 18%);
}

.contact-form-box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    pointer-events: none;

    box-shadow:
        inset 2px 2px 6px rgba(255,180,100,0.08),
        inset -2px 2px 6px rgba(255,180,100,0.08),
        inset 2px -2px 6px rgba(255,180,100,0.08),
        inset -2px -2px 6px rgba(255,180,100,0.08);
}


.contact-form-box h2 {
    font-size: 42px;
    font-weight: 200;
    color: #fff;
}

.contact-form-box p {
    margin: 15px 0 30px;
    color: rgba(255,255,255,0.75);
}

.input-row {
    display: flex;
    gap: 20px;
}

input,
textarea {
    width: 100%;
    padding: 18px;
    margin-bottom: 18px;

    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);

    background: rgba(255,255,255,0.02);
    color: rgba(255,140,40,0.55);
}

input:focus,
textarea:focus {
    outline: none;
    border: 1px solid rgba(255,140,40,0.55);
    box-shadow: 0 0 10px rgba(255,140,40,0.12);
}

textarea {
    height: 170px;
    resize: none;
}


.contact-form-box button { 
    width: 100%;
    padding: 20px;
    border-radius: 40px;
    border: 1px solid #ff7a1a;

     background: rgba(255,140,40,0.08);

    color: white;

    box-shadow:
        0 0 12px rgba(255,140,40,0.14),
        inset 0 0 8px rgba(255,255,255,0.04);

    transition: all 0.35s ease;
}
.contact-page button:hover {
    border-color: rgba(255,140,40,0.55);

    box-shadow:
        0 0 20px rgba(255,140,40,0.22),
        0 0 35px rgba(255,140,40,0.08);

    transform: translateY(-2px);
}



.contact-page.in-view .bottom-strip {
    animation: stripReveal 1.3s ease forwards;
    animation-delay: 1.5s;
}



@keyframes contactLeftReveal {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes formReveal {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* .site-footer{
    width:100%;
    margin-top:0px;
    padding:0px 60px;
    background: transparent;
    position: relative;
    z-index: 10;
} */
.site-footer{
    width:100%;
    margin-top:0;
    padding:8px 30px 12px;
    position: relative;
    z-index: 10;
    background: transparent;
}


.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(20,10,5,0.18);
    backdrop-filter: blur(35px);

    z-index: -1;
}

.footer-line{
    width: 80%;
    height: 1px;
    margin: 0 auto 12px;
    background: rgba(255,255,255,0.08);
}

.social-icons{
    display:flex;
    justify-content:center;
    gap:14px;
    margin-bottom:8px;
}
.social-icons a {
    position: relative;
    width:50px;
    height:50px;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;
    color:#f0d7c2;

    background:rgba(255,255,255,0.03);
    backdrop-filter:blur(22px) saturate(180%);
    -webkit-backdrop-filter:blur(22px) saturate(180%);

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:
        inset 0 1px 2px rgba(255,255,255,0.12),
        inset 0 -2px 6px rgba(255,255,255,0.03),
        0 10px 25px rgba(0,0,0,0.18);

    overflow:hidden;
    transition:.35s ease;
}



.social-icons a::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 12px;

    width: 28px;
    height: 10px;

    background: rgba(255,255,255,0.45);
    border-radius: 50px;

    filter: blur(8px);
}

.social-icons a::after {
    content: "";
    position: absolute;
    bottom: 8px;
    right: 8px;

    width: 18px;
    height: 18px;

    background: rgba(255,140,40,0.16);
    border-radius: 50%;

    filter: blur(10px);
}

.social-icons a:hover {
    color: #ff8a2a;

    border-color: rgba(255,140,40,0.45);

    box-shadow:
        0 0 18px rgba(255,140,40,0.2),
        inset 0 1px 3px rgba(255,255,255,0.08);

    transform: translateY(-2px);
}

.social-icons a svg{
    width:18px;
    height:18px;
    fill:#ffe4cf;
    transition:.35s ease;

}

.social-icons a:hover svg{
    fill:#ff8a2a;
    transform:scale(1.08);
}


.site-footer p{
    margin-top:9px;
    margin-bottom:0;
     text-align: center;
    font-size:9px;
    letter-spacing:2px;
    color: rgba(255,255,255,0.65);
}

.site-footer span {
    color: #ff8a2a;
}



