/* ---------------- Reset & Base ---------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden; /* Mobile horizontal scroll rokne ke liye */
}


/* ---------------- Header (FIXED) ---------------- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    background: #000;
    border-bottom: 1px solid #222;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #888;
    font-size: 16px; 
    transition: 0.3s;
}

nav a:hover, nav a.active {
    color: #c1914b;
    font-size: 16px; 
    font-weight: normal; 
}

/* ---------------- Buttons ---------------- */
.btn{
    background:#c1914b;
    padding:10px 15px;
    text-decoration:none;
    color:white;
    border-radius:12px;
    transition:0.3s ease;
    display:inline-block;
    font-size:16px;
    min-width:150px;
    text-align:center;
}

.btn:hover{
    background:#ff9500;
    box-shadow:0 0 15px rgba(255,122,0,0.6);
    transform:translateY(-3px);
}

/* ---------------- Top Banner (FIXED) ---------------- */
.contacttop-banner {
    width: 100%;
    background: #000;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    position: fixed; 
    top: 81px;
    z-index: 999;
}

.contacttop-banner span {
    display: inline-block;
    white-space: nowrap;
    position: absolute;
    left: 100%; 
    animation: scrollText 12s linear infinite;
}

@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-150vw); }
}

/* ---------------- CONTACT HERO (RESPONSIVE CONFIG) ---------------- */
.contacthero{
    display: flex;
    justify-content: space-between;
    align-items: center; /* Laptop par center alignment */
    padding: 50px 80px;
    margin-top: 121px; 
    min-height: calc(100vh - 121px);
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url("image/ContactBackground.jpeg") center/cover;
    gap: 50px;
    flex-wrap: wrap; /* Content niche girne ke liye zaroori hai */
}

.contacthero-text{
    flex: 1;
    min-width: 300px;
    max-width: 45%;
}

.contacthero-text h1{
    font-size: 48px;
    margin-bottom: 20px;
}

.contacthero-text span{
    color: #c1914b;
    font-style: italic;
}

.contacthero-text p {
    color: #aaa;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
    font-weight: bold;
}

/* ---------------- Contact Form ---------------- */
.contacthero-form{
    flex: 1;
    min-width: 300px;
    max-width: 45%;
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px); /* Glass effect */
}

.contacthero-form h2{
    color: #c1914b;
    margin-bottom: 20px;
    font-size: 24px;
}

.contacthero-form input,
.contacthero-form textarea{
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #333;
    outline: none;
    font-size: 16px;
    background: #1a1a1a;
    color: #fff;
}

.contacthero-form button{
    width: 100%;
    background: #c1914b;
    color: white;
    padding: 12px;
    font-size: 16px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

/* ---------------- Logo ---------------- */
.logo{
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img{
    height: 40px;
    width: auto;
}

.logo span{
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ---------------- Footer ---------------- */
footer {
    padding: 30px 80px;
    background: #000;
    border-top: 1px solid #222;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links { display: flex; gap: 25px; }
.social-item {
    color: #888;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ---------------- MOBILE RESPONSIVE (PHONE VIEW) ---------------- */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        flex-direction: column; /* Logo upar Nav niche */
        height: auto;
    }

    nav {
        margin-top: 15px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    nav a { margin: 0 5px; font-size: 14px; }

    .contacttop-banner {
        top: 105px; /* Mobile header bada hota hai isliye gap badhaya */
        font-size: 16px;
    }

    .contacthero {
        margin-top: 145px;
        padding: 40px 20px;
        flex-direction: column; /* Text upar Form niche */
        text-align: center;
    }

    .contacthero-text, .contacthero-form {
        max-width: 100%;
        min-width: 100%;
    }

    .contacthero-text h1 { font-size: 32px; }

    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}