@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Outfit:wght@300;400;600;800&display=swap');

:root {
  /* Brand Colors: Lacivert & Açık Mavi */
  --navy: #020c1b;
  --navy-light: #0a192f;
  --blue: #112240;
  --light-blue: #64ffda; /* Neon Cyan/Light Blueish */
  --neon-green: #39ff14;
  --neon-blue: #00f3ff;
  
  --text-main: #ccd6f6;
  --text-bright: #e6f1ff;
  --text-muted: #8892b0;
  
  --bg-body: #020c1b;
  --glass-bg: rgba(17, 34, 64, 0.7);
  --glass-border: rgba(100, 255, 218, 0.1);
  
  --maxw: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-body);
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(0, 243, 255, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 90% 90%, rgba(57, 255, 20, 0.05) 0%, transparent 20%);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rajdhani', sans-serif;
  margin-top: 0;
  color: var(--text-bright);
  font-weight: 700;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Utilities */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.text-neon { color: var(--light-blue); text-shadow: 0 0 10px rgba(100, 255, 218, 0.3); }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(2, 12, 27, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light-blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(100, 255, 218, 0.5);
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Desktop Nav */
.nav-links {
  display: flex;
  gap: 20px;
}

.nav-social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-social a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(136, 146, 176, 0.55);
  color: var(--text-main);
  background: rgba(17, 34, 64, 0.2);
  transition: all 0.25s ease;
}

.nav-social a:hover {
  border-color: var(--light-blue);
  color: var(--light-blue);
  background: rgba(100, 255, 218, 0.08);
  transform: translateY(-1px);
}

.nav-social-mobile {
  display: none;
}


.nav a {
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 4px;
  position: relative;
}

.nav a:hover, .nav a.active {
  color: var(--light-blue);
  background: rgba(100, 255, 218, 0.05);
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 2px;
  background: var(--light-blue);
  box-shadow: 0 0 10px var(--light-blue);
}

/* Mobile Menu Button */
.menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--light-blue);
  cursor: pointer;
  background: none;
  border: none;
}

/* Mobile Responsive Navigation */
@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background-color: rgba(2, 12, 27, 0.98);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 15px;
    border-bottom: 1px solid var(--glass-border);
    transform: translateY(-150%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav a {
    width: 80%;
    text-align: center;
    padding: 12px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .nav-social-mobile {
    display: flex;
    gap: 12px;
    margin-top: 10px;
  }

  .nav-social-mobile a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(136, 146, 176, 0.55);
    color: var(--text-bright);
    background: rgba(17, 34, 64, 0.25);
    padding: 0;
  }

  .nav-social-mobile a:hover {
    border-color: var(--light-blue);
    color: var(--light-blue);
    background: rgba(100, 255, 218, 0.08);
  }

  .nav-social {
    display: none;
  }

}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh; /* Masaüstünde tam ekran */
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  padding-top: 60px; /* Navbar payı */
}

/* Video Background Fix for Desktop */
.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(2,12,27,0.7) 0%, rgba(2,12,27,0.3) 50%, rgba(2,12,27,0.8) 100%);
  z-index: 1;
}

.hero-content {
  position: absolute;
  z-index: 2;
  max-width: 900px;
  padding: 40px;
  border: 1px solid var(--glass-border);
  background: rgba(17, 34, 64, 0.6);
  backdrop-filter: blur(5px);
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
  animation: fadeUp 1s ease-out;
  left: 50%;
  top: calc(50% + 10px);
  transform: translate(-50%, -50%);
  width: min(900px, calc(100% - 32px));
  box-sizing: border-box;
  text-align: center;
}

.hero-content.hero-content-wide {
  max-width: none;
  width: calc(100vw - 40px);
}

/* Hero Section Responsive */
@media (max-width: 768px) {
  .hero {
    height: 100vh; /* Tam ekran yüksekliği */
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero h1 { 
    font-size: 2rem; 
    line-height: 1.2;
    margin-bottom: 15px;
  }
  
  .hero p { 
    font-size: 1rem; 
    padding: 0 10px; 
    margin-bottom: 20px;
  }
  
  .hero-content { 
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    padding: 20px; 
    margin: 0 15px; 
    width: 90%;
    background: rgba(17, 34, 64, 0.85); /* Daha okunaklı arka plan */
  }

  .hero-content.hero-content-wide {
    width: calc(100% - 24px);
    margin: 0 12px;
  }

  /* Video Tam Ekran */
  .hero video {
    height: 100vh !important;
    object-fit: cover !important;
  }
  
  /* App ve SIM Kartları Mobilde Gizle yerine Alt Alta Göster (İsteğe bağlı) */
  /* Kullanıcı "yarım görünüyor" dediği için mobilde bunları şimdilik gizleyip 
     aşağıda ayrı bir bölüm olarak göstermek daha sağlıklı olabilir. 
     Şu anki CSS'de display:none yapmıştık, bunu koruyoruz. */
  .premium-app-container, .premium-sim-container {
    display: none !important; 
  }
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-bg {
  background-color: var(--navy-light);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  color: var(--text-bright);
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--light-blue);
  margin: 10px auto 0;
  box-shadow: 0 0 10px var(--light-blue);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Grid & Cards */
.grid {
  display: grid;
  gap: 30px;
}
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 992px) { .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .grid.cols-3, .grid.cols-4, .grid.cols-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--blue);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px -15px rgba(2,12,27,0.7);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
}

.card:hover {
  transform: translateY(-7px);
  border-color: var(--light-blue);
  box-shadow: 0 0 20px rgba(100, 255, 218, 0.2);
}

.card-img-top {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.1);
  transition: all 0.5s ease;
}

.card:hover .card-img-top {
  filter: grayscale(0%) contrast(1.2);
  transform: scale(1.03);
}

.card-body {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--text-bright);
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex: 1;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.price {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--neon-green);
  text-shadow: 0 0 5px rgba(57, 255, 20, 0.3);
}

.tag {
  background: rgba(100, 255, 218, 0.1);
  color: var(--light-blue);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-family: 'Rajdhani', sans-serif;
  border: 1px solid rgba(100, 255, 218, 0.2);
}

/* Tabs */
.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.tab {
  padding: 10px 25px;
  border-radius: 4px;
  background: var(--blue);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.3s;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 1px;
}

.tab:hover {
  color: var(--light-blue);
  border-color: var(--light-blue);
}

.tab.active {
  background: rgba(100, 255, 218, 0.1);
  color: var(--light-blue);
  border-color: var(--light-blue);
  box-shadow: 0 0 15px rgba(100, 255, 218, 0.2);
}

/* App Promo */
.app-promo {
  background: linear-gradient(135deg, #020c1b 0%, #112240 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
}

.app-promo h2 { color: var(--light-blue); }
.app-promo p { color: var(--text-muted); }

.store-btns {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  padding: 10px 20px;
  border-radius: 4px;
  color: var(--text-bright);
  border: 1px solid var(--text-muted);
  transition: all 0.3s;
}

.store-btn:hover {
  border-color: var(--light-blue);
  color: var(--light-blue);
  background: rgba(100, 255, 218, 0.05);
}

/* Footer */
.footer {
  background-color: #020c1b;
  color: var(--text-muted);
  padding: 60px 0 20px;
  text-align: center;
  border-top: 1px solid var(--glass-border);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--light-blue);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: -10px 0 25px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(136, 146, 176, 0.8);
  color: var(--text-bright);
  background: rgba(17, 34, 64, 0.25);
  transition: all 0.25s ease;
}

.social-links a:hover {
  border-color: var(--light-blue);
  color: var(--light-blue);
  background: rgba(100, 255, 218, 0.08);
  transform: translateY(-2px);
}

/* Admin/Form */
.login-box {
  background: var(--blue);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
  border: 1px solid var(--glass-border);
  max-width: 450px;
  margin: 60px auto;
}

.form-group { margin-bottom: 20px; }
.form-label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--light-blue); font-family: 'Rajdhani', sans-serif; }
.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #233554;
  border-radius: 4px;
  font-family: inherit;
  background-color: #0a192f;
  color: var(--text-bright);
}
.form-control:focus {
  border-color: var(--light-blue);
  outline: none;
  box-shadow: 0 0 0 1px var(--light-blue);
}

/* Gallery Masonry */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 250px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s;
}

.gallery-item:hover {
  border-color: var(--light-blue);
  box-shadow: 0 0 20px rgba(100, 255, 218, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(2, 12, 27, 0.9));
  padding: 20px;
  color: var(--text-bright);
  opacity: 0;
  transition: opacity 0.3s;
  border-bottom: 3px solid var(--light-blue);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile Promo Section */
@media (max-width: 768px) {
    .mobile-promo-section {
        display: block !important;
    }
    
    /* Masaüstü elementlerini mobilde kesin olarak gizle */
    .desktop-only {
        display: none !important;
    }
    
    /* Mobilde 100$ indirim formunu göster */
    #mobile-discount-card {
        display: block;
    }
}
::-webkit-scrollbar-track {
  background: var(--navy);
}
::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 5px;
  border: 2px solid var(--navy);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--light-blue);
}

/* Brand Logo Oval */
.brand-logo {
  height: 50px;
  width: 50px;
  object-fit: cover;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  padding: 2px;
  border: 1px solid var(--light-blue);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: var(--blue);
  margin: 5% auto;
  padding: 30px;
  border: 1px solid var(--glass-border);
  width: 90%;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 0 50px rgba(0,0,0,0.5);
  position: relative;
  color: var(--text-main);
  animation: fadeUp 0.3s ease-out;
}

.close-modal {
  color: var(--text-muted);
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-modal:hover {
  color: var(--light-blue);
}

.modal h2 {
  color: var(--light-blue);
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.calc-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.calc-col {
  flex: 1;
}

.calc-result {
  background: rgba(0,0,0,0.3);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin-top: 20px;
  border: 1px solid var(--glass-border);
}

.total-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--neon-green);
  font-family: 'Rajdhani', sans-serif;
  display: block;
}

/* Floating WhatsApp */
.float-wa {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.float-wa:hover {
  transform: scale(1.1);
  background-color: #20b857;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-top: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.wa-btn:hover {
  background: #1da851;
  color: white;
}

/* Hero Animation */
@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.1) translate(-1%, -1%); }
  100% { transform: scale(1) translate(0, 0); }
}

.hero-animated {
  animation: kenBurns 20s ease-in-out infinite alternate;
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Particles / Stars */
.stars {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
  background: transparent;
  pointer-events: none;
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  opacity: 0.8;
  animation: twinkle 2s infinite ease-in-out;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); box-shadow: 0 0 10px white; }
}

/* Global Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(100, 255, 218, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(100, 255, 218, 0); }
  100% { box-shadow: 0 0 0 0 rgba(100, 255, 218, 0); }
}

/* Applying Animations */
.section-title { animation: slideInLeft 1s ease-out; }
.card { animation: fadeInUp 0.8s ease-out; animation-fill-mode: both; }
.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }

/* Visual Feast (Görsel Şölen) Hover Effect */
.card-img-top {
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card:hover .card-img-top {
  transform: scale(1.15) rotate(2deg);
  filter: brightness(1.2) contrast(1.1) saturate(1.2);
}

.card:hover {
  box-shadow: 0 15px 40px rgba(0, 243, 255, 0.2);
  z-index: 10;
}

/* Text Animations */
h1, h2 {
  background: linear-gradient(90deg, #fff, #64ffda, #fff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 5s linear infinite;
}

@keyframes shine {
  to { background-position: 200% center; }
}

/* Ziyaret Yerlerimiz (Places to Visit) */
.visit-list {
  background: rgba(17, 34, 64, 0.4);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  height: 100%;
  transition: all 0.3s;
}

.visit-list:hover {
  background: rgba(17, 34, 64, 0.8);
  border-color: var(--light-blue);
  transform: translateY(-5px);
}

.visit-list h3 {
  color: var(--light-blue);
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.visit-list ul {
  padding-left: 0;
  list-style: none;
}

.visit-list ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: var(--text-main);
  transition: all 0.2s;
}

.visit-list ul li::before {
  content: '\f66f'; /* Mosque icon from FontAwesome */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--neon-green);
  font-size: 0.8rem;
}

.visit-list ul li:hover {
  color: var(--text-bright);
  padding-left: 30px;
}

/* Free SIM Card Animation */
.sim-promo-badge {
  position: absolute;
  bottom: 80px;
  left: 20px;
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  padding: 15px 25px;
  border-radius: 50px;
  color: white;
  font-weight: bold;
  box-shadow: 0 0 20px rgba(0, 198, 255, 0.6);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 15px;
  animation: floatSim 4s ease-in-out infinite;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.3);
}

.sim-icon {
  font-size: 2rem;
  color: #fff;
  animation: pulseSim 2s infinite;
}

.sim-text small {
  display: block;
  font-size: 0.8rem;
  opacity: 0.9;
  font-weight: normal;
}

.sim-text strong {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes floatSim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulseSim {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

@media (max-width: 768px) {
  .sim-promo-badge {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    justify-content: center;
    animation: none; /* Disable float on mobile to avoid layout shifts */
  }
}

/* Premium SIM Card 3D Animation */
.premium-sim-container {
    position: absolute;
    bottom: 120px; /* Moves it up */
    right: 40px;
    z-index: 20;
    perspective: 1000px;
    animation: floatCard 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.8)); /* Stronger shadow on the whole container */
}

.premium-sim-card {
    width: 280px;
    height: 170px;
    background: linear-gradient(135deg, #ffd700, #b8860b);
    border-radius: 15px;
    position: relative;
    box-shadow: 
        0 15px 40px rgba(0,0,0,0.7), /* Increased shadow */
        inset 0 0 0 2px rgba(255,255,255,0.3);
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.5s;
    cursor: pointer;
    border-bottom-right-radius: 40px; /* SIM cut */
}

.premium-sim-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            rgba(255,255,255,0.1),
            rgba(255,255,255,0.1) 10px,
            transparent 10px,
            transparent 20px
        );
    z-index: 1;
}

.premium-sim-card:hover {
    transform: rotateY(10deg) rotateX(10deg) scale(1.05);
}

.sim-chip {
    position: absolute;
    top: 35px;
    left: 25px;
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #e0e0e0, #a0a0a0);
    border-radius: 6px;
    z-index: 2;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.3), 0 2px 5px rgba(0,0,0,0.5); /* Added outer shadow */
    border: 1px solid #666;
}

/* Chip Contacts */
.sim-chip::after {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    width: 1px; height: 100%;
    background: #666;
    transform: translateX(-50%);
}
.sim-chip::before {
    content: '';
    position: absolute;
    top: 50%; left: 0;
    width: 100%; height: 1px;
    background: #666;
    transform: translateY(-50%);
}

.sim-logo {
    position: absolute;
    top: 25px;
    right: 25px;
    color: white;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8); /* Stronger text shadow */
}

.sim-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 2;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    text-shadow: 0 3px 6px rgba(0,0,0,0.9); /* Stronger text shadow */
}

.sim-title {
    font-size: 1.1rem; /* Slightly larger */
    letter-spacing: 1px;
    opacity: 1; /* Fully opaque */
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    font-weight: 800; /* Bold like highlight */
    margin-bottom: 2px; /* Move up slightly by reducing margin */
    position: relative;
    top: -2px; /* Move up 2px */
}

.sim-highlight {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(to right, #fff, #ffeeb0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 2px 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); /* Added drop shadow to gradient text */
}

.sim-details {
    font-size: 0.8rem;
    background: rgba(0,0,0,0.6); /* Darker background */
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.sim-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.4) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: rotate(30deg);
    animation: shineCard 4s infinite;
    pointer-events: none;
    z-index: 3;
}

.sim-pulse-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    border: 2px solid rgba(255, 215, 0, 0.6);
    border-radius: 15px;
    z-index: -1;
    animation: pulseRing 2s infinite;
}

.discount-promo-card {
    width: 280px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(2, 8, 23, 0.96) 0%, rgba(3, 24, 52, 0.92) 45%, rgba(15, 23, 42, 0.92) 100%);
    border: 1px solid rgba(255, 215, 0, 0.42);
    box-shadow: 0 18px 55px rgba(0,0,0,0.72), 0 0 0 1px rgba(0,210,255,0.10), inset 0 0 0 1px rgba(255,255,255,0.08);
    padding: 14px;
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
    transform: none;
    filter: none;
    transition: none;
}

.discount-promo-card:hover {
    transform: none;
    filter: none;
    box-shadow: 0 18px 55px rgba(0,0,0,0.72), 0 0 0 1px rgba(0,210,255,0.10), inset 0 0 0 1px rgba(255,255,255,0.08);
}

.discount-promo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(255,215,0,0.32), transparent 56%),
        radial-gradient(circle at 88% 28%, rgba(0,210,255,0.24), transparent 52%),
        radial-gradient(circle at 55% 110%, rgba(167, 139, 250, 0.16), transparent 58%);
    opacity: 0.38;
    pointer-events: none;
}

.discount-promo-head {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 10px;
}

.discount-promo-kicker {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.discount-promo-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
    margin-top: 6px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.65);
}

.discount-promo-sub {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    margin-top: 4px;
    line-height: 1.25;
}

.discount-promo-badge {
    min-width: 64px;
    height: 36px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #0F172A;
    background: linear-gradient(135deg, #ffd700, #b8860b);
    box-shadow: 0 10px 25px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(255,255,255,0.25);
}

.discount-promo-cta {
    position: relative;
    z-index: 2;
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 10px 12px;
    cursor: pointer;
    font-weight: 800;
    letter-spacing: 0.4px;
    color: #0F172A;
    background: linear-gradient(135deg, #ffd700, #b8860b);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transition: transform 0.15s, filter 0.2s;
}

.discount-promo-cta:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.discount-promo-form {
    position: relative;
    z-index: 2;
    display: none;
    margin-top: 12px;
    background: rgba(0,0,0,0.28);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 12px;
}

.discount-promo-fields {
    display: grid;
    gap: 10px;
}

.discount-promo-fields input {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 10px;
    background: rgba(0,0,0,0.25);
    color: #fff;
    outline: none;
}

.discount-promo-fields input::placeholder {
    color: rgba(255,255,255,0.6);
}

.discount-promo-send {
    margin-top: 10px;
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 10px 12px;
    cursor: pointer;
    font-weight: 800;
    color: #0F172A;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    box-shadow: 0 10px 25px rgba(0,0,0,0.45);
    transition: transform 0.15s, filter 0.2s;
}

.discount-promo-send:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.discount-promo-result {
    margin-top: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.82);
    min-height: 18px;
}

.discount-promo-glow {
    position: absolute;
    inset: -40% -30%;
    background: radial-gradient(circle at 30% 30%, rgba(255,215,0,0.22), transparent 55%);
    transform: rotate(18deg);
    pointer-events: none;
    opacity: 0.6;
    z-index: 1;
}

.terms-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.78);
    z-index: 8000;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.terms-modal-card {
    width: min(720px, 100%);
    background: #0b1220;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 14px;
    padding: 16px 16px 14px;
    box-shadow: 0 18px 60px rgba(0,0,0,0.75);
}

.terms-modal-title {
    font-weight: 900;
    font-size: 1.2rem;
    color: #ffc107;
    margin-bottom: 10px;
}

.terms-modal-body {
    color: rgba(255,255,255,0.86);
    line-height: 1.45;
    font-size: 0.95rem;
}

.terms-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 14px;
}

.launch-ads {
  display: none;
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(0,210,255,0.18), transparent 42%),
    radial-gradient(circle at 85% 25%, rgba(255,215,0,0.18), transparent 40%),
    radial-gradient(circle at 55% 85%, rgba(167,139,250,0.16), transparent 45%),
    rgba(0,0,0,0.78);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.launch-ads-card {
  width: 100%;
  background: #0b1220;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 22px 80px rgba(0,0,0,0.78);
  position: relative;
}

.launch-ads-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(135deg, rgba(255,215,0,0.14), rgba(0,210,255,0.12));
}

.launch-ads-title {
  font-weight: 900;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: 0.2px;
}

.launch-ads-close {
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.15s, filter 0.2s, background 0.2s;
}

.launch-ads-close:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  background: rgba(255,255,255,0.11);
}

.launch-ads-body {
  padding: 18px 18px 20px;
}

.launch-ads-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.launch-ads-kicker {
  color: rgba(255,255,255,0.86);
  font-weight: 900;
  letter-spacing: 0.2px;
}

.launch-ads-timer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
}

.launch-ads-progress {
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
}

.launch-ads-progress > div {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, rgba(0,210,255,0.95), rgba(255,215,0,0.95));
  transform-origin: left center;
  transform: scaleX(1);
}

.launch-ads-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.launch-ad {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 240px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), 0 18px 50px rgba(0,0,0,0.35);
}

.launch-ad::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 18%, rgba(0,210,255,0.16), transparent 42%),
    radial-gradient(circle at 85% 28%, rgba(255,215,0,0.14), transparent 45%);
  opacity: 0.45;
  pointer-events: none;
}

.launch-ad-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.launch-ad-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b1220;
  background: linear-gradient(135deg, #ffd700, #b8860b);
  box-shadow: 0 10px 28px rgba(0,0,0,0.55);
  font-size: 1.3rem;
}

.launch-ad-tag {
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(255,255,255,0.86);
  background: rgba(0,210,255,0.14);
  border: 1px solid rgba(0,210,255,0.20);
  padding: 5px 8px;
  border-radius: 999px;
  position: relative;
  z-index: 1;
}

.launch-ad h4 {
  margin: 0;
  color: #fff;
  font-weight: 900;
  line-height: 1.2;
  font-size: 1.12rem;
  position: relative;
  z-index: 1;
}

.launch-ad p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.35;
  font-size: 0.98rem;
  position: relative;
  z-index: 1;
}

.launch-ad-points {
  display: grid;
  gap: 6px;
  margin-top: 6px;
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}

.launch-ad-point {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.launch-ad-point i {
  color: rgba(0,210,255,0.95);
  margin-top: 2px;
}

.launch-ad-actions {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

.launch-ad-btn {
  border: none;
  border-radius: 12px;
  padding: 12px 14px;
  cursor: pointer;
  font-weight: 900;
  color: #0b1220;
  background: linear-gradient(135deg, #00d2ff, #3a7bd5);
  box-shadow: 0 12px 26px rgba(0,0,0,0.55);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s, filter 0.2s;
}

.launch-ad-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: translateX(-120%);
  display: none;
  pointer-events: none;
}

.launch-ad-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

@media (max-width: 1200px) {
  .launch-ads-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .launch-ads-grid { grid-template-columns: 1fr; }
  .launch-ad { min-height: auto; }
}

@media (max-width: 520px) {
  .launch-ads-body { padding: 14px 14px 16px; }
  .launch-ad { padding: 14px; }
  .launch-ad h4 { font-size: 1.05rem; }
  .launch-ad p { font-size: 0.95rem; }
  .launch-ad-btn { width: 100%; justify-content: center; }
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes shineCard {
    0% { transform: translateX(-150%) rotate(30deg); }
    20% { transform: translateX(150%) rotate(30deg); }
    100% { transform: translateX(150%) rotate(30deg); }
}

@keyframes pulseRing {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

@media (max-width: 768px) {
    .premium-sim-container {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 20px auto;
        width: 280px;
    }
}

/* Privileges Section */
.section-privileges {
    background: linear-gradient(to bottom, #020c1b, #0a192f);
    padding-bottom: 40px;
}

.privilege-card {
    background: rgba(17, 34, 64, 0.4);
    border: 1px solid var(--glass-border);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.privilege-card:hover {
    transform: translateY(-10px);
    background: rgba(17, 34, 64, 0.8);
    border-color: var(--light-blue);
    box-shadow: 0 10px 30px -10px rgba(100, 255, 218, 0.2);
}

.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--light-blue);
    transition: all 0.4s;
    border: 1px solid var(--glass-border);
}

.privilege-card:hover .icon-box {
    background: var(--light-blue);
    color: var(--navy);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.4);
}

.privilege-card h3 {
    color: var(--text-bright);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.privilege-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Highlight Card (SIM) */
.highlight-card {
    border-color: var(--neon-green);
    background: linear-gradient(145deg, rgba(17, 34, 64, 0.6), rgba(57, 255, 20, 0.05));
}

.highlight-card .icon-box {
    color: var(--neon-green);
    background: rgba(57, 255, 20, 0.1);
    border-color: rgba(57, 255, 20, 0.2);
}

.highlight-card:hover .icon-box {
    background: var(--neon-green);
    color: var(--navy);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}

/* Premium App Card 3D Animation (Left Side) */
.premium-app-container {
    position: absolute;
    bottom: 120px;
    left: 40px;
    z-index: 20;
    perspective: 1000px;
    animation: floatCard 7s ease-in-out infinite reverse; /* Different float timing/direction */
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.8));
}

.premium-app-card {
    width: 280px;
    height: 170px;
    background: linear-gradient(135deg, #00c6ff, #0072ff); /* Blue gradient for App */
    border-radius: 15px;
    position: relative;
    box-shadow: 
        0 15px 40px rgba(0,0,0,0.7),
        inset 0 0 0 2px rgba(255,255,255,0.3);
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.5s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.premium-app-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            rgba(255,255,255,0.1),
            rgba(255,255,255,0.1) 10px,
            transparent 10px,
            transparent 20px
        );
    z-index: 1;
}

.premium-app-card:hover {
    transform: rotateY(-10deg) rotateX(10deg) scale(1.05);
}

.app-card-content {
    z-index: 2;
    color: white;
    width: 100%;
    padding: 15px;
}

.app-card-icon {
    font-size: 2.5rem;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    animation: pulseSim 2s infinite;
}

.app-card-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    margin-bottom: 2px;
}

.app-card-highlight {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    background: linear-gradient(to right, #fff, #ffeeb0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
    margin-bottom: 10px;
}

.app-download-btn {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.5);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.app-download-btn:hover {
    background: white;
    color: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
    .premium-app-container {
        position: relative;
        bottom: auto;
        left: auto;
        margin: 20px auto;
        width: 280px;
    }
}

/* Premium App Card 3D Animation (Left Side) - Phone Style */
.premium-app-container {
    position: absolute;
    bottom: 50px;
    left: 40px;
    z-index: 20;
    perspective: 1000px;
    animation: floatPhone 7s ease-in-out infinite reverse;
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.8));
}

.premium-app-card {
    width: 260px;
    height: 520px;
    background: #0a0a0a;
    border-radius: 40px;
    position: relative;
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.8),
        inset 0 0 0 2px #333,
        inset 0 0 0 5px #000;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.5s;
    cursor: pointer;
    border: 8px solid #1a1a1a;
    display: block; /* Reset flex from previous style if needed */
}

/* Phone Notch */
.premium-app-card::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #000;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

/* Phone Screen Background */
.premium-app-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, #112240 0%, #020c1b 100%);
    z-index: 0;
}

.premium-app-card:hover {
    transform: rotateY(-15deg) rotateX(5deg) scale(1.02);
}

.app-card-content {
    position: relative;
    z-index: 5;
    color: white;
    width: 100%;
    height: 100%;
    padding: 40px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-card-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    margin-bottom: 2px;
    color: var(--light-blue);
    margin-top: 10px;
}

.app-card-highlight {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 20px;
    background: none; /* Reset gradient text */
    -webkit-text-fill-color: initial;
    filter: none;
}

.app-features {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: auto;
}

.app-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.05);
    padding: 10px 15px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.app-feature-item:hover {
    background: rgba(100, 255, 218, 0.1);
    border-color: var(--light-blue);
    transform: translateX(5px);
}

.app-feature-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 114, 255, 0.4);
    margin-bottom: 0; /* Reset */
    animation: none; /* Reset */
}

.app-feature-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-bright);
}

.app-download-btn {
    width: 100%;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: white;
    padding: 12px;
    border-radius: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 114, 255, 0.4);
    border: none;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.app-download-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.app-download-btn:hover::after {
    left: 100%;
}

.app-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 114, 255, 0.6);
    background: linear-gradient(90deg, #00c6ff, #0072ff); /* Reset hover bg */
    color: white;
}

@keyframes floatPhone {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@media (max-width: 768px) {
    .premium-app-container {
        display: none; /* Hide huge phone on mobile or scale down significantly */
    }
}

/* --- Page CTA Cards (Custom Request) --- */
.page-cta-card {
    background: linear-gradient(135deg, rgba(2, 12, 27, 0.9), rgba(17, 34, 64, 0.95));
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 25px;
    margin: 30px auto;
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    z-index: 10;
}
.page-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}
.page-cta-icon {
    font-size: 2.5rem;
    color: var(--light-blue);
    opacity: 0.9;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 50%;
}
.page-cta-content {
    flex-grow: 1;
}
.page-cta-content h3 {
    color: var(--light-blue);
    margin: 0 0 8px 0;
    font-size: 1.4rem;
    font-family: 'Rajdhani', sans-serif;
}
.page-cta-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}
.page-cta-btn {
    background: var(--neon-green);
    color: var(--navy);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.2);
}
.page-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(100, 255, 218, 0.4);
    background: #fff;
}

@media (max-width: 768px) {
    .page-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        margin: 20px;
    }
    .page-cta-card::before {
        width: 100%;
        height: 4px;
        top: 0;
        left: 0;
    }
    .page-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* --- Modal Grid Layout for Desktop (Added for V4.2) --- */
.modal-grid-container {
  display: block; /* Default Mobile: Stacked */
}

.modal-left, .modal-right, .modal-bottom {
  width: 100%;
}

@media (min-width: 992px) {
  #calc-modal .modal-content {
    max-width: 1000px;
    width: 90%;
  }

  .modal-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }

  .modal-left {
    grid-column: 1 / 2;
  }

  .modal-right {
    grid-column: 2 / 3;
  }

  .modal-bottom {
    grid-column: 1 / -1;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
  }
}

/* --- UPDATED: V4.3 Wider Horizontal Modal --- */
@media (min-width: 992px) {
  #calc-modal .modal-content {
    max-width: 1300px; /* Increased from 1000px */
    width: 95%; /* Increased from 90% */
  }

  /* Make sure inputs don't look too stretched */
  .modal-grid-container .form-control {
    font-size: 1rem;
    padding: 15px;
  }
}


/* --- Tweak: shrink SIM panel slightly on desktop --- */
@media (min-width: 992px) {
  .premium-sim-container {
    transform: scale(0.92);
    transform-origin: right bottom;
  }
}


/* --- Fine-tune: move 5G icon & chip; shrink a bit more --- */
@media (min-width: 992px) {
  .premium-sim-container {
    transform: scale(0.88);
    transform-origin: right bottom;
  }
  .sim-logo {
    top: 3px;
    right: 3px;
  }
  .sim-chip {
    top: auto;
    bottom: 60px;
    left: 26px;
  }
  .sim-highlight {
    margin-left: 56px;
  }

}
