:root {
    --white: #ffffff;
    --premium-gold: #D4AF37;
    --gold-light: #F4E4BC;
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
    --green-gradient: linear-gradient(135deg, #66BB6A 0%, #388E3C 100%);
    --bg-light: #F9FAFB;
    --text-dark: #111827;
    --text-muted: #4B5563; /* Darker, more clear for mobile */
    --radius: 12px;
    --shadow: 0 10px 30px rgba(0,0,0,0.06);
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.4;
    overflow-x: hidden;
    padding-top: 30px; /* Space for fixed offer strip */
}

/* --- Offer Strip --- */
.offer-strip {
    background: #111827;
    color: #FFD700;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
    letter-spacing: 0.5px;
}

/* --- Professional Header --- */
header {
    background: var(--white);
    height: 60px; /* Slightly taller for logo */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #F3F4F6;
}

.brand-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-logo {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    object-fit: cover;
}

.brand h1 {
    font-size: 1.2rem; /* Reduced slightly for longer title */
    font-weight: 900;
    color: var(--premium-gold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.brand p {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: -3px;
}

.location-badge {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--premium-gold);
    background: var(--gold-light);
    padding: 4px 12px;
    border-radius: 100px;
}

/* --- Premium Twin Cards --- */
.main-grid {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: #ffffff; /* Cleaner white background */
}

.premium-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.02);
}

.card-image {
    width: 100%;
    height: 180px; /* Reduced for better mobile fold */
    object-fit: cover;
    background: #f0f0f0;
}

.card-body {
    padding: 18px;
}

.card-body h2 {
    font-size: 1.35rem;
    font-weight: 900;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.card-body p {
    font-size: 0.85rem;
    color: #374151; /* Darker for better clarity */
    margin-bottom: 16px;
    line-height: 1.4;
}

.telugu-tag {
    font-size: 0.65rem; /* Even smaller and cleaner */
    font-weight: 600;
    color: var(--text-muted);
    margin-top: -12px;
    margin-bottom: 12px;
    opacity: 0.7;
}

/* --- Precise Professional Buttons --- */
.action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn {
    height: 46px;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.btn:active {
    transform: scale(0.97);
}

.btn-gold {
    background: var(--gold-gradient);
    color: #111;
}

.btn-green {
    background: var(--green-gradient);
    color: var(--white);
}

/* --- Trust Section --- */
.trust-bar {
    display: flex;
    justify-content: space-around;
    padding: 15px 10px;
    background: var(--white);
    border-bottom: 1px solid #f0f0f0;
}

.trust-item {
    text-align: center;
    flex: 1;
}

.trust-item span {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 5px;
}

.trust-icon {
    font-size: 1.2rem;
    color: var(--premium-gold);
}

/* --- Real Work Gallery --- */
.gallery-section {
    padding: 20px 15px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.gallery-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* --- Customer Reviews --- */
.reviews-section {
    padding: 20px 15px;
    background: #f8f9fa;
}

.review-card {
    background: var(--white);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.review-stars {
    color: #FFD700;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.review-user {
    font-size: 0.8rem;
    font-weight: 800;
    margin-top: 8px;
    display: block;
}

/* --- FAQ Accordion --- */
.faq-section {
    padding: 20px 15px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 12px 0;
}

.faq-question {
    font-size: 0.9rem;
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding-top: 8px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* --- Floating WhatsApp --- */
.float-wa {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    z-index: 2000;
    animation: pulse-wa 2s infinite;
    text-decoration: none;
}

@keyframes pulse-wa {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- Greeting Ribbon --- */
#greeting-ribbon {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 32px;
    background: var(--gold-gradient);
    color: #111827; /* Rich dark contrast */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 800;
    z-index: 9999; /* Guarantee absolute top over everything */
    padding: 6px 15px;
    box-sizing: border-box;
    letter-spacing: 0.5px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}