/* ==========================================================================
   Uydusat - Premium Corporate Styles
   ========================================================================== */

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

:root {
  /* Premium Dark Theme Colors */
  --bg-primary: #121418;
  --bg-secondary: #1a1c23;
  --bg-glass: rgba(26, 28, 35, 0.7);
  --bg-glass-hover: rgba(42, 45, 52, 0.9);
  
  --text-primary: #ffffff;
  --text-secondary: #a0aab2;
  
  --accent-color: #FF9F1C; /* Vibrant Orange for attention */
  --accent-hover: #F4A261;
  --border-color: rgba(255, 255, 255, 0.08);
  
  --gradient-accent: var(--accent-color);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: none;
  --shadow-lg: none;
  --radius: 4px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

.section {
  padding: 100px 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
  display: inline-block;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--accent-color);
  color: #fff;
  box-shadow: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--accent-hover);
  box-shadow: none;
}

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

.btn-outline:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-color);
  padding: 15px 0;
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--accent-color);
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-color);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--bg-secondary);
  min-width: 280px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  top: 100%;
  left: 0;
  overflow: hidden;
}

.dropdown-content a {
  color: var(--text-primary);
  padding: 15px 20px;
  text-decoration: none;
  display: block;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-color);
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background-color: rgba(255, 159, 28, 0.1);
  color: var(--accent-color);
  padding-left: 25px;
}

.dropdown-content a::after {
  display: none;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
}

/* Hero Slider */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
}

.slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 20, 24, 0.75);
}

/* Ensure images paths are correct in JS/HTML */

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.3s;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.5s;
}

.hero-content .hero-btns {
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.7s;
  display: flex;
  gap: 15px;
}

.slide.active ~ .hero-content h1,
.slide.active ~ .hero-content p,
.slide.active ~ .hero-content .hero-btns {
  transform: translateY(0);
  opacity: 1;
}

/* This targets the content dynamically via JS */
.slide-content-wrapper.active h1,
.slide-content-wrapper.active p,
.slide-content-wrapper.active .hero-btns {
  transform: translateY(0);
  opacity: 1;
}

.slider-controls {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  display: flex;
  gap: 15px;
}

.control-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.control-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.slider-dots {
  position: absolute;
  bottom: 50px;
  left: 20px;
  z-index: 10;
  display: flex;
  gap: 10px;
}

/* Home Intro Section */
.home-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Grid Layouts */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* Cards */
.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 40px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: var(--shadow-lg);
}

.card:hover::before {
  opacity: 0.03;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 159, 28, 0.1);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-color);
  font-size: 1.8rem;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.card:hover .card-icon {
  background: var(--accent-color);
  color: #fff;
}

.card-content {
  position: relative;
  z-index: 1;
}

.card-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.card-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Page Headers */
.page-header {
  padding: 150px 0 80px;
  background: var(--bg-secondary);
  position: relative;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 159, 28, 0.05);
  pointer-events: none;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
}

.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  pointer-events: none;
}

.feature-list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-icon {
  color: var(--accent-color);
  font-size: 1.2rem;
}

/* Services Detailed Page */
.service-detail-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 50px;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  transition: var(--transition);
}

.service-detail-card:hover {
  border-color: rgba(255, 159, 28, 0.3);
}

.sd-header .sd-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 159, 28, 0.1);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-color);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.sd-header h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.sd-header p {
  color: var(--accent-color);
  font-weight: 500;
}

.sd-features li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: var(--text-secondary);
}

.sd-features li strong {
  color: var(--text-primary);
}

.sd-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent-color);
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 159, 28, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-info-content h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact-info-content p {
  color: var(--text-secondary);
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  min-height: 400px;
  border: 1px solid var(--border-color);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
footer {
  background: #0a0b0d;
  padding: 80px 0 30px;
  border-top: 1px solid var(--border-color);
}

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

.footer-about p {
  color: var(--text-secondary);
  margin-top: 20px;
  max-width: 400px;
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

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

.footer-links ul li a {
  color: var(--text-secondary);
}

.footer-links ul li a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .service-detail-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-secondary);
    flex-direction: column;
    padding-top: 50px;
    transition: var(--transition);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .dropdown-content {
    position: static;
    display: none;
    background-color: transparent;
    box-shadow: none;
    border: none;
    min-width: 100%;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  .dropdown-content a {
    padding-left: 30px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
}


/* Floating Contact Widgets */
.floating-widgets {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-widget {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

.floating-widget:hover {
  transform: scale(1.1);
  color: white;
}

.floating-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  z-index: -1;
  animation: pulse-animation 2s infinite;
  opacity: 0.7;
}

.floating-widget.whatsapp {
  background: #25D366; /* WhatsApp Green */
}

.floating-widget.whatsapp::before {
  background: #25D366;
}

.floating-widget.phone {
  background: var(--accent-color); /* Theme Orange */
}

.floating-widget.phone::before {
  background: var(--accent-color);
  animation-delay: 1s;
}

@keyframes pulse-animation {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}

@media (max-width: 768px) {
  .floating-widgets {
    bottom: 20px;
    left: 20px;
  }
  .floating-widget {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

