/* ===========================
   FRiENDi Mobile — Reconstructed Core Styles
   (Replaces original style.css from friendimobile.com)
   =========================== */

/* === RESET + BASE === */
html, body { margin: 0; padding: 0; }
body { font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 14px; color: #333; background: #fff; line-height: 1.4; }
a { color: #00BFB3; text-decoration: none; }
a:hover { color: #009e96; }
ul { list-style: disc; padding-left: 20px; }
img { max-width: 100%; height: auto; }
h1, h2, h3 { margin: 0 0 10px; }

/* === 960 GRID === */
.container_12 { width: 960px; margin: 0 auto; overflow: hidden; }
.grid_1 { width: 60px; }  .grid_2 { width: 140px; }  .grid_3 { width: 220px; }
.grid_4 { width: 300px; } .grid_5 { width: 380px; } .grid_6 { width: 460px; }
.grid_7 { width: 540px; } .grid_8 { width: 620px; } .grid_9 { width: 700px; }
.grid_10 { width: 780px; } .grid_11 { width: 860px; } .grid_12 { width: 940px; }
.grid_1, .grid_2, .grid_3, .grid_4, .grid_5, .grid_6,
.grid_7, .grid_8, .grid_9, .grid_10, .grid_11, .grid_12 {
  float: left; display: inline; margin-left: 10px; margin-right: 10px;
}
.alpha { margin-left: 0 !important; }
.omega { margin-right: 0 !important; }

/* === HEADER === */
.outer-header {
  background: #00BFB3;
  position: relative;
  z-index: 10;
}
.outer-header header {
  position: relative;
  padding: 15px 0;
  overflow: visible;
}

/* Logo */
h1.logo { float: left; margin: 0; padding: 0; }
h1.logo a { display: block; text-decoration: none; }
.logo-text {
  display: block;
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  margin-top: 5px;
  letter-spacing: -1px;
}
.logo-text small {
  display: block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-top: 2px;
}

/* Global wrap: call us, login, lang */
.wrap-global {
  float: right;
  text-align: right;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.wrap-global .call {
  color: #fff;
  font-size: 13px;
  margin-bottom: 0;
}
.wrap-global .call .number { font-weight: 700; }

.btn-login {
  display: inline-block;
  background: #FDBB30;
  color: #fff !important;
  padding: 6px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  transition: background .2s;
}
.btn-login:hover { background: #e5a520; }

.lang-switcher { margin-left: auto; }
.lang-switch { color: #fff; font-weight: 600; font-size: 13px; background: rgba(0,0,0,.15); padding: 5px 15px; border-radius: 5px; }

/* === NAVIGATION === */
nav.main { clear: both; margin-top: 20px; }
nav.main ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}
nav.main ul li { }
nav.main ul li a {
  display: block;
  padding: 5px 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s;
}
nav.main ul li a:hover { color: #f0f0f0; }

/* Search */
nav.main form.search {
  float: right;
  margin-top: 0px;
  position: relative;
}
form.search fieldset { border: none; padding: 0; display: flex; gap: 0; }
form.search .txt-search {
  padding: 8px 30px 8px 15px;
  border: none;
  border-radius: 20px;
  background: #fff;
  color: #333;
  font-size: 13px;
  width: 150px;
}
form.search .txt-search::placeholder { color: #aaa; }
form.search .btn-search {
  background: transparent;
  color: #00BFB3;
  border: none;
  position: absolute;
  right: 10px;
  top: 7px;
  font-weight: 700;
  cursor: pointer;
  font-size: 16px;
}

/* === SPOTLIGHT BANNER (Text Only) === */
.spotlight {
  background: linear-gradient(135deg, #00BFB3 0%, #00a89e 40%, #008f86 100%);
  padding: 0;
  min-height: 240px;
  position: relative;
  overflow: hidden;
  clear: both;
  width: 100%;
  display: block;
}
.shade-header { height: 0; display: none; }
.sliders, .slides_container {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  overflow: visible;
  position: relative;
}
.slide {
  display: none !important;
  position: relative !important;
  width: 100% !important;
  opacity: 1 !important;
  z-index: 1 !important;
}
.slides_container .slide:first-child {
  display: block !important;
  padding: 45px 20px 55px;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}
.slide .spot-txt {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 8px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.slide .spot-txt span { color: #FDBB30; }
.slide p {
  font-size: 18px;
  color: rgba(255,255,255,.9);
  margin: 8px 0 20px;
}
.slide .spot-btn {
  display: inline-block;
  background: linear-gradient(180deg, #FDBB30 0%, #f5a623 100%);
  color: #fff;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 8px;
  font-size: 18px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 15px rgba(0,0,0,.2);
}
.slide .spot-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}
.slide .cartoon { display: none; }

/* === CONTENT AREA === */
.outer-content {
  padding: 25px 0;
}

/* Widgets */
.widget, .widget-round {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.widget h2, .widget-round h2 {
  margin: 0;
  padding: 0;
  background: #00BFB3;
}
.widget h2 a, .widget-round h2 a {
  display: block;
  padding: 25px 20px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  line-height: 1.1;
  text-transform: uppercase;
}
.wrap-wid {
  padding: 20px;
  min-height: 120px;
}
.wrap-wid ul { margin: 0 0 15px; padding: 0 0 0 20px; }
.wrap-wid li { font-size: 14px; line-height: 1.8; color: #555; }
.wrap-wid li span { color: #00BFB3; font-weight: 700; font-size: 16px; }
.wrap-wid p { font-size: 14px; color: #666; line-height: 1.5; }
.wrap-wid p strong { color: #333; }

a.more {
  display: inline-block;
  margin: 0 20px 20px;
  padding: 10px 25px;
  background: #00BFB3;
  color: #fff !important;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: background .2s, transform .2s;
  box-shadow: 0 2px 6px rgba(0,0,0,.1);
}
a.more:hover {
  background: #009e96 !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
}

/* Special logic for the 3rd widget (Recharge / top-up) */
.widget-round > p {
  padding: 20px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}
.widget-round > a.more {
  margin-top: 0;
}

/* Corner decorations (original theme) — disable */
.tl, .tr, .bl, .br { display: none; }

/* === FOOTER === */
.outer-footer {
  background: #1a1a2e;
  color: #aaa;
  padding: 30px 0;
}
.footer-top {
  overflow: hidden;
  padding-bottom: 15px;
  border-bottom: 1px solid #333;
  margin-bottom: 15px;
}
#back-top { display: none; }

nav.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}
nav.footer ul li a {
  color: #aaa;
  font-size: 13px;
  text-decoration: none;
  transition: color .2s;
}
nav.footer ul li a:hover { color: #fff; }

nav.social { margin-top: 15px; }
nav.social h3 { color: #ccc; font-size: 14px; margin-bottom: 8px; }
nav.social ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
}
nav.social ul li a {
  color: #888;
  font-size: 13px;
  text-decoration: none;
}
nav.social ul li a:hover { color: #00BFB3; }

.copyright {
  color: #777;
  font-size: 12px;
  margin-top: 15px;
}

.sitemap { overflow: hidden; margin-top: 15px; }
.nav-sitemap { float: left; width: 25%; }
.nav-sitemap ul { list-style: none; padding: 0; }
.nav-sitemap ul li a { color: #888; font-size: 13px; text-decoration: none; }
.nav-sitemap ul li a:hover { color: #00BFB3; }

/* === SUGGESTION FIELD === */
.suggestfield { display: none !important; }
