/* ==========================================================================
   Evanya Technologies - Single Page ISP Website CSS
   Continuous Scroll Layout with Dynamic Menu Anchors & Dev Footer
   ========================================================================== */

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

:root {
  --primary: #00f0ff;
  --primary-glow: rgba(0, 240, 255, 0.4);
  --primary-dark: #0088cc;
  --secondary: #6366f1;
  --accent: #ec4899;
  --dark-bg: #090d16;
  --card-bg: rgba(17, 24, 39, 0.82);
  --card-border: rgba(255, 255, 255, 0.1);
  --card-hover-border: rgba(0, 240, 255, 0.5);
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  --gradient-primary: linear-gradient(135deg, #00f0ff 0%, #0066ff 100%);
  --gradient-accent: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  --gradient-dark: linear-gradient(180deg, rgba(9, 13, 22, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-glow: 0 0 25px rgba(0, 240, 255, 0.25);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
  --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--dark-bg);
  color: var(--text-main);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--dark-bg);
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(0, 240, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 65%, rgba(99, 102, 241, 0.08) 0%, transparent 40%);
  background-attachment: fixed;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  outline: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Topbar */
.topbar {
  background: rgba(5, 8, 15, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.875rem;
  padding: 8px 0;
  position: relative;
  z-index: 101;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

.topbar-item i {
  color: var(--primary);
}

.owner-badge {
  background: rgba(139, 92, 246, 0.18);
  border: 1px solid rgba(139, 92, 246, 0.4);
  color: #c4b5fd;
  padding: 3px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.owner-badge i {
  color: var(--accent);
}

.topbar-phones {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.phone-chip {
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.25);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

.phone-chip:hover {
  background: var(--primary);
  color: #000;
  box-shadow: var(--shadow-glow);
}

/* Main Navigation Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 13, 22, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--card-border);
  padding: 12px 0;
  transition: var(--transition);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.logo-img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.4));
  border-radius: 8px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.brand-tag {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

/* NAVIGATION LINKS BAR */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  padding: 5px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-link {
  padding: 9px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: none;
  background: transparent;
  text-decoration: none;
}

.nav-link i {
  font-size: 1rem;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
  color: #040914;
  font-weight: 700;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-glow);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #040914;
  box-shadow: var(--shadow-glow);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: rgba(0, 240, 255, 0.15);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-main);
  font-size: 1.4rem;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
}

/* ==========================================================================
   PAGE SECTIONS & CONTINUOUS CONTENT LAYOUT
   ========================================================================== */
.content-wrapper {
  flex: 1;
  position: relative;
  width: 100%;
}

.page-section {
  padding: 80px 0;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  scroll-margin-top: 90px;
}

.page-section:last-of-type {
  border-bottom: none;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.25);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--text-main);
}

.section-title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* HERO SECTION */
.hero-section {
  padding: 60px 0 90px 0;
  position: relative;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero_bg.png') center/cover no-repeat;
  opacity: 0.22;
  filter: blur(2px);
  z-index: 0;
}

.hero-content-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.4);
  padding: 6px 16px;
  border-radius: 30px;
  color: #a5b4fc;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-tag i {
  color: var(--primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: 3.3rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-heading .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtext {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 35px;
}

.owner-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #e2e8f0;
  margin-bottom: 20px;
}

.owner-pill strong {
  color: var(--primary);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.hero-features-row {
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  flex-wrap: wrap;
}

.hero-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-main);
}

.hero-feat-item i {
  color: var(--primary);
  font-size: 1.2rem;
}

/* Glass Card Widget on Hero */
.hero-widget-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.hero-widget-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-glow);
}

.widget-header {
  text-align: center;
  margin-bottom: 25px;
}

.widget-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.speed-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: #000;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 3px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.widget-info-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  color: var(--text-muted);
}

.info-val {
  font-weight: 700;
  color: var(--primary);
}

/* INTERNET PLANS SECTION */
.plans-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}

.plan-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 35px 26px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-8px);
  border-color: var(--card-hover-border);
  box-shadow: 0 15px 35px rgba(0, 240, 255, 0.15);
}

.plan-card.popular {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-glow);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #000;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 4px 18px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-header {
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 22px;
  margin-bottom: 22px;
}

.plan-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.plan-speed {
  font-size: 2.6rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1;
  margin: 12px 0 5px 0;
}

.plan-speed span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.plan-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
  margin-top: 10px;
}

.plan-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.plan-features {
  margin-bottom: 25px;
  flex: 1;
}

.plan-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.plan-feat-item i {
  color: var(--primary);
  font-size: 1.1rem;
}

.plan-feat-item strong {
  color: var(--text-main);
}

/* SPEED TEST SECTION */
.speedtest-container {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.gauge-wrapper {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 15px auto 25px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gauge-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(from 180deg, var(--primary) 0deg, var(--secondary) 180deg, rgba(255,255,255,0.1) 180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  transition: all 0.3s ease;
}

.gauge-inner {
  width: 100%;
  height: 100%;
  background: #0d1322;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gauge-val {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.gauge-unit {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

.speed-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.metric-card {
  background: rgba(0, 0, 0, 0.3);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.metric-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.metric-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
}

/* WHY CHOOSE US / FEATURES SECTION */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.feature-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: var(--transition);
}

.feature-box:hover {
  transform: translateY(-5px);
  border-color: var(--card-hover-border);
  box-shadow: 0 10px 25px rgba(0, 240, 255, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.feature-box h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* COVERAGE & LOCATION SECTION */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.location-info-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.info-item-row {
  display: flex;
  gap: 18px;
  margin-bottom: 26px;
}

.info-item-row:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  flex-shrink: 0;
}

.info-details h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

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

.phone-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.05rem;
}

.phone-link:hover {
  text-decoration: underline;
  color: #fff;
}

.coverage-areas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.area-tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  height: 100%;
  min-height: 380px;
  box-shadow: var(--shadow-card);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  filter: grayscale(80%) invert(90%) contrast(1.2);
}

/* CONTACT US SECTION */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.98rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.25);
}

/* MAIN FOOTER */
.footer {
  background: #04070f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 50px 0 25px 0;
  margin-top: auto;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 35px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 15px;
  line-height: 1.6;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text-main);
}

.footer-links li {
  margin-bottom: 10px;
}

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

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.88rem;
  color: var(--text-dim);
}

/* ==========================================================================
   EXTRA DEVELOPER FOOTER LINE (NEW REQUIREMENT)
   ========================================================================== */
.developer-footer-bar {
  background: linear-gradient(90deg, #070a14 0%, #0d1326 50%, #070a14 100%);
  border-top: 1px solid rgba(0, 240, 255, 0.25);
  padding: 14px 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-main);
  position: relative;
  z-index: 10;
  box-shadow: 0 -4px 20px rgba(0, 240, 255, 0.1);
}

.dev-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.dev-credit-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.dev-name {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.3px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dev-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 240, 255, 0.12);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
}

.dev-phone-link:hover {
  background: var(--primary);
  color: #000;
  box-shadow: var(--shadow-glow);
}

/* FLOATING QUICK CALL & WHATSAPP BUTTONS */
.floating-actions {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.float-btn.whatsapp {
  background: #25D366;
}

.float-btn.phone {
  background: var(--gradient-primary);
  color: #000;
}

.float-btn:hover {
  transform: scale(1.1);
}

/* MODAL STYLES */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #0d1322;
  border: 1px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 35px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.3);
  position: relative;
  transform: scale(0.9);
  transition: var(--transition);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (MOBILE, TABLET, DESKTOP)
   ========================================================================== */
@media (max-width: 1100px) {
  .hero-content-grid {
    grid-template-columns: 1fr;
  }
  
  .location-grid, .contact-grid {
    grid-template-columns: 1fr;
  }

  .dev-footer-content {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0a0e1a;
    border-bottom: 1px solid var(--card-border);
    flex-direction: column;
    padding: 16px;
    display: none;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.8);
  }

  .nav-menu.mobile-open {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-heading {
    font-size: 2.4rem;
  }

  .section-title {
    font-size: 2.1rem;
  }

  .page-section {
    padding: 50px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .topbar-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .topbar-phones {
    width: 100%;
    justify-content: flex-start;
  }
  .phone-chip {
    font-size: 0.75rem;
    padding: 3px 8px;
  }
  .floating-actions {
    bottom: 15px;
    right: 15px;
  }
}
