/* ==========================================
   ROXUS - MAIN STYLESHEET
   ========================================== */

/* ===== RESET ===== */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}


/* ===== NAVBAR ===== */
.navbar {
  background-color: #031840 !important;
  border-bottom: 3px solid #2DD4BF;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background-color: rgba(3, 24, 64, 0.85) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar a {
  color: white !important;
}

.navbar-nav a:hover {
  transform: scale(1.2);
  color: #2DD4BF !important;
  transition: all 0.3s;
}

.navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}

.collapse {
  display: flex;
  justify-content: center;
}

.navbar-toggler {
  color: #2DD4BF !important;
}

.logo {
  margin-right: 5rem;
  width: 100px;
  height: 60px;
  position: relative;
}

.logo img {
  width: 150px;
  height: 150px;
  position: absolute;
  top: -50px;
}

/* ===== HERO ===== */
#vanta {
  width: 100%;
  height: 100vh;
  position: relative;
}

.hero-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero {
  text-align: center;
  color: white;
  max-width: 800px;
}

.hero h1 {
  font-size: 60px;
  margin-bottom: 20px;
  color: white;
  min-height: 80px;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.hero p {
  font-size: 22px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.4s;
}

/* ===== BUTON ===== */
.btn {
  background-color: #2DD4BF;
  border: 2px solid #2DD4BF;
  color: #031840;
  width: 250px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  padding: 12px 0;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #031840;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 0;
}

.btn:hover::before {
  transform: scaleX(1);
}

.btn:hover {
  color: #2DD4BF;
  border-color: #2DD4BF;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45, 212, 191, 0.25);
}

.btn span {
  position: relative;
  z-index: 1;
}

/* ===== WHATSAPP ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 26px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: waPulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.15);
  color: white;
}

/* ===== HİZMETLERİMİZ ===== */
.services-section {
  background-color: #020e28;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.06) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-tag {
  display: inline-block;
  background: rgba(45, 212, 191, 0.12);
  color: #2DD4BF;
  border: 1px solid rgba(45, 212, 191, 0.3);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.services-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.services-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 500px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  transition: all 0.35s ease;
  cursor: default;
}

.service-card:hover {
  background: rgba(45, 212, 191, 0.06);
  border-color: rgba(45, 212, 191, 0.35);
  transform: translateY(-6px);
}

.service-card.featured {
  border-color: rgba(45, 212, 191, 0.45);
  background: rgba(45, 212, 191, 0.07);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: #2DD4BF;
  color: #031840;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: rgba(45, 212, 191, 0.2);
  border-color: #2DD4BF;
}

.service-icon i {
  font-size: 22px;
  color: #2DD4BF;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.service-card > p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li i {
  color: #2DD4BF;
  font-size: 14px;
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2DD4BF;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.25s;
}

.service-link:hover {
  gap: 10px;
  color: #2DD4BF;
}

/* ===== TEKNOLOJİLER ===== */
.tech-section {
  background-color: #031840;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.tech-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.05) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  pointer-events: none;
}

.tech-header {
  text-align: center;
  margin-bottom: 60px;
}

.tech-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.tech-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 500px;
  margin: 0 auto;
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.tech-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  width: 120px;
  transition: all 0.3s ease;
  cursor: default;
}

.tech-card:hover {
  background: rgba(45, 212, 191, 0.08);
  border-color: rgba(45, 212, 191, 0.4);
  transform: translateY(-6px);
}

.tech-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: brightness(0.9);
}

.tech-card:hover img {
  transform: scale(1.15);
  filter: brightness(1);
}

.tech-card span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  transition: color 0.3s;
}

.tech-card:hover span {
  color: #2DD4BF;
}

.invert-logo {
  filter: invert(1) brightness(0.8);
}

.tech-card:hover .invert-logo {
  filter: invert(1) brightness(1);
}

.tech-card img[alt="Illustrator"],
.tech-card img[alt="Photoshop"] {
  filter: brightness(0) invert(1) opacity(0.85);
}

.tech-card:hover img[alt="Illustrator"],
.tech-card:hover img[alt="Photoshop"] {
  filter: brightness(0) invert(1) opacity(1);
}

/* ===== PORTFÖLİO ===== */
.portfolio-section {
  background-color: #020e28;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.portfolio-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.05) 0%, transparent 70%);
  bottom: -80px;
  right: -80px;
  pointer-events: none;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  padding: 8px 22px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
  background: rgba(45, 212, 191, 0.12);
  border-color: rgba(45, 212, 191, 0.4);
  color: #2DD4BF;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.portfolio-card:hover {
  border-color: rgba(45, 212, 191, 0.35);
  transform: translateY(-6px);
}

.portfolio-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.portfolio-img a {
  display: block;
  width: 100%;
  height: 100%;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-img img {
  transform: scale(1.07);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 24, 64, 0.75);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay span {
  color: #2DD4BF;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  border: 1px solid #2DD4BF;
  padding: 10px 24px;
  border-radius: 20px;
}

.portfolio-info {
  background: #031840;
  padding: 20px 22px;
}

.portfolio-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #2DD4BF;
  margin-bottom: 8px;
}

.portfolio-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.portfolio-info p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.portfolio-more {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, #031840 0%, #042460 50%, #031840 100%);
  padding: 100px 32px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(45, 212, 191, 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin: 16px 0 20px;
  line-height: 1.2;
}

.cta-highlight {
  color: #2DD4BF;
  position: relative;
}

.cta-highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #2DD4BF;
  border-radius: 2px;
}

.cta-content > p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.cta-btn-primary {
  width: 280px !important;
}

.cta-btn-secondary {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
}

.cta-btn-secondary:hover {
  color: #2DD4BF;
  gap: 10px;
}

.cta-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cta-stat strong {
  font-size: 32px;
  font-weight: 700;
  color: #2DD4BF;
}

.cta-stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.cta-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
}

/* ===== HAKKIMIZDA ===== */
.about-section {
  background-color: #031840;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.05) 0%, transparent 70%);
  top: -80px;
  left: -80px;
  pointer-events: none;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(45, 212, 191, 0.15);
}

.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-img-wrap:hover img {
  transform: scale(1.04);
}

.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(3, 24, 64, 0.9);
  border: 1px solid rgba(45, 212, 191, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.about-badge strong {
  font-size: 28px;
  font-weight: 700;
  color: #2DD4BF;
  line-height: 1;
}

.about-badge span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.about-card-float {
  position: absolute;
  top: 24px;
  right: -20px;
  background: rgba(3, 24, 64, 0.95);
  border: 1px solid rgba(45, 212, 191, 0.25);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-card-float i {
  font-size: 22px;
  color: #2DD4BF;
}

.about-card-float strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: white;
}

.about-card-float span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.about-content h2 {
  font-size: 40px;
  font-weight: 700;
  color: white;
  margin: 16px 0 20px;
  line-height: 1.2;
}

.about-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-reasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0 36px;
}

.about-reason {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.reason-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.about-reason:hover .reason-icon {
  background: rgba(45, 212, 191, 0.2);
  border-color: #2DD4BF;
}

.reason-icon i {
  font-size: 16px;
  color: #2DD4BF;
}

.about-reason h4 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.about-reason p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.about-btn {
  width: 240px !important;
}

/* ===== İLETİŞİM ===== */
.contact-section {
  background-color: #020e28;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.05) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  pointer-events: none;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px;
  transition: all 0.3s;
}

.contact-card:hover {
  border-color: rgba(45, 212, 191, 0.35);
  background: rgba(45, 212, 191, 0.05);
}

.contact-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.contact-card:hover .contact-icon {
  background: rgba(45, 212, 191, 0.2);
  border-color: #2DD4BF;
}

.contact-icon i {
  font-size: 18px;
  color: #2DD4BF;
}

.contact-card h4 {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-card a {
  font-size: 15px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-card a:hover {
  color: #2DD4BF;
}

.contact-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background: rgba(45, 212, 191, 0.1);
  border-color: rgba(45, 212, 191, 0.4);
  color: #2DD4BF;
  transform: translateY(-3px);
}

.contact-form-wrap {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 16px;
  color: white;
  font-size: 14px;
  transition: all 0.3s;
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(45, 212, 191, 0.5);
  background: rgba(45, 212, 191, 0.05);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.4)' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group select option {
  background: #031840;
  color: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-btn {
  width: 100% !important;
  margin-top: 4px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.3);
  border-radius: 10px;
  padding: 14px 18px;
  color: #2DD4BF;
  font-size: 14px;
  font-weight: 600;
}

.form-success.show {
  display: flex;
}

/* ===== FOOTER ===== */
.footer {
  background-color: #020c1f;
  border-top: 1px solid rgba(45, 212, 191, 0.15);
}

.footer-top {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand .footer-logo {
  width: 120px;
  margin-bottom: 20px;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-social:hover {
  background: rgba(45, 212, 191, 0.1);
  border-color: rgba(45, 212, 191, 0.4);
  color: #2DD4BF;
  transform: translateY(-3px);
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  color: white;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: #2DD4BF;
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a::before {
  content: '›';
  color: #2DD4BF;
  font-size: 16px;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s;
}

.footer-col ul li a:hover {
  color: #2DD4BF;
  padding-left: 6px;
}

.footer-col ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px !important;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-contact-list li i {
  color: #2DD4BF;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-list li a {
  color: rgba(255, 255, 255, 0.45) !important;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-list li a:hover {
  color: #2DD4BF !important;
}

.footer-contact-list li a::before {
  display: none !important;
}

.footer-contact-list li span {
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-heart {
  color: #2DD4BF;
}

/* ===== ANİMASYONLAR ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .services-grid       { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid      { grid-template-columns: repeat(2, 1fr); }
  .about-wrapper       { grid-template-columns: 1fr; gap: 50px; }
  .about-card-float    { right: 24px; }
  .about-img-wrap img  { height: 360px; }
  .about-content h2    { font-size: 32px; }
  .contact-wrapper     { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid         { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand        { grid-column: span 2; }
}

@media (max-width: 768px) {
  .cta-content h2 { font-size: 32px; }
  .cta-divider    { display: none; }
  .cta-stats      { gap: 24px; }
}

@media (max-width: 576px) {
  .services-grid        { grid-template-columns: 1fr; }
  .services-header h2   { font-size: 30px; }
  .tech-card            { width: 90px; padding: 20px 16px; }
  .tech-header h2       { font-size: 30px; }
  .portfolio-grid       { grid-template-columns: 1fr; }
  .about-reasons        { grid-template-columns: 1fr; }
  .form-row             { grid-template-columns: 1fr; }
  .contact-form-wrap    { padding: 24px; }
  .footer-grid          { grid-template-columns: 1fr; }
  .footer-brand         { grid-column: span 1; }
  .footer-bottom-inner  { flex-direction: column; text-align: center; }
}