/* --- VARIABLES --- */
:root {
    --gold: #C9A24A;
    --dark: #1a1a1a;
    --white: #ffffff;
    --soft-bg: #f4f4f4;
    --gold-hover: #b8933a;
}

/* --- RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }

/* --- HEADER --- */
header {
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 8%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 75px; transition: 0.3s; }
.logo-text h1 { color: #000; font-size: 24px; line-height: 1; letter-spacing: 1px; }
.logo-text p { color: var(--gold); font-size: 11px; text-transform: uppercase; font-weight: 600; }

nav a {
    color: #444;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s;
}
nav a:hover { color: var(--gold); }

/* --- HERO SECTION --- */
.hero {
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    background-size: cover;
    background-position: center;
    animation: slider 20s infinite; 
}

.hero-box { max-width: 800px; }
.hero h2 { font-size: 45px; margin-bottom: 10px; text-transform: uppercase; }

.cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--gold);
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    margin-top: 25px;
    transition: 0.3s;
}
.cta-btn:hover { background-color: var(--gold-hover); transform: translateY(-3px); }

/* --- SERVICES & CARDS --- */
section { padding: 90px 8%; }
.sec-title { text-align: center; font-size: 32px; margin-bottom: 60px; position: relative; }
.sec-title::after { content: ''; width: 50px; height: 3px; background: var(--gold); position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.card {
    background: white;
    padding: 40px 25px;
    border-radius: 10px;
    text-align: center;
    transition: 0.4s;
    border: 1px solid #eee;
}
.card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); border-color: var(--gold); }
/* --- CONTACT SECTION (Professional Box) --- */
#contact {
    padding: 80px 8%;
    background-color: #fdfdfd; /* Light background */
}

.contact-wrap {
    max-width: 500px; /* Isse box ki chaurai kam ho jayegi */
    margin: 0 auto;   /* Isse box center mein rahega */
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Sundar shadow */
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Phone Number Prefix Styling */
.phone-box {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.phone-box span {
    padding: 12px 15px;
    background: #f0f0f0;
    font-weight: 600;
    color: #555;
    border-right: 1px solid #ddd;
}

.contact-form input, 
.contact-form textarea,
.phone-box input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-size: 15px;
}

/* Phone input ke liye border hatana kyunki wo container mein hai */
.phone-box input { border: none; }

.contact-form button {
    background: #1a1a1a;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #c9a24a; /* Hover karne par gold color */
}

/* --- WHATSAPP FLOATING BUTTON (HIGH PRIORITY) --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 10000; /* Isse ye sabse upar dikhega */
    transition: 0.4s;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}
/* --- GALLERY / PORTFOLIO (2 Columns Fix) --- */
.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Isse 2 images ek saath dikhengi */
    gap: 25px;
    margin: 40px 0;
    width: 100%;
}

.gallery img {
    width: 100%;
    height: 400px;
    object-fit: cover; /* Images ko barabar size mein dikhane ke liye */
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.gallery img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* Mobile par ek ke niche ek dikhega */
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: 1fr;
    }
}
/* --- SLIDER ANIMATION --- */
@keyframes slider {
    0%, 15% { background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("https://images.unsplash.com/photo-1622372738946-62e02505feb3?q=80&w=1664"); }
    20%, 35% { background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("https://images.unsplash.com/photo-1502005229762-cf1b2da7c5d6?q=80&w=1887"); }
    40%, 55% { background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("https://images.unsplash.com/photo-1599696848652-f0ff23bc911f?q=80&w=1887"); }
    60%, 75% { background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("https://images.unsplash.com/photo-1634822930432-0594057fdff2?q=80&w=1887"); }
    80%, 100% { background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("https://images.unsplash.com/photo-1772567732941-3014d6360c76?q=80&w=1887"); }
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate { animation: fadeInUp 1s ease forwards; }
.delay-1 { animation-delay: 0.3s; opacity: 0; }
.delay-2 { animation-delay: 0.6s; opacity: 0; }
/* WhatsApp Button Styling */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 9999; /* Isse ye hamesha upar dikhega */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}