

:root {
    /* Primary Colors */
    --primary-black: #111111;
    --accent-gold: #c5a059;
    --text-white: #ffffff;
    --bg-light: #fcfcfc;
    
    /* Navigation Colors */
    --nav-bg: rgba(255, 255, 255, 0.95);
    --nav-text-color: #000000;
    --nav-hover-color: #FFD700;
    --nav-backdrop: blur(10px);
--hamburger-color: #000000;




    
    /* Page Header Colors */
   --page-header-bg: #f8f9fa;
    --page-header-title-color: #000000;
    --breadcrumb-color: #888888;
    --breadcrumb-link-color: #000000;
    --breadcrumb-hover-color: #FFD700;

    





    /* Contact Section Colors */
    --contact-section-bg: #ffffff;
    --contact-info-title-color: #000000;
    --contact-info-text-color: #666666;
    --info-icon-bg: #f8f9fa;
    --info-icon-color: #FFD700;
    --info-content-title-color: #000000;
    --info-content-text-color: #666666;




    
    /* Contact Form Colors */
   --contact-form-bg: #f8f9fa;
    --form-label-color: #666666;
    --form-input-border: #dddddd;
    --form-input-bg: #ffffff;
    --form-input-focus-border: #FFD700;
    --submit-btn-bg: #FFD700;
    --submit-btn-text: #ffffff;
    --submit-btn-hover-bg: #b08d48;


    
 
    
    /* Footer Colors */
    --footer-bg: #000000;
    --footer-text-color: #ffffff;
    --footer-brand-title-color: #FFD700;
    --footer-brand-text-color: #888888;
    --footer-social-border: #333333;
    --footer-social-hover-bg: #FFD700;
    --footer-social-hover-border: #FFD700;
    --footer-links-title-color: #ffffff;
    --footer-links-color: #888888;
    --footer-links-hover-color: #FFD700;
    --footer-contact-text-color: #888888;
    --footer-contact-icon-color: #000000;
    --footer-bottom-bg: #0a0a0a;
    --footer-bottom-text-color: #666666;
    --footer-bottom-border: #222222;



    
    /* Animation */
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--text-white);
    color: var(--primary-black);
    overflow-x: hidden;
}

/* --- Navigation --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: var(--nav-bg);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2000;
    backdrop-filter: var(--nav-backdrop);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--nav-text-color);
    z-index: 2100;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li { margin-left: 30px; }

.nav-links a {
    text-decoration: none;
    color: var(--nav-text-color);
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 2px;
    transition: 0.3s;
}

.nav-links a:hover { 
    color: var(--nav-hover-color); 
}

/* Hamburger Styles */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 2100;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--hamburger-color);
    transition: 0.3s;
}

/* --- Page Header --- */
.page-header {
    padding: 150px 8% 80px;
    background: var(--page-header-bg);
    text-align: center;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 20px;
    color: var(--page-header-title-color);
}

.breadcrumb {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--breadcrumb-color);
}

.breadcrumb a {
    color: var(--breadcrumb-link-color);
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb a:hover { color: var(--breadcrumb-hover-color); }

.breadcrumb span { margin: 0 10px; }

/* --- Contact Section --- */
.contact-section {
    padding: 80px 8%;
    background: var(--contact-section-bg);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Contact Info --- */
.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--contact-info-title-color);
}

.contact-info > p {
    color: var(--contact-info-text-color);
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 15px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--info-icon-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--info-icon-color);
    font-size: 20px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--info-content-title-color);
    font-weight: 600;
}

.info-content p {
    color: var(--info-content-text-color);
    font-size: 14px;
    line-height: 1.6;
}

/* --- Contact Form --- */
.contact-form {
    background: var(--contact-form-bg);
    padding: 50px;
}

.form-group { margin-bottom: 25px; }

.form-label {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--form-label-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--form-input-border);
    background: var(--form-input-bg);

    font-size: 14px;
    transition: 0.3s;
}

.form-input:focus { 
    outline: none; 
    border-color: var(--form-input-focus-border); 
}

textarea.form-input { resize: vertical; min-height: 150px; 
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--submit-btn-bg);
    color: var(--submit-btn-text);
    border: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s;
}

.submit-btn:hover { 
    background: var(--submit-btn-hover-bg); 
    transform: translateY(-2px); 
}

/* --- Map Section --- */
.map-section { 
    padding: 0 8% 80px; 
    background: var(--map-section-bg); 
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 400px;
    background: var(--map-container-bg);
    position: relative;
    overflow: hidden;
}

.map-container iframe { width: 100%; height: 100%; border: none; }

/* --- Footer CSS --- */
.footer-main { 
    background: var(--footer-bg); 
    color: var(--footer-text-color); 
    padding: 80px 8% 40px; 
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand h3 { 
    font-family: 'Playfair Display', serif; 
    font-size: 28px; 
    color: var(--footer-brand-title-color); 
    margin-bottom: 20px; 
}

.footer-brand p { 
    font-size: 14px; 
    color: var(--footer-bottom-text-color); 
    line-height: 1.8; 
    margin-bottom: 25px; 
}

.footer-social { display: flex; gap: 15px; }

.footer-social a {
    width: 40px; 
    height: 40px; 
    border: 1px solid var(--footer-social-border); 
    display: flex;
    align-items: center; 
    justify-content: center; 
    color: var(--footer-text-color); 
    transition: 0.3s;
}

.footer-social a:hover { 
    background: var(--footer-social-hover-bg); 
    border-color: var(--footer-social-hover-border); 
}

.footer-links h4 { 
    font-family: 'Playfair Display', serif; 
    font-size: 18px; 
    color: var(--footer-links-title-color); 
    margin-bottom: 25px; 
}

.footer-links ul { list-style: none; }

.footer-links li { margin-bottom: 12px; }

.footer-links a { 
    color: var(--footer-bottom-text-color); 
    text-decoration: none; 
    font-size: 13px; 
    transition: 0.3s; 
    text-transform: uppercase; 
}

.footer-links a:hover { 
    color: var(--footer-links-hover-color); 
    padding-left: 5px; 
}

.footer-contact p { 
    color: var(--footer-bottom-text-color); 
    font-size: 14px; 
    margin-bottom: 15px; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}

.footer-contact i { 
    color: var(--footer-contact-icon-color); 
    width: 20px; 
}

.footer-bottom { 
    background: var(--footer-bottom-bg); 
    color: var(--footer-bottom-text-color); 
    text-align: center; 
    padding: 25px 8%; 
    border-top: 1px solid var(--footer-bottom-border); 
}

/* --- Scroll Reveal Animation --- */
.reveal { opacity: 0; transform: translateY(40px); transition: 1s ease-out; }

.reveal.active { opacity: 1; transform: translateY(0); }

/* --- Responsive & Mobile Navigation Fix --- */
@media (max-width: 1024px) {
    .contact-container { grid-template-columns: 1fr; gap: 40px; }
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .page-header { padding: 120px 4% 60px; }
    .contact-section { padding: 60px 4%; }
    .contact-form { padding: 30px; }
    .footer-container { grid-template-columns: 1fr; }

    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        width: 80%;
        background: var(--text-white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.4s ease;
        box-shadow: 10px 0 30px rgba(0,0,0,0.1);
    }

    .nav-links.active { left: 0; }

    .nav-links li { margin: 20px 0; }
}

/* Ye block placeholder ke color ko control karega */
    .form-input::placeholder {
        color: var(--form-label-color);
        opacity: 1; /* Browser ki default opacity khatam karne ke liye */
    }
    
    /* Support for older browsers */
    .form-input::-webkit-input-placeholder { color: var(--form-label-color); }
    .form-input::-moz-placeholder { color: var(--form-label-color); }
    .form-input:-ms-input-placeholder { color: var(--form-label-color); }