/* Consolidated styles extracted from index.php */
:root {
    --primary-gold: #b1915a;
    --accent-maroon: #800000;
    --text-dark: #333;
    --text-light: #666;
    --white: #fafaf7;
    --bg-off-white: #e2dfd3;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
    padding-bottom: 0;
}

h1, h2, h3, .tower-label { font-family: 'Playfair Display', serif; }

/* CTA */
.cta-main { display:inline-block; background:var(--accent-maroon); color:white; padding:14px 30px; text-decoration:none; text-transform:uppercase; letter-spacing:2px; font-size:12px; font-weight:600; border:none; cursor:pointer; transition:var(--transition); }
.cta-main:hover { background:#660000; transform: translateY(-2px); }

/* Gallery responsive & layout */
:root { --primary-gold:#c5a059; }
.gold-underline { width:60px; height:3px; background:var(--primary-gold); margin:0 auto; }
.section-padding { padding:80px 20px; }
.text-maroon { color:var(--accent-maroon); }
.border-maroon { border-color:var(--accent-maroon); }



.lead-form input,
.lead-form select {
    width: 100%;
    border: none;
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 0;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
    background: transparent;
}

.lead-form input:focus,
.lead-form select:focus {
    border-bottom-color: #680f38;
}

.config-label {
    font-size: 12px;
    font-weight: 600;
    color: #333;
}

.submit-btn {
    width: 100%;
    background: #680f38;
    color: #fff;
    padding: 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #000;
}

/* WhatsApp Button */
.whatsapp-btn {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    padding: 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn img {
    width: 20px;
    height: 20px;
}
