/* ===========================
   YAMAN ATA HALFEOÄžULLARI HUKUK BÃœROSU
   =========================== */

/* CSS Variables */
:root {
  --gold: #c9a227;
  --dark: #0f1419;
  --light: #f5f4f0;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: #ffffff;
  color: #333333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.transition-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
  background: rgba(10, 10, 10, 0.98) !important;
  backdrop-filter: blur(15px) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3) !important;
  border-bottom: 2px solid #c9a227 !important;
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  transform: translateY(0) !important;
}

.transition-header.hidden {
  transform: translateY(-100%) !important;
}

.transition-header.visible {
  transform: translateY(0) !important;
}

.transition-header.scrolled {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5) !important;
  border-bottom: none !important;
  backdrop-filter: blur(20px) !important;
}

.site-header-bar {
  padding: 15px 0;
  border-bottom: none;
}

.site-header-bar.scrolled {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5) !important;
  border-bottom: none !important;
  backdrop-filter: blur(20px) !important;
}

/* Header */
#site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
  background: transparent !important;
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  transform: translateY(0) !important;
}

#site-header.hidden,
#site-header.header-hidden {
  transform: translateY(-100%) !important;
  opacity: 0;
  pointer-events: none;
}

#site-header.visible {
  transform: translateY(0) !important;
  opacity: 1;
  pointer-events: auto;
}

#site-header.scrolled {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5) !important;
  border-bottom: none !important;
  backdrop-filter: blur(20px) !important;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 20px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 100px;
  width: 100px;
  margin-right: 2px;
  border-radius: 50%;
  border: none;
  background: transparent;
  transition: all 0.3s ease;
  object-fit: cover;
}

.logo-img:hover {
  transform: scale(1.02);
}

.logo-text span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  transition: all 0.3s ease;
  margin-left: 10px;
}

.logo-text:hover span {
  color: #ffffff;
  transform: translateY(-1px);
}

.desktop-nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100vh;
  background: #000000;
  backdrop-filter: blur(20px);
  transition: left 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
  left: 0;
}

.mobile-nav-link {
  display: block;
  padding: 15px 20px;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}

.mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.mobile-menu-logo {
  text-align: center;
  margin-bottom: 70px;
  margin-top: 30px;
  padding-bottom: 20px;
  border-bottom: none;
}

.mobile-menu-logo img {
  max-width: 150px;
  height: auto;
  object-fit: contain;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-background.webp') center/cover no-repeat;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}



.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 25, 0.7);
  z-index: 1;
}

.hero-overlay.hero-overlay--video {
  background: rgba(15, 20, 25, 0.38);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: left;
  color: #ffffff;
  padding: 0;
  width: 100%;
}

.hero-inner {
  margin-left: 0;
  padding-left: 0;
  text-align: left;
}

.hero-label {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-title .gold {
  color: var(--gold);
}

.hero-quote {
  max-width: 600px;
  margin: 40px 0 0 0;
  border-left: 3px solid var(--gold);
  padding-left: 40px;
  text-align: left;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.hero-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 10px;
}

.hero-quote footer {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-style: normal;
  font-weight: 400;
  margin-top: 5px;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
}

.hero-scroll-arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: 24px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* About Section */
.about-section {
  background: #ffffff;
  padding: 80px 0 80px 0;
}

.about-top-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 40px;
  display: none;
}

.section-label {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 15px;
  margin-top: -80px !important;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  margin-top: -60px;
  margin-bottom: 10px;
}

.gold-bar {
  display: none;
}

.practice-section .gold-bar {
  display: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  padding: 0;
  margin: 0;
}

.about-text {
  text-align: left;
  padding: 0;
  margin: 0px 0 0 0;
}

.about-image {
  display: flex;
  justify-content: flex-end;
}

.about-image-img {
  width: 95%;
  max-height: 750px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.about-image-img:hover {
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.9), 
              0 0 100px rgba(0, 0, 0, 0.7),
              0 0 150px rgba(0, 0, 0, 0.5),
              0 0 200px rgba(0, 0, 0, 0.3);
  transform: scale(1.02);
}

.about-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.stat-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--light);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-value {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 14px;
  color: var(--dark);
  font-weight: 500;
}

/* Practice Areas Section - Orijinal */
.practice-section { 
  background: #ffffff; 
  padding-top: 2rem;
  margin-top: -120px;
}

.practice-section .section-title.dark { color: var(--dark); }

.practice-container { 
  max-width: 1200px; 
  padding: 0 1rem; 
  margin: 0 auto;
  text-align: center;
}

.practice-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 350px) !important;
  gap: 1.5rem !important;
  padding: 2rem 0 !important;
  justify-content: center !important;
  max-width: 1200px;
  margin: 0 auto;
}

.practice-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: -30px;
}

.practice-col:nth-child(1) {
  transform: translateX(80px);
}

.practice-col:nth-child(2) {
  transform: translateX(300px);
}

.area-card {
  cursor: pointer !important;
  opacity: 0 !important;
  transform: translateY(40px) !important;
  transition: opacity 0.7s ease, transform 0.7s ease !important;
  height: 600px !important;
  width: 100% !important;
  margin-bottom: 2rem;
  position: relative !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
  background: #ffffff !important;
}

.area-card.in-view { 
  opacity: 1 !important; 
  transform: none !important; 
}

.area-card-normal { 
  height: 600px !important; 
}

.area-card-tall   { 
  height: 600px !important; 
}

@media (min-width: 768px) {
  .area-card-normal { height: 600px !important; }
  .area-card-tall   { height: 600px !important; }
}

.area-card-inner {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}


.area-card-inner.flipped {
  transform: rotateY(180deg);
}

.area-card:hover {
  box-shadow: 0 0 30px rgba(201, 162, 39, 0.6), 
              0 0 60px rgba(201, 162, 39, 0.4),
              0 0 90px rgba(201, 162, 39, 0.2),
              0 0 120px rgba(201, 162, 39, 0.1);
  transform: translateY(-5px);
}

.area-front {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  flex-direction: column;
}

.area-front-button {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.area-front-button .btn-detail {
  display: inline-block !important;
  padding: 12px 24px !important;
  background: linear-gradient(135deg, #c9a227 0%, #f4d03f 50%, #c9a227 100%) !important;
  color: #000000 !important;
  text-decoration: none !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  border: 2px solid #c9a227 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3) !important;
  position: relative !important;
  z-index: 10 !important;
}

.area-front-button .btn-detail:hover {
  background: linear-gradient(135deg, #f4d03f 0%, #c9a227 50%, #f4d03f 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.5), 0 0 20px rgba(201, 162, 39, 0.3) !important;
}

.area-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.area-back-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.area-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: rotateY(180deg);
  border: 2px solid rgba(201,162,39,0.3);
  display: flex;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 2rem;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.2);
}

.area-back-button {
  pointer-events: auto !important;
  position: relative !important;
  z-index: 9999 !important;
}

.area-back-button .btn-detail {
  pointer-events: auto !important;
  position: relative !important;
  z-index: 9999 !important;
}

.area-dark-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  pointer-events: none;
}

.area-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  pointer-events: none;
}

.area-title {
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0;
  position: absolute;
  top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.area-title.center {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  z-index: 3;
  white-space: nowrap;
  max-width: 95%;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 1rem;
}

.area-back-title {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  z-index: 3;
  white-space: nowrap;
  max-width: 95%;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 1rem;
}

.area-back-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-height: 80%;
  overflow-y: auto;
  padding-top: 17rem;
}

.area-back-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.area-back-list li {
  color: #ffffff;
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.4;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  border-radius: 6px;
  margin-right: 0.5rem;
}

.area-back-list li:hover {
  background: #c9a227;
  color: #000;
}

.area-back-button {
  margin-top: auto;
  width: 100%;
  position: relative;
  z-index: 9999 !important;
  pointer-events: auto !important;
}

.area-back-button:hover {
  pointer-events: auto !important;
}

.area-back-button a {
  pointer-events: auto !important;
  position: relative !important;
  z-index: 99999 !important;
}

/* Butonun Ã¼zerine gelince kartÄ±n flip olmasÄ±nÄ± engelle */
.area-back-button:hover,
.area-back-button a:hover {
  transform: none !important;
}

.area-back:hover .area-card-inner {
  transform: rotateY(180deg);
}

.btn-detail {
  display: inline-block !important;
  padding: 12px 24px !important;
  background: linear-gradient(135deg, #c9a227 0%, #f4d03f 50%, #c9a227 100%) !important;
  color: #000000 !important;
  text-decoration: none !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3) !important;
  border: 2px solid #c9a227 !important;
  position: relative !important;
  z-index: 99999 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}

.btn-detail:hover {
  background: linear-gradient(135deg, #f4d03f 0%, #c9a227 50%, #f4d03f 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.5), 0 0 20px rgba(201, 162, 39, 0.3);
  color: #000000;
}

.area-back-list li:before {
  content: "â–¸";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.practice-logo-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.practice-logo {
  width: 120px;
  height: auto;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.practice-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

.btn-consultation {
  display: inline-block;
  padding: 15px 30px;
  background: #2d5a3d;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  margin-top: -120px;
  box-shadow: 0 4px 15px rgba(45, 90, 61, 0.3);
}

.btn-consultation:hover {
  background: #1e3d2a;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(45, 90, 61, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
    top: 0;
    height: 100vh;
  }
  
  .about-image {
    justify-content: center;
    order: 2;
  }
  
  .about-image-img {
    width: 100%;
    height: 600px;
    object-fit: contain;
  }
  
  .hero-content {
    padding: 0 20px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .transition-header {
    padding: 10px 15px !important;
    justify-content: flex-start !important;
  }
  
  .logo-link {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .logo-img {
    height: 110px !important;
    width: 110px !important;
    margin-right: 10px !important;
  }
  
  .logo-text {
    font-size: 12px !important;
    line-height: 1.1 !important;
    margin-top: 0 !important;
    text-align: left !important;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-text {
    order: 1;
  }
  
  .about-image {
    order: 2;
  }
  
  .practice-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    padding: 1rem !important;
    grid-template-columns: none !important;
  }
  
  .practice-col {
    transform: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    width: 100% !important;
  }
  
  .practice-col:nth-child(1),
  .practice-col:nth-child(2),
  .practice-col:nth-child(3) {
    transform: none !important;
    margin-left: 0 !important;
    position: static !important;
  }
  
  .practice-logo-separator {
    display: none;
  }
  
  .area-card {
    height: 200px;
    width: 100%;
    margin: 0;
  }
  
  .area-card-tall {
    height: 200px;
  }
}

/* Animations */
.fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.6s ease;
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.6s ease;
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Footer */
footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
  color: #ffffff;
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}

/* More specific rule to override any inline styles */
body footer.modern-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
  color: #ffffff !important;
}

/* Even more specific rule */
html body footer.modern-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
  color: #ffffff !important;
}

/* Force override any inline styles */
footer.modern-footer[style] {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
  color: #ffffff !important;
}

/* Universal rule to force footer background */
* [class*="modern-footer"] {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
  color: #ffffff !important;
}

/* Rule to override any element with modern-footer class */
.modern-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
  color: #ffffff !important;
}

/* Maximum specificity rule - this should override everything */
html body footer.modern-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
  color: #ffffff !important;
}

/* Even more specific - targeting the footer element directly */
footer#footer.modern-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
  color: #ffffff !important;
}

/* Force override with attribute selector */
footer[class="modern-footer"] {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
  color: #ffffff !important;
}

/* Maximum specificity with ID - this should override everything */
html body footer#main-footer.modern-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
  color: #ffffff !important;
}

/* Ultimate override rule */
footer#main-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
  color: #ffffff !important;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  animation: footerShine 8s infinite;
}

@keyframes footerShine {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.practice-section {
  background: #ffffff;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  margin-top: -180px;
}

.modern-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
  color: #ffffff;
  padding: 100px 0 50px;
  position: relative;
  overflow: hidden;
}

.modern-footer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9a227, transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.modern-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
  margin-top: 80px;
  position: relative;
  z-index: 2;
}

.footer-brand {
  animation: fadeInUp 0.8s ease-out;
}

.footer-section {
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.footer-section:nth-child(2) { animation-delay: 0.1s; }
.footer-section:nth-child(3) { animation-delay: 0.2s; }
.footer-section:nth-child(4) { animation-delay: 0.3s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-brand .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-brand .logo-link:hover {
  transform: translateY(-3px);
}

.footer-brand .logo-img {
  width: 80px !important;
  height: 80px !important;
  border-radius: 8px !important;
  margin-right: 15px !important;
  border: 4px solid #c9a227 !important;
  box-shadow: 0 0 30px #c9a227 !important;
  transform: scale(1.1) !important;
  transition: all 0.3s ease !important;
  object-fit: contain !important;
  background: transparent !important;
  filter: none !important;
}

.footer-brand .logo-link:hover .logo-img {
  border: 3px solid #c9a227 !important;
  box-shadow: 0 0 20px #c9a227 !important;
  transform: scale(1.05) !important;
  background: transparent !important;
  filter: none !important;
}

.footer-brand .logo-text {
  display: flex;
  flex-direction: column;
}

.footer-brand .logo-text span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #c9a227;
  line-height: 1.2;
}

.footer-brand .logo-text span:first-child {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.footer-brand .logo-text span:last-child {
  font-size: 1.0rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 2px;
  color: #c9a227;
}

.footer-description {
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a227;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

.social-link:hover {
  background: #c9a227;
  color: #0a0a0a;
  transform: translateY(-5px) rotate(360deg);
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  margin-top: -40px;
  position: relative;
  padding-bottom: 15px;
}

.footer-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: #c9a227;
  transition: all 0.3s ease;
}

.footer-section:hover .footer-title:after {
  width: 100px;
  left: 50%;
  transform: translateX(-50%);
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

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

.footer-link {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-link:before {
  content: 'â–¸';
  position: absolute;
  left: -15px;
  color: #c9a227;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #c9a227;
  transform: translateX(10px);
}

.footer-link:hover:before {
  opacity: 1;
  left: -10px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-item i {
  color: #c9a227;
  font-size: 0.8rem;
  margin-top: 2px;
  min-width: 20px;
}

.contact-text {
  display: flex;
  flex-direction: column;
}

.contact-text span {
  color: #b0b0b0;
  font-size: 0.8rem;
  line-height: 1.4;
}

.contact-link {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #c9a227;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.8rem;
}

.copyright .highlight {
  color: #c9a227;
  font-weight: 600;
}

.legal-links {
  display: flex;
  gap: 30px;
}

.legal-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  position: relative;
}

.legal-link:hover {
  color: #c9a227;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .modern-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
    color: #ffffff !important;
    padding: 250px 0 30px !important;
  }
  
  /* More specific rule to override any inline styles on mobile */
  body footer.modern-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
    color: #ffffff !important;
  }
  
  /* Even more specific rule */
  html body footer.modern-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
    color: #ffffff !important;
  }
  
  /* Force override any inline styles */
  footer.modern-footer[style] {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
    color: #ffffff !important;
  }
  
  /* Maximum specificity with ID for mobile */
  html body footer#main-footer.modern-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
    color: #ffffff !important;
  }
  
  /* Ultimate override rule for mobile */
  footer#main-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
    color: #ffffff !important;
  }
  
  /* Force footer content margin with maximum specificity */
  html body footer#main-footer .footer-content {
    margin-top: 120px !important;
  }
  
  footer#main-footer .footer-content {
    margin-top: 120px !important;
  }
  
  .modern-footer .footer-content {
    margin-top: 120px !important;
  }
  
  /* Fix footer title negative margin on mobile */
  .footer-title {
    margin-top: 0 !important;
  }
  
  html body footer#main-footer .footer-title {
    margin-top: 0 !important;
  }
  
  .modern-footer:before {
    display: block !important;
  }
  
  .footer-content {
    grid-template-columns: 1fr !important;
    gap: 30px;
    text-align: center;
    margin-top: 60px !important;
  }
  
  .footer-brand {
    order: 1;
    margin-bottom: 20px;
  }
  
  .footer-section {
    order: 2;
    margin-bottom: 20px;
  }
  
  .footer-section:last-child {
    margin-bottom: 0;
  }
  
  .social-links {
    justify-content: center;
    margin-top: 20px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
  
  .contact-item {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .modern-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
    color: #ffffff !important;
    padding: 250px 0 20px !important;
  }
  
  /* More specific rule to override any inline styles on mobile */
  body footer.modern-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
    color: #ffffff !important;
  }
  
  /* Even more specific rule */
  html body footer.modern-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
    color: #ffffff !important;
  }
  
  /* Force override any inline styles */
  footer.modern-footer[style] {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
    color: #ffffff !important;
  }
  
  /* Maximum specificity with ID for mobile */
  html body footer#main-footer.modern-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
    color: #ffffff !important;
  }
  
  /* Ultimate override rule for mobile */
  footer#main-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
    color: #ffffff !important;
  }
  
  /* Force footer content margin with maximum specificity */
  html body footer#main-footer .footer-content {
    margin-top: 120px !important;
  }
  
  footer#main-footer .footer-content {
    margin-top: 120px !important;
  }
  
  .modern-footer .footer-content {
    margin-top: 120px !important;
  }
  
  /* Fix footer title negative margin on mobile */
  .footer-title {
    margin-top: 0 !important;
  }
  
  html body footer#main-footer .footer-title {
    margin-top: 0 !important;
  }
  
  .modern-footer:before {
    display: block !important;
  }
  
  .footer-content {
    gap: 25px;
    margin-top: 60px !important;
  }
  
  .logo-link {
    flex-direction: column;
    text-align: center;
  }
  
  .logo-img {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  height: 50px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.footer-logo:hover img {
  filter: brightness(0) invert(1) sepia(1) saturate(100) hue-rotate(15deg);
}

.footer-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 16px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 40px;
}

.footer-copyright p {
  margin-bottom: 10px;
}

.footer-copyright a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-copyright a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 20px;
  }
  
  .footer-contact {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .footer-social {
    gap: 20px;
    margin-top: 15px;
  }
  
  .footer-social a {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

 
 / *   H a k k 1m 1z d a   b a _l 11n 1  y u k a r 1  k a y d 1r   -   ö z e l   k u r a l   * / 
 . a b o u t - s e c t i o n   . s e c t i o n - l a b e l   { 
     m a r g i n - t o p :   - 1 0 0 p x   ! i m p o r t a n t ; 
 } 
 
 
 
 / *   S o s y a l   m e d y a   l o g o l a r 1  -   a r k a   p l a n   v e   h o v e r   k a l d 1r 1l d 1  * / 
 . s o c i a l - l i n k   { 
     w i d t h :   4 0 p x   ! i m p o r t a n t ; 
     h e i g h t :   4 0 p x   ! i m p o r t a n t ; 
     b a c k g r o u n d :   t r a n s p a r e n t   ! i m p o r t a n t ; 
     b o r d e r :   n o n e   ! i m p o r t a n t ; 
     b o r d e r - r a d i u s :   5 0 %   ! i m p o r t a n t ; 
     d i s p l a y :   f l e x   ! i m p o r t a n t ; 
     a l i g n - i t e m s :   c e n t e r   ! i m p o r t a n t ; 
     j u s t i f y - c o n t e n t :   c e n t e r   ! i m p o r t a n t ; 
     t e x t - d e c o r a t i o n :   n o n e   ! i m p o r t a n t ; 
     f o n t - s i z e :   0 . 9 r e m   ! i m p o r t a n t ; 
 } 
 
 . s o c i a l - l i n k : h o v e r   { 
     b a c k g r o u n d :   t r a n s p a r e n t   ! i m p o r t a n t ; 
     b o r d e r :   n o n e   ! i m p o r t a n t ; 
     t r a n s f o r m :   n o n e   ! i m p o r t a n t ; 
     b o x - s h a d o w :   n o n e   ! i m p o r t a n t ; 
 } 
 
 . s o c i a l - l i n k [ h r e f * = ' i n s t a g r a m ' ]   s v g   { 
     f i l l :   u r l ( # i n s t a g r a m - g r a d i e n t )   ! i m p o r t a n t ; 
 } 
 
 
 
 / *   F o o t e r   s o s y a l   m e d y a   h o v e r   -   t a m a m e n   k a l d 1r   * / 
 . s o c i a l - l i n k : h o v e r , 
 . s o c i a l - l i n k : f o c u s , 
 . s o c i a l - l i n k : a c t i v e   { 
     b a c k g r o u n d :   t r a n s p a r e n t   ! i m p o r t a n t ; 
     b o r d e r :   n o n e   ! i m p o r t a n t ; 
     c o l o r :   i n h e r i t   ! i m p o r t a n t ; 
     t r a n s f o r m :   n o n e   ! i m p o r t a n t ; 
     b o x - s h a d o w :   n o n e   ! i m p o r t a n t ; 
     o u t l i n e :   n o n e   ! i m p o r t a n t ; 
 } 
 
 / *   L i n k e d I n   h o v e r   k a l d 1r   * / 
 . s o c i a l - l i n k [ h r e f * = ' l i n k e d i n ' ] : h o v e r , 
 . s o c i a l - l i n k [ h r e f * = ' l i n k e d i n ' ] : f o c u s , 
 . s o c i a l - l i n k [ h r e f * = ' l i n k e d i n ' ] : a c t i v e   { 
     c o l o r :   # 0 0 7 7 B 5   ! i m p o r t a n t ; 
     b a c k g r o u n d :   t r a n s p a r e n t   ! i m p o r t a n t ; 
 } 
 
 