/* ============================================
   AKSAZ ELEKTRİK - DARK THEME CSS
   Siyah-Sarı Kurumsal Tema
   ============================================ */

/* ============= CSS VARIABLES ============= */
:root {
  /* Primary Colors */
  --aksaz-black: #0D0D0D;
  --aksaz-dark: #1A1A1A;
  --aksaz-darker: #141414;
  --aksaz-gold: #FFD700;
  --aksaz-gold-light: #FFE44D;
  --aksaz-orange: #FFA500;
  --aksaz-white: #FFFFFF;
  --aksaz-gray: #888888;
  --aksaz-gray-light: #AAAAAA;
  --aksaz-gray-dark: #333333;

  /* Gradients */
  --aksaz-gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  --aksaz-gradient-dark: linear-gradient(180deg, #0D0D0D 0%, #1A1A1A 100%);
  --aksaz-gradient-glow: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);

  /* Shadows */
  --aksaz-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  --aksaz-shadow-gold: 0 0 30px rgba(255, 215, 0, 0.3);
  --aksaz-shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.3);

  /* Transitions */
  --aksaz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --aksaz-transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography */
  --aksaz-font: 'Outfit', 'Satoshi', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --section-padding-mobile: 60px 0;
}

/* ============= GLOBAL STYLES ============= */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body.aksaz-body {
  font-family: var(--aksaz-font);
  background-color: var(--aksaz-black);
  color: var(--aksaz-white);
  overflow-x: hidden;
  max-width: 100vw;
  overflow-x: hidden;
}

/* Selection */
::selection {
  background: var(--aksaz-gold);
  color: var(--aksaz-black);
}

/* ============= HEADER / NAVIGATION ============= */
.aksaz-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--aksaz-transition);
  background: transparent;
}

.aksaz-header.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 15px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.aksaz-header .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  position: relative;
}

/* Desktop: Logo bigger */
.aksaz-logo img {
  height: 85px;
  transition: var(--aksaz-transition);
}

.aksaz-header.scrolled .aksaz-logo img {
  height: 60px;
}

/* Desktop Navigation - Centered */
.aksaz-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.aksaz-nav-link {
  color: var(--aksaz-white);
  text-decoration: none;
  padding: 12px 20px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  border-radius: 30px;
  transition: var(--aksaz-transition);
  position: relative;
}

.aksaz-nav-link:hover,
.aksaz-nav-link.active {
  color: var(--aksaz-gold);
}

.aksaz-nav-link::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--aksaz-gold);
  border-radius: 2px;
  transition: var(--aksaz-transition);
}

.aksaz-nav-link:hover::after,
.aksaz-nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* CTA Button */
.aksaz-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--aksaz-transition);
  cursor: pointer;
  border: none;
}

.aksaz-btn-primary {
  background: var(--aksaz-gradient-gold);
  color: var(--aksaz-black);
  box-shadow: var(--aksaz-shadow-gold);
}

.aksaz-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
  color: var(--aksaz-black);
}

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

.aksaz-btn-outline:hover {
  background: var(--aksaz-gold);
  color: var(--aksaz-black);
}

/* Mobile Menu Button */
.aksaz-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.aksaz-menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--aksaz-white);
  border-radius: 2px;
  transition: var(--aksaz-transition);
}

.aksaz-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.aksaz-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.aksaz-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============= HERO SECTION ============= */
.aksaz-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--aksaz-gradient-dark);
  overflow: hidden;
  padding-top: 100px;
}

/* Animated Background */
.aksaz-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: var(--aksaz-gradient-glow);
  animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {

  0%,
  100% {
    opacity: 0.3;
    transform: rotate(0deg) scale(1);
  }

  50% {
    opacity: 0.6;
    transform: rotate(10deg) scale(1.1);
  }
}

/* Electric Lines Animation */
.aksaz-hero-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.aksaz-hero-lines::before,
.aksaz-hero-lines::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--aksaz-gold), transparent);
  opacity: 0.3;
  animation: electricLine 3s linear infinite;
}

.aksaz-hero-lines::before {
  left: 15%;
  animation-delay: 0s;
}

.aksaz-hero-lines::after {
  right: 25%;
  animation-delay: 1.5s;
}

@keyframes electricLine {
  0% {
    top: -100px;
    opacity: 0;
  }

  10% {
    opacity: 0.5;
  }

  90% {
    opacity: 0.5;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

.aksaz-hero-content {
  position: relative;
  z-index: 2;
}

.aksaz-hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--aksaz-gold);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.aksaz-hero-tagline i {
  font-size: 1.2rem;
}

.aksaz-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--aksaz-white);
}

.aksaz-hero-title span {
  color: var(--aksaz-gold);
  position: relative;
}

.aksaz-hero-title span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--aksaz-gold);
  opacity: 0.3;
  border-radius: 4px;
}

.aksaz-hero-desc {
  font-size: 1.15rem;
  color: var(--aksaz-gray-light);
  max-width: 550px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.aksaz-hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* Hero Stats */
.aksaz-hero-stats {
  display: flex;
  gap: 50px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.aksaz-hero-stat {
  text-align: left;
}

.aksaz-hero-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--aksaz-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.aksaz-hero-stat-text {
  font-size: 0.9rem;
  color: var(--aksaz-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Image */
.aksaz-hero-image {
  position: relative;
}

.aksaz-hero-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: var(--aksaz-shadow);
}

.aksaz-hero-image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--aksaz-gold);
  border-radius: 20px;
  opacity: 0.3;
  z-index: -1;
}

/* ============= SERVICES SECTION ============= */
.aksaz-services {
  padding: var(--section-padding);
  background: var(--aksaz-dark);
  position: relative;
}

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

.aksaz-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--aksaz-gold);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.aksaz-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--aksaz-white);
  margin-bottom: 20px;
}

.aksaz-section-title span {
  color: var(--aksaz-gold);
}

.aksaz-section-desc {
  font-size: 1.1rem;
  color: var(--aksaz-gray-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Service Cards - Main 5 Categories */
.aksaz-service-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.aksaz-service-card {
  background: var(--aksaz-darker);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: var(--aksaz-transition);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  text-decoration: none;
  display: block;
}

.aksaz-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--aksaz-gradient-gold);
  transform: scaleX(0);
  transition: var(--aksaz-transition);
}

.aksaz-service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.2);
  box-shadow: var(--aksaz-shadow-gold);
}

.aksaz-service-card:hover::before {
  transform: scaleX(1);
}

.aksaz-service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--aksaz-gold);
  transition: var(--aksaz-transition);
}

.aksaz-service-card:hover .aksaz-service-icon {
  background: var(--aksaz-gold);
  color: var(--aksaz-black);
  transform: scale(1.1);
}

.aksaz-service-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--aksaz-white);
  margin-bottom: 12px;
  transition: var(--aksaz-transition);
}

.aksaz-service-card:hover h4 {
  color: var(--aksaz-gold);
}

.aksaz-service-card p {
  font-size: 0.9rem;
  color: var(--aksaz-gray);
  line-height: 1.6;
  margin: 0;
}

/* ============= ALL SERVICES GRID ============= */
.aksaz-all-services {
  padding: var(--section-padding);
  background: var(--aksaz-black);
}

.aksaz-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.aksaz-services-category {
  background: var(--aksaz-dark);
  border-radius: 20px;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--aksaz-transition);
}

.aksaz-services-category:hover {
  border-color: rgba(255, 215, 0, 0.2);
}

.aksaz-category-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.aksaz-category-icon {
  width: 55px;
  height: 55px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--aksaz-gold);
}

.aksaz-category-header h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--aksaz-white);
  margin: 0;
}

.aksaz-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.aksaz-services-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--aksaz-gray-light);
  font-size: 0.95rem;
  transition: var(--aksaz-transition);
}

.aksaz-services-list li:last-child {
  border-bottom: none;
}

.aksaz-services-list li:hover {
  color: var(--aksaz-white);
  padding-left: 10px;
}

.aksaz-services-list li i {
  color: var(--aksaz-gold);
  font-size: 0.8rem;
  margin-top: 5px;
  flex-shrink: 0;
}

/* ============= ABOUT SECTION ============= */
.aksaz-about {
  padding: var(--section-padding);
  background: var(--aksaz-dark);
  position: relative;
  overflow: hidden;
}

.aksaz-about::before {
  content: 'AKSAZ';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
  white-space: nowrap;
}

.aksaz-about-content {
  position: relative;
  z-index: 2;
}

.aksaz-about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.aksaz-about-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: var(--aksaz-darker);
  border-radius: 15px;
  transition: var(--aksaz-transition);
}

.aksaz-about-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--aksaz-shadow-sm);
}

.aksaz-about-feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--aksaz-gold);
  flex-shrink: 0;
}

.aksaz-about-feature h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--aksaz-white);
  margin-bottom: 8px;
}

.aksaz-about-feature p {
  font-size: 0.9rem;
  color: var(--aksaz-gray);
  margin: 0;
  line-height: 1.6;
}

/* ============= CONTACT SECTION ============= */
.aksaz-contact {
  padding: var(--section-padding);
  background: var(--aksaz-black);
}

.aksaz-contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.aksaz-contact-info {
  padding-right: 40px;
}

.aksaz-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: var(--aksaz-dark);
  border-radius: 15px;
  transition: var(--aksaz-transition);
}

.aksaz-contact-item:hover {
  transform: translateX(10px);
  box-shadow: var(--aksaz-shadow-sm);
}

.aksaz-contact-item-icon {
  width: 55px;
  height: 55px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--aksaz-gold);
  flex-shrink: 0;
}

.aksaz-contact-item h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--aksaz-white);
  margin-bottom: 5px;
}

.aksaz-contact-item p,
.aksaz-contact-item a {
  font-size: 0.95rem;
  color: var(--aksaz-gray-light);
  margin: 0;
  text-decoration: none;
  transition: var(--aksaz-transition);
}

.aksaz-contact-item a:hover {
  color: var(--aksaz-gold);
}

/* Contact Form */
.aksaz-contact-form {
  background: var(--aksaz-dark);
  padding: 40px;
  border-radius: 20px;
}

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

.aksaz-form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--aksaz-white);
  margin-bottom: 8px;
}

.aksaz-form-control {
  width: 100%;
  padding: 15px 20px;
  background: var(--aksaz-darker);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--aksaz-white);
  font-size: 1rem;
  transition: var(--aksaz-transition);
}

.aksaz-form-control:focus {
  outline: none;
  border-color: var(--aksaz-gold);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.aksaz-form-control::placeholder {
  color: var(--aksaz-gray);
}

textarea.aksaz-form-control {
  min-height: 120px;
  resize: vertical;
}

/* ============= FOOTER ============= */
.aksaz-footer {
  background: var(--aksaz-darker);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.aksaz-footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.aksaz-footer-brand p {
  color: var(--aksaz-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 20px 0;
}

.aksaz-footer-social {
  display: flex;
  gap: 12px;
}

.aksaz-footer-social a {
  width: 45px;
  height: 45px;
  background: var(--aksaz-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aksaz-white);
  font-size: 1.1rem;
  transition: var(--aksaz-transition);
}

.aksaz-footer-social a:hover {
  background: var(--aksaz-gold);
  color: var(--aksaz-black);
  transform: translateY(-5px);
}

.aksaz-footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--aksaz-white);
  margin-bottom: 25px;
}

.aksaz-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.aksaz-footer-links a {
  color: var(--aksaz-gray);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--aksaz-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.aksaz-footer-links a:hover {
  color: var(--aksaz-gold);
  padding-left: 5px;
}

.aksaz-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
}

.aksaz-footer-bottom p {
  color: var(--aksaz-gray);
  font-size: 0.9rem;
  margin: 0;
}

/* ============= WHATSAPP FLOATING BUTTON ============= */
.aksaz-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
  transition: var(--aksaz-transition);
  text-decoration: none;
}

.aksaz-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
  color: white;
}

.aksaz-whatsapp::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: whatsappPulse 2s infinite;
  z-index: -1;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ============= RESPONSIVE DESIGN ============= */
@media (max-width: 1200px) {
  .aksaz-service-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .aksaz-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 991px) {
  :root {
    --section-padding: 80px 0;
  }

  .aksaz-nav {
    display: none;
  }

  .aksaz-menu-toggle {
    display: flex;
  }

  .aksaz-header .container-fluid {
    padding: 0 20px;
  }

  .aksaz-service-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .aksaz-about-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .aksaz-contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .aksaz-contact-info {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  :root {
    --section-padding: 60px 0;
  }

  .aksaz-hero {
    padding-top: 80px;
    text-align: center;
  }

  .aksaz-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .aksaz-hero-buttons {
    justify-content: center;
  }

  .aksaz-hero-stats {
    justify-content: center;
    gap: 30px;
  }

  .aksaz-hero-stat {
    text-align: center;
  }

  .aksaz-service-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .aksaz-services-grid {
    grid-template-columns: 1fr;
  }

  .aksaz-about-features {
    grid-template-columns: 1fr;
  }

  .aksaz-footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .aksaz-footer-social {
    justify-content: center;
  }

  .aksaz-footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .aksaz-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .aksaz-hero-title {
    font-size: 2rem;
  }

  .aksaz-section-title {
    font-size: 1.75rem;
  }

  .aksaz-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .aksaz-contact-form {
    padding: 25px;
  }
}

/* ============= MOBILE MENU OVERLAY ============= */
.aksaz-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 350px;
  height: 100vh;
  background: var(--aksaz-darker);
  z-index: 1001;
  transition: var(--aksaz-transition-slow);
  padding: 80px 30px 30px;
  overflow-y: auto;
}

.aksaz-mobile-menu.active {
  right: 0;
}

.aksaz-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--aksaz-transition);
}

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

.aksaz-mobile-close {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  background: var(--aksaz-dark);
  border: none;
  border-radius: 50%;
  color: var(--aksaz-white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--aksaz-transition);
}

.aksaz-mobile-close:hover {
  background: var(--aksaz-gold);
  color: var(--aksaz-black);
}

.aksaz-mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.aksaz-mobile-nav li {
  margin-bottom: 10px;
}

.aksaz-mobile-nav a {
  display: block;
  padding: 15px 20px;
  color: var(--aksaz-white);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 10px;
  transition: var(--aksaz-transition);
}

.aksaz-mobile-nav a:hover,
.aksaz-mobile-nav a.active {
  background: rgba(255, 215, 0, 0.1);
  color: var(--aksaz-gold);
}

/* ============= SCROLL TO TOP ============= */
.aksaz-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: var(--aksaz-dark);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aksaz-gold);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--aksaz-transition);
  z-index: 998;
}

.aksaz-scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.aksaz-scroll-top:hover {
  background: var(--aksaz-gold);
  color: var(--aksaz-black);
  transform: translateY(-5px);
}

@media (max-width: 767px) {
  .aksaz-scroll-top {
    bottom: 30px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}

/* ============= WHATSAPP FLOATING BUTTON ============= */
.aksaz-whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 55px;
  height: 55px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--aksaz-transition);
  z-index: 999;
}

.aksaz-whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  color: #fff;
}

.aksaz-whatsapp-float i {
  line-height: 1;
}

@media (max-width: 767px) {
  .aksaz-whatsapp-float {
    bottom: 20px;
    left: 20px;
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
  }
}

/* ============= PHONE FLOATING BUTTON ============= */
.aksaz-phone-float {
  display: none;
  /* Hidden on desktop */
  position: fixed;
  z-index: 999;
  width: 55px;
  height: 55px;
  background: var(--aksaz-gold);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--aksaz-black);
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
  transition: var(--aksaz-transition);
}

.aksaz-phone-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(255, 215, 0, 0.6);
  color: var(--aksaz-black);
}

.aksaz-phone-float i {
  line-height: 1;
}

@media (max-width: 767px) {
  .aksaz-phone-float {
    display: flex;
    bottom: 90px;
    /* 20px bottom + 55px whatsapp + 15px gap */
    left: 20px;
  }
}

/* ============= ANIMATIONS ============= */
[data-aos] {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Pulse animation for icons */
@keyframes iconPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* ============= LIGHTNING ANIMATIONS ============= */
/* Tagline lightning - subtle pulse */
.aksaz-lightning-anim {
  animation: lightningPulse 2s ease-in-out infinite;
}

@keyframes lightningPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

/* Hero title lightning flash */
.aksaz-lightning-flash {
  font-size: 0.6em;
  color: var(--aksaz-gold);
  margin-left: 10px;
  animation: lightningFlash 3s ease-in-out infinite;
  display: inline-block;
  vertical-align: middle;
}

@keyframes lightningFlash {

  0%,
  90%,
  100% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }

  92% {
    opacity: 1;
    transform: translateY(-5px) scale(1.3);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.4);
  }

  94% {
    opacity: 0.3;
    transform: translateY(0) scale(1);
  }

  96% {
    opacity: 1;
    transform: translateY(-3px) scale(1.2);
    text-shadow: 0 0 30px rgba(255, 215, 0, 1), 0 0 60px rgba(255, 215, 0, 0.6);
  }

  98% {
    opacity: 0.5;
  }
}

.aksaz-service-icon:hover {
  animation: iconPulse 0.5s ease;
}