/* Google Ads Sayfası Özel Stilleri */

/* Hero Section - Google Ads Temalı */
.ads-hero {
  background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #fbbc04 100%);
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.ads-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.floating-circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.circle-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.circle-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.circle-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.ads-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  text-align: left;
}

.ads-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.ads-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ads-title-gradient {
  background: linear-gradient(45deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ads-description {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.ads-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.btn-ads-primary {
  background: white;
  color: #4285f4;
  padding: 18px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-ads-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #34a853;
  text-decoration: none;
}

.btn-ads-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
}

.btn-ads-secondary:hover {
  background: white;
  color: #4285f4;
  text-decoration: none;
}

.ads-animation {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ads-dashboard {
  width: 300px;
  height: 400px;
  background: #ffffff;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: dashboard-float 3s ease-in-out infinite;
  overflow: hidden;
}

.dashboard-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #f8fafc, #e2e8f0);
  border-radius: 20px;
  position: relative;
  padding: 30px 20px;
}

.screen-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  height: 100%;
}

.google-logo {
  margin-bottom: 20px;
}

.performance-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
}

.performance-card {
  background: linear-gradient(135deg, #4285f4, #34a853);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  color: white;
  box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
}

.performance-value {
  display: block;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.performance-label {
  display: block;
  font-size: 14px;
  opacity: 0.9;
  font-weight: 600;
}

.floating-ads-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-ads-icons i {
  position: absolute;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.8);
  animation: iconFloat 8s ease-in-out infinite;
}

.floating-ads-icons i:nth-child(1) {
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.floating-ads-icons i:nth-child(2) {
  top: 30%;
  right: -15%;
  animation-delay: 1s;
}

.floating-ads-icons i:nth-child(3) {
  bottom: 40%;
  left: -20%;
  animation-delay: 2s;
}

.floating-ads-icons i:nth-child(4) {
  bottom: 20%;
  right: -10%;
  animation-delay: 3s;
}

.floating-ads-icons i:nth-child(5) {
  top: 60%;
  left: -15%;
  animation-delay: 4s;
}

.floating-ads-icons i:nth-child(6) {
  top: 80%;
  right: -20%;
  animation-delay: 5s;
}

@keyframes dashboard-float {
  0%,
  100% {
    transform: translateY(0px) rotate(2deg);
  }
  50% {
    transform: translateY(-15px) rotate(-2deg);
  }
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-20px) translateX(10px);
    opacity: 0.9;
  }
  50% {
    transform: translateY(-10px) translateX(-15px);
    opacity: 0.7;
  }
  75% {
    transform: translateY(-25px) translateX(5px);
    opacity: 0.8;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .ads-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .ads-title {
    font-size: 2.5rem;
  }

  .ads-description {
    font-size: 1.1rem;
  }

  .ads-dashboard {
    width: 250px;
    height: 350px;
  }

  .ads-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .ads-title {
    font-size: 2rem;
  }

  .ads-description {
    font-size: 1rem;
  }

  .ads-dashboard {
    width: 200px;
    height: 300px;
  }

  .performance-card {
    padding: 15px;
  }

  .performance-value {
    font-size: 20px;
  }

  .btn-ads-primary,
  .btn-ads-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* Hero Content */
.ads-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* Badge */
.ads-badge {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Title */
.ads-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.ads-title-gradient {
  background: linear-gradient(45deg, #ffd700, #ffa500, #ff6b35, #f7931e);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
  font-weight: 900;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Description */
.ads-description {
  font-size: 1.3rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.ads-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-ads-primary {
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: #1a1a1a;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-ads-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
  background: linear-gradient(135deg, #ffa500, #ffd700);
  color: #1a1a1a;
  text-decoration: none;
}

.btn-ads-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-ads-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
}

/* Performance Cards */
.performance-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.performance-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.performance-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.performance-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffd700;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.performance-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Google Ads Specific Icons */
.google-ads-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4285f4, #34a853);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 2rem;
  box-shadow: 0 10px 30px rgba(66, 133, 244, 0.3);
}

/* Campaign Type Cards */
.campaign-type-card {
  background: white;
  padding: 40px 30px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.campaign-type-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4285f4, #34a853, #fbbc04, #ea4335);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.campaign-type-card:hover::before {
  transform: scaleX(1);
}

.campaign-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* ROI Section */
.roi-showcase {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 100px 0;
}

.roi-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.roi-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.roi-number {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: #ffd700;
  margin-bottom: 15px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.roi-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ads-title {
    font-size: 2.5rem;
  }

  .ads-description {
    font-size: 1.1rem;
  }

  .ads-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-ads-primary,
  .btn-ads-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .performance-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .floating-ads-icon {
    width: 40px;
    height: 40px;
  }

  .floating-ads-icon i {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .ads-hero {
    min-height: 90vh;
  }

  .ads-title {
    font-size: 2rem;
  }

  .ads-content {
    padding: 0 15px;
  }
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ads-content > * {
  animation: fadeInUp 0.8s ease-out forwards;
}

.ads-content > *:nth-child(1) {
  animation-delay: 0.1s;
}
.ads-content > *:nth-child(2) {
  animation-delay: 0.2s;
}
.ads-content > *:nth-child(3) {
  animation-delay: 0.3s;
}
.ads-content > *:nth-child(4) {
  animation-delay: 0.4s;
}
.ads-content > *:nth-child(5) {
  animation-delay: 0.5s;
}

.ads-title-gradient {
  background: linear-gradient(135deg, #fbbc04, #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ads-description {
  font-size: 1.3rem;
  color: #f3f4f6;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ads-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-ads-primary {
  background: linear-gradient(135deg, #4285f4, #ea4335);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
  font-size: 16px;
}

.btn-ads-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
  text-decoration: none;
  color: white;
}

.btn-ads-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 16px;
}

.btn-ads-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  text-decoration: none;
  color: white;
}

/* Performans Kartları - Kompakt */
.performance-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.performance-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
}

.performance-value {
  font-size: 2rem;
  font-weight: bold;
  color: #fbbc04;
  display: block;
  margin-bottom: 5px;
}

.performance-label {
  color: #f3f4f6;
  font-size: 0.9rem;
}

/* Yüzen Animasyonlar */
.floating-ads-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.floating-icon {
  position: absolute;
  font-size: 2rem;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-icon:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-icon:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Hizmet Kartları */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 60px 0;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ea4335, #4285f4);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(66, 133, 244, 0.15);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ea4335, #4285f4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 15px;
}

.service-description {
  color: #6b7280;
  line-height: 1.6;
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #1f2937;
}

.section-title-gradient {
  background: linear-gradient(135deg, #ea4335, #4285f4);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ads-title {
    font-size: 2.5rem;
  }

  .ads-description {
    font-size: 1.1rem;
  }

  .ads-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn-ads-primary,
  .btn-ads-secondary {
    width: 250px;
    justify-content: center;
  }

  .floating-icon {
    display: none;
  }

  .performance-card {
    padding: 15px 10px;
  }

  .performance-value {
    font-size: 1.8rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .ads-title {
    font-size: 2rem;
  }

  .performance-value {
    font-size: 1.5rem;
  }

  .btn-ads-primary,
  .btn-ads-secondary {
    width: 100%;
    max-width: 280px;
  }
}

/* Filter Section Styles */
.filter-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.2;
}

.filter-title-accent {
  background: linear-gradient(135deg, #4285f4, #34a853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.filter-subtitle {
  font-size: 1.3rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Google Ads Theme Button */
.btn-google-primary {
  background: linear-gradient(135deg, #4285f4, #34a853) !important;
  color: white !important;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-right: 20px;
  box-shadow: 0 4px 15px rgba(66, 133, 244, 0.4);
}

.btn-google-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.6);
  background: linear-gradient(135deg, #3367d6, #2e7d32) !important;
  color: white !important;
  text-decoration: none;
}
