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

:root {
  --bg-color: #0b0c10;
  --surface-color: #1f2833;
  --primary-color: #f5a623; /* Gold/Orange */
  --primary-hover: #f7b74f;
  --text-main: #c5c6c7;
  --text-light: #ffffff;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
}

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

h1, h2, h3, h4 {
  color: var(--text-light);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

/* NAVBAR */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(11, 12, 16, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 5%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
}

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

.nav-links a:hover {
  color: var(--primary-color);
}

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

.nav-links a.active {
  color: var(--primary-color);
}

/* BUTONLAR */
.btn {
  display: inline-block;
  background: var(--primary-color);
  color: var(--bg-color);
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(245, 166, 35, 0.3);
}

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

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--bg-color);
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 0 5%;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(11,12,16,0.3) 0%, rgba(11,12,16,0.9) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

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

.hero-content h1 {
  font-size: 56px;
  margin-bottom: 20px;
  animation: fadeUp 1s ease-out forwards;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 1s ease-out 0.3s forwards;
}

.hero-cta {
  opacity: 0;
  animation: fadeUp 1s ease-out 0.6s forwards;
}

/* SECTION CHUNKS */
.section {
  padding: 100px 5%;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 15px;
  color: var(--text-light);
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* SERVICES CARDS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--surface-color);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.service-icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 15px;
  opacity: 0.8;
}

/* DETAILED SERVICES (For Services Page) */
.detailed-service {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}

.detailed-service:nth-child(even) {
  flex-direction: row-reverse;
}

.detailed-service-img {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.detailed-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.detailed-service:hover .detailed-service-img img {
  transform: scale(1.05);
}

.detailed-service-content {
  flex: 1;
}

.detailed-service-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.detailed-service-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

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

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.about-features {
  margin-top: 30px;
}

.feature-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.feature-icon {
  color: var(--primary-color);
  font-size: 24px;
}

/* CONTACT */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background: var(--surface-color);
  border-radius: var(--border-radius);
  padding: 50px;
}

.contact-info h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  font-size: 18px;
}

.contact-detail i {
  color: var(--primary-color);
  font-size: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: rgba(11, 12, 16, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 16px;
  transition: var(--transition);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
  z-index: 100;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.5);
}

/* FOOTER */
footer {
  background: #000;
  padding: 40px 5%;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer p {
  opacity: 0.6;
}

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

.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
.menu-toggle {
  display: none;
  color: var(--text-light);
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: var(--surface-color);
    padding: 20px 0;
    text-align: center;
    gap: 20px;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: var(--transition);
  }
  
  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero-content h1 { font-size: 40px; }
  .detailed-service { flex-direction: column !important; gap: 30px; }
  .about-grid, .contact-container { grid-template-columns: 1fr; }
  .contact-container { padding: 30px; }
}

/* DRONE CURSOR FOLLOWER */
.cursor-drone {
  position: fixed;
  top: 0;
  left: 0;
  font-size: 24px;
  color: var(--primary-color);
  pointer-events: none; /* Ignore clicks */
  z-index: 9999;
  transform: translate(-50%, -50%); /* Centering */
  transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), top 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.1s ease-out; /* Smoothing and slower lag */
  text-shadow: 0 0 10px rgba(245, 166, 35, 0.5);
}
