/* ── CUSTOM CORE STYLES ── */
:root {
    --gold: #f97316;
    --gold-light: #fdba74;
    --dark: #fff7ed;
    --dark2: #ffedd5;
    --accent: #2563EB;
    --text: #111111;
}

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Hover effects */
.hover-effect:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

/* ── HYDERABAD LAYOUT OVERLAYS ── */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute; inset: 0;
    background:
        linear-gradient(135deg, rgba(255,247,237,0.95) 0%, rgba(255,237,213,0.85) 50%, rgba(254,215,170,0.75) 100%),
        repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(249,115,22,0.03) 40px, rgba(249,115,22,0.03) 80px),
        linear-gradient(180deg, #fff7ed 0%, #ffedd5 40%, #fed7aa 100%);
}

.hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(249,115,22,0.06) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(249,115,22,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridShift 20s linear infinite;
}
@keyframes gridShift { from { background-position: 0 0; } to { background-position: 60px 60px; } }

.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.25; }
.orb-1 { width: 500px; height: 500px; background: #fed7aa; top: -100px; right: -100px; animation: pulse 8s ease-in-out infinite; }
.orb-2 { width: 400px; height: 400px; background: #f97316; bottom: -50px; left: -100px; animation: pulse 10s ease-in-out infinite reverse; }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:0.25} 50%{transform:scale(1.15);opacity:0.35} }
@keyframes pulse2 { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }

.gold-text {
    background: linear-gradient(135deg, #f97316, #fdba74, #ea580c);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Buttons & Forms */
.btn-gold {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #ffffff; font-weight: 700; border: none; cursor: pointer;
    transition: all 0.3s ease; position: relative; overflow: hidden;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(249,115,22,0.5); }

/* Upgraded Animated WhatsApp Buttons & Float widgets */
@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.btn-whatsapp {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: #ffffff !important;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    z-index: 2;
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5) !important;
    filter: brightness(1.08);
}

.btn-whatsapp:hover::before {
    animation: shimmer 0.8s ease-in-out;
}

.btn-whatsapp:active {
    transform: translateY(0) scale(1);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(249,115,22,0.6);
    color: var(--gold);
    font-weight: 600; cursor: pointer;
    transition: all 0.3s ease;
}
.btn-outline:hover { background: rgba(249,115,22,0.1); border-color: var(--gold); }

.stat-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(255,255,255,0.3));
    border: 1px solid #e5e7eb;
    backdrop-filter: blur(10px);
}

.section-dark { background: var(--dark2); }
.section-darker { background: var(--dark); }
.section-green { background: linear-gradient(135deg, #ffedd5, #fed7aa); }

.badge {
    background: linear-gradient(135deg, rgba(249,115,22,0.15), rgba(249,115,22,0.05));
    border: 1px solid #e5e7eb;
    color: #111111;
}

.compare-row { border-bottom: 1px solid rgba(0,0,0,0.08); }

.form-input {
    background: rgba(255,255,255,0.7);
    border: 1px solid #e5e7eb;
    color: #111111;
    transition: border-color 0.3s, box-shadow 0.3s;
    width: 100%;
    outline: none;
}
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(249,115,22,0.15); }

/* Sticky CTA */
.sticky-cta {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
    background: linear-gradient(90deg, #fff7ed, #ffedd5);
    border-top: 1px solid #e5e7eb;
    padding: 12px 20px;
    display: flex; align-items: center; justify-content: center; gap: 12px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.sticky-cta.visible { transform: translateY(0); }

/* WhatsApp float */
.wa-float {
    position: fixed; bottom: 80px; right: 20px; z-index: 60;
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    cursor: pointer; transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    animation: wa-pulse 2s infinite !important;
}
.wa-float:hover { 
    transform: scale(1.1) rotate(-5deg) translateY(-3px) !important; 
    box-shadow: 0 8px 30px rgba(37,211,102,0.7) !important; 
}

.countdown-box {
    background: rgba(249,115,22,0.1);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 6px 14px;
    text-align: center;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(255,255,255,0.3));
    border: 1px solid #e5e7eb;
}

.progress-bar { height: 8px; border-radius: 4px; background: rgba(0,0,0,0.1); overflow: hidden; }
.progress-fill { height: 100%; border-radius: 4px; transition: width 1.5s ease; }

.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

.gold-divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; }



@media (max-width: 768px) {
    .sticky-cta { flex-direction: column; padding: 10px 16px; gap: 8px; }
    .sticky-cta button { width: 100%; max-width: 340px; }
}

.toast { position: fixed; top: 20px; right: 20px; z-index: 9999; padding: 14px 20px; border-radius: 10px; font-weight: 600; font-size: 14px; transform: translateX(120%); transition: transform 0.4s ease; max-width: 320px; }
.toast.show { transform: translateX(0); }
.toast-success { background: linear-gradient(135deg, #ea580c, #c2410c); border: 1px solid rgba(249,115,22,0.3); color: #fff; }

@keyframes urgentGlow {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); transform: scale(1); }
    50% { box-shadow: 0 0 25px 8px rgba(239, 68, 68, 0.6); transform: scale(1.05); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); transform: scale(1); }
}
@keyframes dotFlash {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.5); box-shadow: 0 0 8px #ffffff; }
}
.urgent-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 40px;
    border-radius: 50px;
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
    border: 3px solid #fca5a5;
    margin-bottom: 24px;
    animation: urgentGlow 2s infinite ease-in-out;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ffffff;
    display: inline-block;
    animation: dotFlash 1s infinite;
}

.urgent-text {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
