/* Aigocy Design System - Modern AI Agency Look */
:root {
  --primary-color: #00b074; /* Marka Yeşili */
  --secondary-color: #E3F2FD; /* Açık Mavi Arka Plan (Sky Blue) */
  --accent-color: #0077B6; /* Vurgu Mavisi */
  --bg-light: #F8FAFC;
  --bg-card: #ffffff;
  --text-main: #0F172A;
  --text-muted: #64748B;
  --border-subtle: rgba(226, 232, 240, 1);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --white: #ffffff;
}

/* Global Layout Overrides - Full Width / Tam Ekran */
.front-content {
    margin: 0 !important;
    max-width: none !important;
    width: 100% !important;
    padding: 0 !important;
    padding-top: 130px !important; /* Header ve Topbar yüksekliği toplamı */
}

.main-header {
    background: #fff;
    width: 100%;
    z-index: 10000;
}

/* Adjust Section Containers to be Fluid across the whole Aigocy Page */
.aigocy-page .container {
    max-width: none !important;
    width: 100% !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
}

.aigocy-page {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-light);
  width: 100%;
  overflow-x: hidden;
}

/* Base Utility */
.section-padding { padding: 100px 0; }
.bg-theme-light { background-color: var(--secondary-color); }
.text-gradient {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hero Section */
.aigocy-hero {
  min-height: 100vh; /* Full Height */
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 70% 30%, rgba(0, 176, 116, 0.1), transparent 40%),
              radial-gradient(circle at 20% 80%, rgba(0, 119, 182, 0.1), transparent 40%),
              var(--bg-light);
}

.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

/* Modern Buttons (Aigocy Style) */
.btn-aigocy {
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-aigocy-primary {
  background: var(--text-main);
  color: var(--white);
}

.btn-aigocy-primary:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 176, 116, 0.2);
}

/* About Section Cards */
.about-card {
  padding: 40px;
  border-radius: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 40px rgba(0,0,0,0.02);
  transition: all 0.4s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

/* Services (Accordion) */
.aigocy-accordion .accordion-item {
  border: none;
  background: transparent;
  margin-bottom: 24px;
}

.aigocy-accordion .accordion-button {
  background: var(--bg-card);
  border-radius: 20px !important;
  border: 1px solid var(--border-subtle);
  font-weight: 700;
  padding: 28px;
  font-size: 1.1rem;
}

.aigocy-accordion .accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background: var(--bg-card);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 176, 116, 0.1);
}

/* Swiper Featured Work Custom */
.work-item {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.work-item:hover .work-overlay { opacity: 1; }

/* Benefits (Branching Lines) */
.benefits-center {
  width: 120px;
  height: 120px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  z-index: 10;
  position: relative;
  box-shadow: 0 0 30px rgba(0, 176, 116, 0.3);
}

.benefit-card {
  padding: 30px;
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  position: relative;
  z-index: 5;
}

/* Premium Footer */
.premium-footer {
  background: var(--text-main);
  color: white;
  padding: 120px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer-form {
  padding: 60px;
  background: rgba(255,255,255,0.03);
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.06);
}

.footer-social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-social-btn:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

/* Panel & Front Content Visibility Fix */
.front-content {
    color: #0F172A; /* Slate 900 */
}

.panel-container, .panel-page-title, .front-content h1, .front-content h2, .front-content h3, .front-content h4 {
    color: #0F172A !important;
}

.text-muted {
    color: #64748B !important; /* Slate 500 */
}
