/* --- UNIVERSAL SETTINGS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: #050505;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Golden Text Effect */
.gold-text {
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
}

/* --- NAVBAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    letter-spacing: 2px;
}
.logo span { color: #fff; }

.nav-links li { display: inline-block; margin: 0 20px; }
.nav-links a { text-decoration: none; color: #fff; font-size: 16px; transition: 0.3s; }
.nav-links a:hover { color: #d4af37; text-shadow: 0 0 10px #d4af37; }

.book-btn {
    padding: 10px 25px;
    background: linear-gradient(45deg, #d4af37, #aa771c);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    display: inline-block;
}
.book-btn:hover { transform: scale(1.1); box-shadow: 0 0 25px rgba(212, 175, 55, 0.8); }

/* --- HERO SECTION --- */
/* Note: Background image ab HTML file me set hai, yahan height aur layout hai */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content { animation: fadeInUp 1.5s ease-out; }

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero p { font-size: 22px; margin-bottom: 30px; color: #ddd; }

.owner-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid #d4af37;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 14px;
    backdrop-filter: blur(5px);
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.outline-btn {
    padding: 10px 30px;
    border: 2px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: 0.3s;
    display: inline-block;
}
.outline-btn:hover { background: #d4af37; color: #000; }

/* --- SERVICES --- */
.services { padding: 80px 5%; background: #0a0a0a; }

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 45px;
    margin-bottom: 60px;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

/* Card Design */
.card {
    width: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s;
    position: relative;
}
.card:hover {
    transform: translateY(-15px);
    border-color: #d4af37;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.img-box {
    height: 220px;
    width: 100%;
    overflow: hidden;
}
.card-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.card:hover .card-img { transform: scale(1.1); }

.info {
    padding: 20px;
    text-align: center;
    background: #111;
}
.info h3 { font-size: 22px; margin-bottom: 5px; font-family: 'Playfair Display', serif; }
.price { font-size: 24px; color: #d4af37; font-weight: bold; margin-top: 10px; display: block; }

/* Special Card */
.special-card { border: 2px solid #d4af37; box-shadow: 0 0 20px rgba(212, 175, 55, 0.2); }
.special-card .info { background: linear-gradient(45deg, #111, #2a2205); }

/* --- FOOTER --- */
footer {
    background: #000;
    padding: 50px 20px;
    text-align: center;
    border-top: 1px solid #333;
}

.contact-box {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.dev-credit { color: #666; font-size: 14px; }
.dev-credit span { color: #d4af37; }

.developer-tag a {
    color: #d4af37;
    text-decoration: none;
    border: 1px solid #d4af37;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin-top: 10px;
}

/* --- FLOATING WHATSAPP BUTTON --- */
.float-wa {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px #000;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 2px solid #fff;
    transition: 0.3s;
}
.float-wa:hover { transform: scale(1.1); background-color: #128C7E; }

/* Animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 768px) {
    .navbar { flex-direction: column; }
    .nav-links { margin: 20px 0; }
    .hero h1 { font-size: 40px; }
    .float-wa { width: 50px; height: 50px; bottom: 20px; right: 20px; font-size: 25px; }
}
