/* ========== CONSTRUCTION & ELECTRICAL CSS ========== */
:root {
    --lime: #C6F135;
    --cyan: #00FFD1;
    --yellow: #FFD700;
    --bg: #080808;
    --bg2: #0f0f0f;
    --bg3: #181818;
    --border: rgba(255, 255, 255, 0.08);
    --white: #fff;
    --muted: #555;
    --text: rgba(255, 255, 255, 0.72);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--white); overflow-x: hidden; }

/* ========== NAVIGATION ========== */
nav {
    position: fixed; top: 0; width: 100%; z-index: 1000; height: 66px; padding: 0 4%;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(8,8,8,0.96); backdrop-filter: blur(24px); border-bottom: 1px solid var(--border);
}
.nav-logo { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800; letter-spacing: -1px; display: flex; align-items: baseline; text-decoration: none; }
.nl-f { color: var(--lime); }
.nl-s { color: var(--cyan); }
.nl-g { color: rgba(255,255,255,0.35); font-weight: 400; font-size: 0.7rem; margin-left: 5px; letter-spacing: 2px; }
.nav-slogan { font-size: 0.6rem; color: rgba(255,255,255,0.35); letter-spacing: 1px; font-style: italic; margin-left: 8px; display: none; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.85rem; font-weight: 600; padding: 6px 12px; border-radius: 5px; transition: all 0.2s; }
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-career-btn { background: var(--lime) !important; color: #000 !important; font-weight: 700 !important; padding: 6px 14px !important; border-radius: 5px !important; }
.nav-career-btn:hover { background: var(--cyan) !important; }

@media (min-width: 768px) {
    .nav-slogan { display: flex; }
    .nav-logo { font-size: 1.55rem; }
    .nl-g { font-size: 0.8rem; margin-left: 7px; letter-spacing: 3px; }
    .nav-links a { font-size: 0.9rem; padding: 8px 16px; }
    .nav-career-btn { padding: 9px 20px !important; }
}

/* ========== HERO SECTION ========== */
.svc-hero { min-height: auto; padding: 100px 5% 60px; display: flex; align-items: center; position: relative; overflow: hidden; background: var(--bg); width: 100%; }
.hero-glow { position: absolute; top: -100px; right: -200px; width: 500px; height: 500px; pointer-events: none; background: conic-gradient(from 200deg at 60% 40%, transparent 0deg, rgba(255,215,0,0.05) 90deg, rgba(198,241,53,0.03) 180deg, transparent 260deg); }
.hero-lines { position: absolute; inset: 0; pointer-events: none; }
.hero-lines::before, .hero-lines::after { display: none; }
.hero-content { position: relative; z-index: 2; max-width: 100%; width: 100%; }
.breadcrumb { display: inline-flex; align-items: center; gap: 6px; font-family: 'Space Mono', monospace; font-size: 0.5rem; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 1.5rem; animation: up 0.6s ease both; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: var(--yellow); }
.svc-badge { display: inline-flex; align-items: center; gap: 6px; font-family: 'Space Mono', monospace; font-size: 0.55rem; letter-spacing: 1px; text-transform: uppercase; color: var(--yellow); border: 1px solid rgba(255,215,0,0.3); padding: 4px 10px; border-radius: 2px; margin-bottom: 1rem; animation: up 0.6s 0.05s ease both; background: transparent; }
.hero-ico { font-size: 2.5rem; display: block; margin-bottom: 0.8rem; animation: up 0.6s 0.1s ease both; }
.hero-h { font-family: 'Syne', sans-serif; font-size: clamp(2rem, 8vw, 6rem); font-weight: 800; line-height: 1.1; letter-spacing: -2px; margin-bottom: 1rem; animation: up 0.6s 0.15s ease both; color: var(--white); word-break: break-word; }
.hero-h em { font-style: normal; color: var(--yellow); display: inline-block; }
.hero-tagline { font-size: 0.8rem; font-style: italic; color: rgba(255,255,255,0.35); margin-bottom: 1rem; animation: up 0.6s 0.18s ease both; }
.hero-intro { font-size: 0.85rem; line-height: 1.6; color: var(--text); max-width: 100%; margin-bottom: 1.5rem; animation: up 0.6s 0.21s ease both; }
.hero-btns { display: flex; gap: 0.8rem; flex-wrap: wrap; animation: up 0.6s 0.24s ease both; }
.btn-yellow { background: var(--yellow); color: #000; padding: 10px 20px; border-radius: 4px; text-decoration: none; font-weight: 700; font-size: 0.8rem; display: inline-flex; align-items: center; gap: 6px; transition: all 0.22s; box-shadow: 0 0 26px rgba(255,215,0,0.2); }
.btn-yellow:hover { transform: translateY(-3px); box-shadow: 0 0 42px rgba(255,215,0,0.4); }
.btn-outline { border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.65); padding: 10px 20px; border-radius: 4px; text-decoration: none; font-size: 0.8rem; display: inline-flex; align-items: center; gap: 6px; transition: all 0.2s; background: transparent; }
.btn-outline:hover { border-color: var(--white); color: var(--white); }

@media (min-width: 768px) {
    .svc-hero { min-height: 88vh; padding: 130px 5% 90px; }
    .hero-glow { width: 700px; height: 700px; }
    .hero-lines::before, .hero-lines::after { display: block; content: ''; position: absolute; left: -5%; width: 110%; height: 1px; transform: rotate(-5deg); }
    .hero-lines::before { top: 40%; background: linear-gradient(90deg, transparent, rgba(255,215,0,0.1), transparent); }
    .hero-lines::after { top: 65%; background: linear-gradient(90deg, transparent, rgba(198,241,53,0.05), transparent); }
    .hero-content { max-width: 760px; }
    .breadcrumb { font-size: 0.62rem; letter-spacing: 2px; gap: 8px; margin-bottom: 2rem; }
    .svc-badge { font-size: 0.65rem; letter-spacing: 2px; padding: 5px 14px; margin-bottom: 1.5rem; gap: 8px; }
    .hero-ico { font-size: 4rem; margin-bottom: 1.2rem; }
    .hero-h { line-height: 0.92; letter-spacing: -4px; margin-bottom: 1.5rem; }
    .hero-tagline { font-size: 0.95rem; margin-bottom: 1.8rem; }
    .hero-intro { font-size: 1rem; line-height: 1.85; max-width: 580px; margin-bottom: 2.5rem; }
    .btn-yellow { padding: 12px 28px; font-size: 0.92rem; gap: 8px; }
    .btn-outline { padding: 12px 26px; font-size: 0.9rem; gap: 8px; }
}

/* ========== TICKER ========== */
.svc-ticker { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg2); padding: 10px 0; }
.svc-ticker-inner { display: inline-block; white-space: nowrap; animation: tick 28s linear infinite; }
.svc-ticker-inner span { font-family: 'Space Mono', monospace; font-size: 0.5rem; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); padding: 0 0.8rem; }
.t-hi { color: var(--yellow) !important; }
@media (min-width: 768px) { .svc-ticker { padding: 12px 0; } .svc-ticker-inner span { font-size: 0.65rem; letter-spacing: 2px; padding: 0 1.8rem; } }

/* ========== SECTIONS ========== */
.sec { padding: 60px 5%; }
.sec-alt { background: var(--bg2); }
.sec-label { display: inline-flex; align-items: center; gap: 8px; font-family: 'Space Mono', monospace; font-size: 0.55rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem; color: var(--yellow); flex-wrap: wrap; }
.sec-label::before { content: attr(data-n); color: var(--muted); }
.sec-h { font-family: 'Syne', sans-serif; font-size: clamp(1.5rem, 5vw, 2.8rem); font-weight: 800; line-height: 1.2; letter-spacing: -1px; margin-bottom: 1.5rem; color: var(--white); word-break: break-word; }
.sec-h em { font-style: normal; color: var(--yellow); }
.sec-sub { font-size: 0.85rem; color: var(--text); line-height: 1.6; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .sec { padding: 90px 5%; } .sec-label { font-size: 0.68rem; letter-spacing: 3px; gap: 12px; margin-bottom: 1.4rem; } .sec-h { line-height: 1.05; letter-spacing: -2px; margin-bottom: 2.5rem; } .sec-sub { font-size: 1rem; line-height: 1.8; margin-bottom: 2.5rem; } }

/* ========== OFFER GRID ========== */
.offer-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
@media (min-width: 640px) { .offer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .offer-grid { grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); } }

.offer-card { background: var(--bg2); padding: 1.5rem; position: relative; transition: background 0.22s; cursor: pointer; }
.offer-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--yellow); transform: scaleY(0); transform-origin: bottom; transition: transform 0.3s; }
.offer-card:hover { background: var(--bg3); }
.offer-card:hover::before { transform: scaleY(1); }
.offer-num { font-family: 'Space Mono', monospace; font-size: 0.55rem; color: var(--muted); letter-spacing: 1px; display: block; margin-bottom: 0.8rem; }
.offer-ico { font-size: 1.4rem; display: block; margin-bottom: 0.6rem; }
.offer-title { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.offer-desc { font-size: 0.8rem; color: var(--text); line-height: 1.6; }
.offer-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.job-tag { background: rgba(255,215,0,0.08); border: 1px solid rgba(255,215,0,0.2); padding: 3px 8px; border-radius: 4px; font-size: 0.6rem; font-family: 'Space Mono', monospace; color: rgba(255,215,0,0.9); white-space: nowrap; }
@media (min-width: 768px) { .offer-card { padding: 2rem; } .offer-num { font-size: 0.6rem; letter-spacing: 2px; margin-bottom: 1rem; } .offer-ico { font-size: 1.6rem; margin-bottom: 0.8rem; } .offer-title { font-size: 1rem; } .offer-desc { font-size: 0.84rem; line-height: 1.7; } .job-tag { padding: 4px 10px; font-size: 0.7rem; } }

/* ========== UNAVAILABLE SECTION (LAUNCHING SOON) ========== */
.unavail-section { position: relative; padding: 60px 5%; overflow: hidden; background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.unavail-grid { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,215,0,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,215,0,0.04) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%); }
.unavail-stripes { position: absolute; inset: 0; pointer-events: none; background: repeating-linear-gradient(-45deg, transparent, transparent 18px, rgba(255,59,92,0.03) 18px, rgba(255,59,92,0.03) 20px); }
.unavail-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 1200px; margin: 0 auto; }
@media (min-width: 768px) { .unavail-inner { grid-template-columns: 120px 1fr 260px; gap: 2rem; } }

.unavail-left { display: flex; flex-direction: row; align-items: center; gap: 1rem; justify-content: flex-start; }
@media (min-width: 768px) { .unavail-left { flex-direction: column; align-items: center; } }
.unavail-icon-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.unavail-icon { font-size: 3rem; position: relative; z-index: 2; animation: sway 3s ease-in-out infinite; }
@keyframes sway { 0%,100% { transform: rotate(-5deg); } 50% { transform: rotate(5deg); } }
.unavail-pulse { position: absolute; width: 60px; height: 60px; border-radius: 50%; border: 2px solid rgba(255,59,92,0.3); animation: pulse 2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(0.8); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }
.unavail-status { display: flex; align-items: center; gap: 7px; font-family: 'Space Mono', monospace; font-size: 0.5rem; letter-spacing: 1px; text-transform: uppercase; color: #FF3B5C; background: rgba(255,59,92,0.08); border: 1px solid rgba(255,59,92,0.2); padding: 4px 8px; border-radius: 3px; }
.unavail-dot { width: 6px; height: 6px; border-radius: 50%; background: #FF3B5C; animation: blink 1.8s ease infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.2; } }

.unavail-tag { font-family: 'Space Mono', monospace; font-size: 0.55rem; letter-spacing: 2px; text-transform: uppercase; color: var(--yellow); margin-bottom: 0.8rem; display: flex; align-items: center; gap: 8px; }
.unavail-tag::before { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--yellow); }
.unavail-h { font-family: 'Syne', sans-serif; font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 800; letter-spacing: -1px; line-height: 1.2; color: rgba(255,255,255,0.9); margin-bottom: 1rem; }
.unavail-h span { color: #FF3B5C; position: relative; }
.unavail-p { font-size: 0.85rem; color: var(--text); line-height: 1.7; margin-bottom: 1.5rem; max-width: 100%; }
.unavail-promise { background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,215,0,0.04)); border: 1px solid rgba(255,215,0,0.35); border-left: 4px solid var(--yellow); border-radius: 0 10px 10px 0; padding: 1.2rem; }
.promise-top { display: flex; align-items: center; gap: 12px; margin-bottom: 0.8rem; }
.promise-quote { font-family: 'Syne', sans-serif; font-size: 2.5rem; font-weight: 800; color: rgba(255,215,0,0.25); line-height: 0.8; }
.promise-lines { display: flex; flex-direction: column; gap: 5px; flex: 1; }
.promise-line { height: 2px; background: linear-gradient(90deg, var(--yellow), transparent); border-radius: 2px; }
.promise-line.short { width: 50%; opacity: 0.5; }
.promise-text { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 800; color: var(--yellow); letter-spacing: -0.5px; margin-bottom: 0.5rem; }
.promise-sub { font-size: 0.8rem; color: rgba(255,255,255,0.75); line-height: 1.6; }
.promise-sig { border-top: 1px solid rgba(255,215,0,0.15); padding-top: 0.8rem; margin-top: 0.5rem; }
.promise-sig-name { font-family: 'Syne', sans-serif; font-size: 0.8rem; font-weight: 700; color: rgba(255,215,0,0.8); }
.promise-sig-role { font-family: 'Space Mono', monospace; font-size: 0.5rem; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }

.unavail-right { background: rgba(255,215,0,0.04); border: 1px solid rgba(255,215,0,0.15); border-radius: 12px; padding: 1.2rem; }
.unavail-soon-label { font-family: 'Space Mono', monospace; font-size: 0.55rem; letter-spacing: 2px; text-transform: uppercase; color: var(--yellow); margin-bottom: 1rem; }
.unavail-chips { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.2rem; }
.uc { font-size: 0.75rem; color: rgba(255,255,255,0.5); padding: 6px 10px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 5px; }
.unavail-notify-btn { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--yellow); color: #000; padding: 10px 16px; border-radius: 5px; text-decoration: none; font-family: 'Syne', sans-serif; font-size: 0.8rem; font-weight: 700; transition: all 0.2s; text-align: center; }
.unavail-notify-btn:hover { background: #fff; transform: translateY(-2px); }

/* ========== NOTIFY FORM ========== */
.notify-box { background: rgba(255,215,0,0.04); border: 1px solid rgba(255,215,0,0.15); border-radius: 12px; padding: 1.5rem; }
.notify-form-row { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 768px) { .notify-form-row { flex-direction: row; align-items: flex-start; } }
.notify-group { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.notify-group input { background: var(--bg3); border: 1px solid var(--border); color: var(--white); font-size: 0.85rem; padding: 10px 12px; border-radius: 5px; outline: none; width: 100%; }
.notify-group input:focus { border-color: var(--yellow); }
.notify-phone { display: flex; }
.phone-code { background: var(--bg); border: 1px solid var(--border); border-right: none; border-radius: 5px 0 0 5px; padding: 10px 10px; font-size: 0.7rem; color: rgba(255,255,255,0.5); white-space: nowrap; display: flex; align-items: center; }
.notify-phone input { border-radius: 0 5px 5px 0; flex: 1; }
.notify-error { font-size: 0.65rem; color: #FF3B5C; display: none; }
#con-btn { background: var(--yellow); color: #000; border: none; padding: 10px 20px; border-radius: 5px; font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; transition: all 0.2s; }
#con-btn:hover { background: #fff; transform: translateY(-2px); }
.notify-success { display: flex; align-items: center; gap: 10px; color: var(--yellow); font-size: 0.85rem; font-weight: 600; padding: 0.5rem 0; }
@media (min-width: 768px) { .notify-box { padding: 2rem; } .notify-group input { font-size: 0.88rem; } .phone-code { font-size: 0.78rem; } .uc { font-size: 0.8rem; } }

/* ========== OTHER CHIPS ========== */
.other-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.other-chip { display: flex; align-items: center; gap: 6px; background: var(--bg3); border: 1px solid var(--border); color: var(--text); text-decoration: none; padding: 8px 14px; border-radius: 6px; font-size: 0.75rem; font-weight: 500; transition: all 0.2s; }
.other-chip:hover { border-color: var(--yellow); color: var(--yellow); }
@media (min-width: 768px) { .other-chip { gap: 8px; padding: 10px 18px; font-size: 0.85rem; } }

/* ========== CTA SECTION ========== */
.cta-sec { padding: 60px 5%; text-align: center; border-top: 1px solid var(--border); position: relative; overflow: hidden; background: var(--bg); }
.cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 400px; height: 200px; background: radial-gradient(ellipse, rgba(255,215,0,0.04) 0%, transparent 70%); pointer-events: none; }
.cta-sec h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.5rem, 5vw, 3rem); font-weight: 800; letter-spacing: -1px; margin-bottom: 1rem; position: relative; color: var(--white); word-break: break-word; }
.cta-sec p { font-size: 0.85rem; color: var(--text); max-width: 440px; margin: 0 auto 1.5rem; line-height: 1.6; position: relative; }
@media (min-width: 768px) { .cta-sec { padding: 90px 5%; } .cta-glow { width: 600px; height: 300px; } .cta-sec h2 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -2px; margin-bottom: 1.2rem; } .cta-sec p { font-size: 0.95rem; margin: 0 auto 2rem; line-height: 1.8; } }

/* ========== FOOTER ========== */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 1.5rem 5%; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
.foot-logo { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 800; letter-spacing: -1px; text-decoration: none; display: inline-flex; align-items: baseline; }
.foot-logo .f { color: var(--lime); }
.foot-logo .s { color: var(--cyan); }
.foot-logo .g { color: rgba(255,255,255,0.3); font-weight: 400; font-size: 0.65rem; margin-left: 4px; letter-spacing: 2px; }
.foot-copy { color: var(--muted); font-size: 0.7rem; }
@media (min-width: 640px) { footer { flex-direction: row; justify-content: space-between; text-align: left; } }
@media (min-width: 768px) { footer { padding: 2rem 5%; } .foot-logo { font-size: 1.3rem; } .foot-logo .g { font-size: 0.75rem; margin-left: 5px; letter-spacing: 3px; } .foot-copy { font-size: 0.78rem; } }

/* ========== ANIMATIONS ========== */
@keyframes up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========== MOBILE MENU ========== */
.hamburger { display: none; background: transparent; border: 1px solid rgba(255,255,255,0.2); border-radius: 6px; cursor: pointer; padding: 6px 8px; margin-left: 10px; }
.hamburger span { display: block; width: 20px; height: 2px; background: white; margin: 4px 0; transition: 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-links { position: fixed; top: 66px; left: -100%; width: 280px; height: 100vh; background: #0f0f0f; flex-direction: column; padding: 20px; gap: 10px; transition: left 0.3s; z-index: 999; border-right: 1px solid rgba(255,255,255,0.1); }
    .nav-links.active { left: 0; }
    .nav-links a { width: 100%; padding: 12px; text-align: left; font-size: 1rem; }
}
/* Notify Box Styles */
.notify-box {
    background: rgba(255,215,0,0.04);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 12px;
    padding: 1.5rem;
}

.notify-form-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .notify-form-row {
        flex-direction: row;
        align-items: flex-start;
    }
}

.notify-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.notify-group input {
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--white);
    font-size: 0.85rem;
    padding: 10px 12px;
    border-radius: 5px;
    outline: none;
    width: 100%;
}

.notify-group input:focus {
    border-color: var(--yellow);
}

.notify-phone {
    display: flex;
}

.phone-code {
    background: var(--bg);
    border: 1px solid var(--border);
    border-right: none;
    border-radius: 5px 0 0 5px;
    padding: 10px 10px;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.notify-phone input {
    border-radius: 0 5px 5px 0;
    flex: 1;
}

.notify-error {
    font-size: 0.65rem;
    color: #FF3B5C;
    display: none;
}

#notify-btn {
    background: var(--yellow);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    transition: all 0.2s;
}

#notify-btn:hover {
    background: #fff;
    transform: translateY(-2px);
}

#notify-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.notify-success, #notify-already {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--yellow);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 0;
}

.notify-login-prompt {
    text-align: center;
    padding: 2rem;
}

.notify-login-prompt i {
    font-size: 2rem;
    color: var(--yellow);
    margin-bottom: 1rem;
    display: block;
}

.notify-login-prompt p {
    color: var(--text);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .notify-box {
        padding: 2rem;
    }
    .notify-group input {
        font-size: 0.88rem;
    }
    .phone-code {
        font-size: 0.78rem;
    }
}