/**
* Lotus Nakliyat - Modern Dark Theme
* Modernized Version 2.0
*/

/*--------------------------------------------------------------
# General & Dark Theme Variables
--------------------------------------------------------------*/
:root {
  --primary-color: #7cc576;
  --primary-dark: #5fa959;
  --bg-dark: #0a0e27;
  --bg-darker: #060815;
  --bg-lighter: #1a1f3a;
  --text-light: #e0e0e0;
  --text-gray: #b0b0b0;
  --border-color: rgba(124, 197, 118, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-light);
  background-color: var(--bg-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: var(--text-light);
}

/* Modern Selection */
::selection {
  background: var(--primary-color);
  color: #fff;
}

::-moz-selection {
  background: var(--primary-color);
  color: #fff;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--bg-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 40px);
  left: calc(50% - 40px);
  border: 6px solid rgba(124, 197, 118, 0.2);
  border-top: 6px solid var(--primary-color);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Back to Top Button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 996;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 5px 20px rgba(124, 197, 118, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(124, 197, 118, 0.6);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 30px;
}

/*--------------------------------------------------------------
# Header - Dark Theme
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s ease;
  z-index: 997;
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--border-color);
}

#header.header-scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
  background: rgba(6, 8, 21, 0.98);
}

#header .logo img {
  max-height: 50px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(124, 197, 118, 0.3));
}

#header .logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(124, 197, 118, 0.5));
}

/*--------------------------------------------------------------
# Navigation Menu - Dark Theme
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.5px;
}

.navbar a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 30px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  transition: width 0.3s ease;
}

.navbar a:hover::after,
.navbar .active::after {
  width: calc(100% - 30px);
}

.navbar a:hover,
.navbar .active,
.navbar li:hover > a {
  color: var(--primary-color);
}

/* Mobile Navigation */
.mobile-nav-toggle {
  background: linear-gradient(135deg, rgba(124, 197, 118, 0.1) 0%, rgba(124, 197, 118, 0.05) 100%);
  border: 1px solid rgba(124, 197, 118, 0.2);
  color: var(--text-light);
  font-size: 24px;
  cursor: pointer;
  display: none; /* Masaüstünde gizli */
  line-height: 1;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 8px 12px;
  z-index: 9998;
  position: relative;
  border-radius: 6px;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
}

.mobile-nav-toggle:hover {
  color: var(--primary-color);
  background: linear-gradient(135deg, rgba(124, 197, 118, 0.2) 0%, rgba(124, 197, 118, 0.1) 100%);
  border-color: rgba(124, 197, 118, 0.4);
  transform: scale(1.08);
  box-shadow: 0 4px 15px rgba(124, 197, 118, 0.2);
}

.mobile-nav-toggle:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.mobile-nav-toggle:active {
  transform: scale(0.98);
}

.mobile-nav-toggle i {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-nav-toggle.active i {
  transform: rotate(90deg);
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: flex;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(6, 8, 21, 0.99);
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(5px);
}

.navbar-mobile.navbar-mobile {
  opacity: 1;
  visibility: visible;
}

.navbar-mobile ul {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 85px;
  right: 20px;
  left: 20px;
  padding: 20px;
  background-color: var(--bg-lighter);
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(124, 197, 118, 0.1);
  max-height: calc(100vh - 150px);
  overflow-y: auto;
  animation: slideInDown 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-mobile a {
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text-light);
  display: block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-left: 3px solid transparent;
  margin: 4px 0;
}

.navbar-mobile a:hover {
  color: var(--primary-color);
  background: rgba(124, 197, 118, 0.15);
  border-left-color: var(--primary-color);
  padding-left: 25px;
}

.navbar-mobile a.active {
  color: var(--primary-color);
  background: rgba(124, 197, 118, 0.15);
  border-left-color: var(--primary-color);
}

/*--------------------------------------------------------------
# Hero Section - Modern Dark Design
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, #0d1128 100%);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 50%, rgba(124, 197, 118, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(124, 197, 118, 0.1) 0%, transparent 50%);
  top: -50%;
  left: -50%;
  animation: rotate 30s linear infinite;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-dark), transparent);
  z-index: 1;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

#hero .hero-container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 15px;
}

#hero .hero-logo {
  margin-bottom: 30px;
  animation: float 3s ease-in-out infinite;
}

#hero .hero-logo img {
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(124, 197, 118, 0.4));
  transition: all 0.3s ease;
}

#hero .hero-logo:hover img {
  transform: scale(1.1);
  filter: drop-shadow(0 15px 40px rgba(124, 197, 118, 0.6));
}

#hero h1 {
  margin: 0 0 20px 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: -1px;
}

#hero h2 {
  color: var(--text-gray);
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 20px;
}

#hero h2::after {
  content: '';
  display: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  border-radius: 2px;
  z-index: -1;
}

#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  padding: 16px 40px;
  border-radius: 50px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 5px 20px rgba(124, 197, 118, 0.4);
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#hero .btn-get-started * {
  position: relative;
  z-index: 2;
}

#hero .btn-get-started:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(124, 197, 118, 0.6);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

#hero .btn-get-started:active,
#hero .btn-get-started:focus {
  transform: translateY(-1px);
  outline: none;
}

#hero .btn-get-started i {
  font-size: 20px;
  position: relative;
  z-index: 2;
}

/* Floating Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsive Hero */
@media (max-width: 768px) {
  #hero h1 {
    font-size: 36px;
  }
  #hero h2 {
    font-size: 18px;
  }
  #hero .hero-logo img {
    max-width: 150px;
  }
  #hero .btn-get-started {
    padding: 10px 20px;
    font-size: 12px;
    letter-spacing: 0.3px;
    margin-top: 15px;
  }
  #hero .btn-get-started i {
    font-size: 14px;
    margin-right: 4px !important;
  }
}

/*--------------------------------------------------------------
# Sections General - Dark Theme
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.section-bg {
  background: var(--bg-darker);
}

.section-title {
  text-align: center;
  padding-bottom: 50px;
  position: relative;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  color: var(--text-light);
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-title p {
  margin-bottom: 0;
  color: var(--text-gray);
  font-size: 16px;
}

/*--------------------------------------------------------------
# About Us - Dark Theme
--------------------------------------------------------------*/
.about .image {
  padding: 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  border: 1px solid var(--border-color);
}

.about .image:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(124, 197, 118, 0.3);
  border-color: var(--primary-color);
}

.about .image img {
  transition: all 0.4s ease;
  width: 100%;
}

.about .image:hover img {
  transform: scale(1.05);
}

.about .content h3 {
  font-weight: 700;
  font-size: 30px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 15px 0;
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.about .content ul li:hover {
  padding-left: 10px;
  background: rgba(124, 197, 118, 0.05);
  border-radius: 8px;
}

.about .content ul li i {
  font-size: 24px;
  padding: 2px 15px 0 0;
  color: var(--primary-color);
  min-width: 40px;
}

.about .content p {
  line-height: 1.8;
  color: var(--text-gray);
}

/*--------------------------------------------------------------
# Services - Dark Theme
--------------------------------------------------------------*/
.services {
  background: var(--bg-darker);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(124, 197, 118, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: linear-gradient(135deg, var(--bg-lighter) 0%, rgba(26, 31, 58, 0.8) 100%);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(124, 197, 118, 0.2);
  border-color: var(--primary-color);
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.9) 0%, rgba(26, 31, 58, 0.7) 100%);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 36px;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(124, 197, 118, 0.2);
}

.service-card:hover .card-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 15px 40px rgba(124, 197, 118, 0.4);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--primary-color);
}

.service-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 20px;
  flex-grow: 1;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.benefits-list li {
  font-size: 13px;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.benefits-list li i {
  color: var(--primary-color);
  font-size: 16px;
  flex-shrink: 0;
}

.service-card:hover .benefits-list li {
  color: var(--text-light);
  padding-left: 8px;
}

.service-card:hover .benefits-list li i {
  transform: scale(1.2);
}

/* Old icon-box styles - kept for compatibility */
.services .icon-box {
  background: var(--bg-lighter);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.services .icon-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(124, 197, 118, 0.2);
  border-color: var(--primary-color);
}

.services .icon-box i {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: block;
}

.services .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-light);
}

.services .icon-box p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
}

.services .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/*--------------------------------------------------------------
# Featured - Dark Theme
--------------------------------------------------------------*/
.featured {
  padding: 60px 0;
  background: var(--bg-dark);
}

.featured .nav-tabs {
  border: 0;
}

.featured .nav-link {
  border: 0;
  padding: 20px;
  color: var(--text-light);
  transition: 0.3s;
  border-radius: 10px;
  margin-bottom: 10px;
  background: var(--bg-lighter);
  border: 1px solid var(--border-color);
}

.featured .nav-link:hover {
  background: rgba(124, 197, 118, 0.1);
  border-color: var(--primary-color);
}

.featured .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
  color: var(--text-light);
}

.featured .nav-link:hover h4,
.featured .nav-link.active h4 {
  color: var(--primary-color);
}

.featured .nav-link p {
  font-size: 14px;
  margin-bottom: 0;
  color: var(--text-gray);
}

.featured .nav-link.active {
  box-shadow: 0 5px 25px rgba(124, 197, 118, 0.2);
  border-color: var(--primary-color);
  background: rgba(124, 197, 118, 0.05);
}

.featured .tab-content img {
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color);
}

/*--------------------------------------------------------------
# Portfolio - Dark Theme
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-wrap {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color);
}

.portfolio .portfolio-wrap img {
  transition: all 0.5s ease;
  width: 100%;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: linear-gradient(135deg, rgba(124, 197, 118, 0.9), rgba(95, 169, 89, 0.9));
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.4s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  transition: all 0.4s ease;
  text-align: center;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.portfolio .portfolio-links a {
  color: #fff;
  margin: 0 5px;
  font-size: 32px;
  display: inline-block;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
}

.portfolio .portfolio-links a:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  transform: scale(1.2) rotate(10deg);
}

/*--------------------------------------------------------------
# Clients - Dark Theme
--------------------------------------------------------------*/
.clients {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-lighter) 100%);
  padding: 40px 0;
  text-align: center;
}

.clients img {
  width: 50%;
  filter: grayscale(80%) brightness(1.1);
  transition: all 0.4s ease;
  display: inline-block;
  padding: 15px 0;
}

.clients img:hover {
  filter: grayscale(0%) brightness(1.3);
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Contact - Dark Theme
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: var(--bg-lighter);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.contact .info:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(124, 197, 118, 0.3);
  border-color: var(--primary-color);
}

.contact .info i {
  font-size: 24px;
  color: #fff;
  float: left;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(124, 197, 118, 0.3);
}

.contact .info:hover i {
  transform: rotate(360deg) scale(1.1);
}

.contact .info h4 {
  padding: 0 0 0 70px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-light);
}

.contact .info p {
  padding: 0 0 0 70px;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--text-gray);
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.map-container {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color);
}

.map-container iframe {
  filter: invert(90%) hue-rotate(180deg) saturate(0.7) brightness(0.9);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.map-container:hover iframe {
  filter: invert(90%) hue-rotate(180deg) saturate(0.8) brightness(1);
}

/*--------------------------------------------------------------
# Footer - Dark Theme
--------------------------------------------------------------*/
#footer {
  background: var(--bg-darker);
  color: var(--text-light);
  font-size: 14px;
  position: relative;
  border-top: 1px solid var(--border-color);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  text-align: center;
}

#footer .footer-top .footer-logo img {
  height: 80px;
  filter: drop-shadow(0 5px 15px rgba(124, 197, 118, 0.3));
  margin-bottom: 20px;
}

#footer .footer-top h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-light);
  margin: 20px 0;
  letter-spacing: 1px;
}

#footer .footer-top p {
  font-size: 16px;
  margin: 20px 0;
  color: var(--text-gray);
}

#footer .social-links {
  margin-top: 30px;
}

#footer .social-links a {
  font-size: 20px;
  display: inline-block;
  background: rgba(124, 197, 118, 0.1);
  color: var(--primary-color);
  line-height: 1;
  padding: 12px 0;
  margin: 0 6px;
  border-radius: 50%;
  text-align: center;
  width: 48px;
  height: 48px;
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
}

#footer .social-links a:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #fff;
  transform: translateY(-5px) rotate(10deg);
  border-color: var(--primary-color);
  box-shadow: 0 10px 25px rgba(124, 197, 118, 0.4);
}

#footer .footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 30px 0;
  text-align: center;
}

#footer .copyright {
  font-size: 15px;
  color: var(--text-gray);
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: var(--text-gray);
}

#footer .credits a {
  color: var(--primary-color);
}

#footer .credits a:hover {
  color: var(--primary-dark);
}

/*--------------------------------------------------------------
# Modern Scrollbar - Dark
--------------------------------------------------------------*/
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 10px;
  border: 2px solid var(--bg-darker);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

/*--------------------------------------------------------------
# Utility Classes
--------------------------------------------------------------*/
.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Ripple Effect */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  animation: ripple-animation 0.6s ease-out;
  pointer-events: none;
  z-index: 0;
}

@keyframes ripple-animation {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* Buton içindeki ripple efekti için max boyut */
.btn-get-started .ripple {
  max-width: 200px;
  max-height: 200px;
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }

  .service-card {
    padding: 35px 25px;
  }
}

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

  .section-title h2 {
    font-size: 28px;
  }

  #header {
    height: 70px;
  }

  .services .image {
    min-height: 300px;
    margin-top: 30px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .service-card {
    padding: 30px 20px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .section-title h2 {
    font-size: 24px;
  }

  #hero h1 {
    font-size: 28px;
  }

  #hero h2 {
    font-size: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .service-card {
    padding: 25px 20px;
  }

  .service-card h3 {
    font-size: 16px;
  }

  .card-icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
    margin-bottom: 15px;
  }

  .benefits-list li {
    font-size: 12px;
  }
}

/* AOS Animation Enhancement */
[data-aos] {
  pointer-events: auto;
}

/* Mobile Action Buttons */
.mobile-action-buttons {
  display: none;
  gap: 15px;
  margin-top: 30px;
  justify-content: center;
  align-items: center;
}

.mobile-call-btn,
.mobile-whatsapp-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(124, 197, 118, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.mobile-call-btn {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: #fff;
}

.mobile-call-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
}

.mobile-whatsapp-btn {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
}

.mobile-whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
}

.mobile-call-btn:active,
.mobile-whatsapp-btn:active {
  transform: translateY(-1px) scale(0.98);
}

/* Mobil cihazlarda mobil butonları göster */
@media (max-width: 768px) {
  .mobile-action-buttons {
    display: flex;
  }
}

@media (max-width: 480px) {

  .mobile-call-btn,
  .mobile-whatsapp-btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .mobile-action-buttons {
    gap: 12px;
    margin-top: 25px;
  }
}

/* Print Styles */
@media print {
  #header,
  #footer,
  .back-to-top,
  #preloader,
  .mobile-action-buttons {
    display: none !important;
  }
}
