﻿/* ===== VARIABLES ===== */
:root {
  --gold: #d4af37;
  --dark-gold: #b8960f;
  --deep-blue: #0a2463;
  --vibrant-orange: #ff6b35;
  --corporate-dark: #0f0f0f;
  --corporate-gray: #1a1a1a;
  --white: #ffffff;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --text-primary: #ffffff;
  --text-secondary: #9ca3af;
  --transition: all 0.3s ease;
}

/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--corporate-dark);
  color: var(--text-primary);
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

button:hover,
a:hover,
select:hover {
  cursor: pointer !important;
}

body:has(button:hover, a:hover, select:hover) .cursor {
  display: none;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 15, 0.95),
    rgba(15, 15, 15, 0.85)
  );
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  min-width: fit-content;
  margin-right: 1.5rem;
  transition: transform var(--transition);
}

.navbar-home-link {
  text-decoration: none;
}

.navbar-logo:hover {
  transform: translateY(-2px);
}

.navbar-logo-img {
  height: 4rem;
  object-fit: contain;
  max-width: 200px;
  width: auto;
  padding: 0;
  margin: 0;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--corporate-dark);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.logo-text h1 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0;
}

.logo-text p {
  font-size: 0.625rem;
  color: var(--gray-500);
  margin: 0;
  letter-spacing: 0.05em;
}

.nav-menu li {
  display: flex;
  align-items: center;
}

.nav-menu {
  padding: 0.05rem 1.3rem;
  margin: 0;
  display: flex;
  flex-wrap: wrap;

  min-height: auto;

  align-items: center;
  justify-content: center;
  gap: 0.25rem;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 9999px;
  list-style: none;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.company-btn {
  padding: 0.6rem 0.95rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  font-size: 0.75rem;
  font-weight: 500;
  background: transparent;
  color: white;
  border: 1px solid transparent;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.kvkk {
  text-decoration: none;
  list-style: none;
  margin: 1rem;
}

.nav-menu .company-btn {
  min-width: 7rem;
  max-width: 11rem;
  height: 2.8rem;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-menu .company-btn::after {
  content: attr(data-label);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
}

.nav-menu .company-btn i {
  font-size: 0.95rem;
  margin-right: 0.5rem;
}

.nav-menu .company-btn .btn-label {
  display: inline;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.company-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.3);
  color: var(--gold);
  transform: translateY(-1px);
}

.company-btn:active {
  background: rgba(212, 175, 55, 0.2);
}

.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
  min-width: fit-content;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 0.35rem;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 999px;
  transition: all 0.3s ease;
}

#languageSelect {
  /* Dikey padding artД±rД±ldД± */
  padding: 0.5rem 1.3rem;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.08),
    rgba(212, 175, 55, 0.04)
  );
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0.5rem;
  color: var(--text-primary);

  font-size: 0.8125rem;
  font-weight: 500;
  transition: all var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4af37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  padding-right: 1.75rem;
}

.nav-menu li {
  display: flex;
  align-items: center;
}
#languageSelect:hover {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.12),
    rgba(212, 175, 55, 0.08)
  );
  border-color: rgba(212, 175, 55, 0.3);
}

#languageSelect:focus {
  outline: none;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.15),
    rgba(212, 175, 55, 0.1)
  );
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

#languageSelect option {
  background: var(--corporate-dark);
  color: var(--text-primary);
  padding: 0.5rem;
}

#languageSelect option:checked {
  background: var(--gold);
  color: var(--corporate-dark);
}

.lang-btn {
  padding: 0.5rem 1rem;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.08),
    rgba(212, 175, 55, 0.04)
  );
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0.5rem;
  color: var(--text-primary);

  font-size: 0.8125rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  width: 12rem;
  background: var(--corporate-gray);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.lang-dropdown.show {
  display: block;
}

.lang-option {
  width: 100%;
  padding: 0.75rem 1rem;
  text-align: left;
  border: none;
  background: transparent;
  color: var(--text-primary);

  font-size: 0.875rem;
  display: flex;
  align-items: center;
  display: inline-flex;
  transition: var(--transition);
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.1);
}
.nav-menu .company-btn::after {
  content: attr(data-label);
  color: inherit;
  font-weight: 500;
  font-size: 0.8125rem;
}

.admin-link {
  display: none;
  font-size: 0.875rem;
  color: var(--text-secondary);

  transition: var(--transition);
}

.admin-link:hover {
  color: var(--gold);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--gold);
  padding: 0.5rem;
  transition: all var(--transition);
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-btn:hover {
  transform: scale(1.1);
  color: var(--text-primary);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--corporate-dark) 0%,
    var(--corporate-gray) 50%,
    #000000 100%
  );
}

.hero-gradient {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.hero-gradient-1 {
  top: 5rem;
  left: 5rem;
  width: 24rem;
  height: 24rem;
  background: var(--gold);
  border-radius: 9999px;
  filter: blur(80px);
  animation: pulse 4s ease-in-out infinite;
}

.hero-gradient-2 {
  bottom: 5rem;
  right: 5rem;
  width: 24rem;
  height: 24rem;
  background: var(--deep-blue);
  border-radius: 9999px;
  filter: blur(80px);
  animation: pulse 4s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

.hero-title {
  font-family: "Zalando Sans Expanded", sans-serif;
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, var(--gold), var(--white), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.025em;
}

.hero-subtitle {
  font-size: 1.875rem;
  color: var(--gray-300);
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.hero-description {
  font-size: 1rem;
  color: var(--gray-400);
  max-width: 42rem;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.15);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-400);
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  color: var(--corporate-dark);
  font-weight: 600;
  font-size: 1.125rem;
  border: none;
  border-radius: 9999px;

  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  color: var(--gold);
  font-size: 1.5rem;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(0.5rem);
  }
}

/* ===== COMPANIES SECTION ===== */
.companies-section {
  padding: 6rem 1.5rem;
}

.section-container {
  max-width: 80rem;
  margin: 0 auto;
}

.section-title {
  font-family: "Zalando Sans Expanded", sans-serif;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}

.section-title .gold {
  color: var(--gold);
}

.section-subtitle {
  text-align: center;
  color: var(--gray-400);
  font-size: 1.125rem;
  margin-bottom: 5rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.company-card {
  overflow: hidden;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, var(--corporate-gray), #000000);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition);

  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
}

.company-card:hover {
  border-color: rgba(212, 175, 55, 0.6);
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

/* Architecture/MimarlД±k card - Blue-Gray theme */
.company-card:has(.company-icon.architecture) {
  border-color: rgba(142, 157, 178, 0.2);
}

.company-card:has(.company-icon.architecture):hover {
  border-color: rgba(142, 157, 178, 0.6);
  box-shadow: 0 20px 40px rgba(142, 157, 178, 0.3);
}

/* Engineering/Д°nЕџaat card - Gold theme */
.company-card:has(.company-icon.engineering) {
  border-color: rgba(212, 175, 55, 0.2);
}

.company-card:has(.company-icon.engineering):hover {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

/* Demolition card - Steel Blue theme */
.company-card:has(.company-icon.demolition) {
  border-color: rgba(74, 159, 212, 0.2);
}

.company-card:has(.company-icon.demolition):hover {
  border-color: rgba(74, 159, 212, 0.6);
  box-shadow: 0 20px 40px rgba(26, 95, 160, 0.35);
}

/* Emlak card - Green theme (Torem Emlak brand) */
.company-card:has(.company-icon.emlak) {
  border-color: rgba(64, 145, 108, 0.2);
}

.company-card:has(.company-icon.emlak):hover {
  border-color: rgba(64, 145, 108, 0.6);
  box-shadow: 0 20px 40px rgba(27, 67, 50, 0.35);
}

.company-icon {
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: transparent;
}

.company-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.company-card:hover .company-icon img {
  transform: scale(1.1);
}

.company-name {
  font-family: "Zalando Sans Expanded", sans-serif;
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.company-name.architecture {
  color: #8e9db2;
}

.company-name.engineering {
  color: #d4af37;
}

.company-name.demolition {
  color: #4a9fd4;
}

.company-name.emlak {
  color: #40916c;
}

.company-description {
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  line-height: 1.75;
  min-height: 5.5rem;
}

.company-features {
  list-style: none;
  space-y: 0.75rem;
}

.company-features li {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}

.company-features i {
  margin-right: 0.5rem;
  margin-top: 0.75rem;
}

.company-card .company-btn {
  font-size: 1rem;
  padding: 1rem 1.15rem;
  min-height: 3rem;
  gap: 0.6rem;
}

.company-card .company-btn i {
  font-size: 1.5rem;
}

.company-btn {
  width: 100%;
  padding: 0.75rem;
  background: transparent;
  border: 1px solid;
  border-radius: 0.75rem;
  font-weight: 600;
  margin: 0.5rem 0;
  transition: var(--transition);
}

.company-btn.architecture {
  border-color: rgba(142, 157, 178, 0.3);
  color: #8e9db2;
}

.company-btn.architecture:hover {
  background: #8e9db2;
  color: var(--white);
}

.company-btn.engineering {
  border-color: rgba(212, 175, 55, 0.3);
  color: #d4af37;
}

.company-btn.engineering:hover {
  background: #d4af37;
  color: var(--corporate-dark);
}

.company-btn.demolition {
  border-color: rgba(74, 159, 212, 0.3);
  color: #4a9fd4;
}

.company-btn.demolition:hover {
  background: #1a5fa0;
  color: var(--white);
}

.company-btn.emlak {
  border-color: rgba(64, 145, 108, 0.3);
  color: #40916c;
}

.company-btn.emlak:hover {
  background: #1b4332;
  color: var(--white);
}

.company-icon.emlak img {
  filter: drop-shadow(0 4px 16px rgba(27, 67, 50, 0.55));
}

/* ===== ANNOUNCEMENTS SECTION ===== */
/* ===== ANIMATION UTILITIES ===== */
[data-animate] {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    transform 600ms ease,
    opacity 600ms ease;
  transition-delay: var(--delay, 0s);
  will-change: transform, opacity;
}

[data-animate="fade-up"] {
  transform: translate3d(0, 20px, 0);
}
[data-animate="fade-down"] {
  transform: translate3d(0, -20px, 0);
}
[data-animate="fade-left"] {
  transform: translate3d(-20px, 0, 0);
}
[data-animate="fade-right"] {
  transform: translate3d(20px, 0, 0);
}
[data-animate="zoom-in"] {
  transform: scale(0.95);
}

[data-animate].in {
  opacity: 1;
  transform: none;
}

/* Subtle hover polish for cards */
.company-card:hover {
  transform: translateY(-6px) scale(1.03);
}
.announcement-card {
  transition:
    transform 350ms ease,
    box-shadow 350ms ease;
}
.announcement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.12);
}
.announcements-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(
    180deg,
    var(--corporate-gray),
    var(--corporate-dark)
  );
}

.announcements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.announcements-loading,
.no-announcements {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--gray-400);
}

.announcement-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.announcement-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.announcement-card.important {
  border-color: rgba(255, 165, 0, 0.3);
}

.announcement-card.urgent {
  border-color: rgba(255, 107, 107, 0.3);
}

.announcement-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.announcement-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
}

.announcement-date i {
  font-size: 1rem;
}

.announcement-priority {
  font-size: 1.25rem;
}

.announcement-content {
  flex: 1;
}

.announcement-content h3 {
  color: var(--text-primary);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.announcement-content p {
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 0.9375rem;
  margin: 0;
  opacity: 0.9;
}

/* ===== FOOTER ===== */
.footer {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 1.5rem;
}

.footer-container {
  max-width: 80rem;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-logo-link {
  display: inline-flex;
  text-decoration: none;
}

.footer-contact-block {
  display: grid;
  gap: 0.75rem;
}

.footer-contact-block i {
  color: var(--gold);
  margin-right: 0.5rem;
}

.footer-col p {
  color: var(--gray-400);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--corporate-dark);
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: var(--gray-500);
  font-size: 0.875rem;
}

.location-section,
.contact-section {
  padding: 5rem 1.5rem;
}

.location-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.location-card,
.contact-info,
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 1.5rem;
  backdrop-filter: blur(12px);
}

.location-card {
  padding: 1.5rem;
}

.location-header {
  margin-bottom: 1.5rem;
}

.location-title {
  font-family: "Zalando Sans Expanded", sans-serif;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.location-address {
  color: var(--gray-400);
  line-height: 1.8;
}

.location-map {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
}

.contact-info,
.contact-form-wrapper {
  padding: 2rem;
}

.contact-info h2,
.contact-form-wrapper h2 {
  font-family: "Zalando Sans Expanded", sans-serif;
  font-size: 1.9rem;
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.info-item:last-child {
  border-bottom: 0;
}

.info-item i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 0.25rem;
}

.info-item h4 {
  margin-bottom: 0.35rem;
}

.info-item p {
  color: var(--gray-400);
  line-height: 1.75;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.9rem;
  color: var(--text-primary);
  padding: 1rem 1.1rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
}

.contact-form textarea {
  resize: vertical;
}

#formStatus {
  margin-top: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-container {
    padding: 0.75rem 1rem;
    gap: 0.5rem;
  }

  .navbar-logo {
    min-width: 120px;
  }

  .logo-icon {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }

  .logo-text h1 {
    font-size: 0.875rem;
  }

  .logo-text p {
    font-size: 0.5rem;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(
      135deg,
      var(--corporate-gray),
      var(--corporate-dark)
    );
    flex-direction: column;
    padding: 6rem 1.5rem 2rem;
    gap: 0.75rem;
    transition: right 0.3s ease;
    z-index: 1000;
    border-radius: 0;
    border: none;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    overflow-y: auto;
    margin: 0;
    display: flex;
  }

  .nav-menu.mobile-active,
  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu .company-btn {
    width: 100%;
    max-width: 100%;
    justify-content: flex-start;
    padding: 1rem 1.15rem;
    gap: 0.6rem;
    font-size: 0.95rem;
  }

  .company-btn {
    padding: 0.85rem 1.1rem;
    font-size: 0.95rem;
    gap: 0.5rem;
  }

  .company-btn i {
    display: inline-block;
    font-size: 1.05rem;
  }

  .lang-switcher {
    display: flex;
  }

  #languageSelect {
    font-size: 0.75rem;
    padding: 0.375rem 0.625rem;
    padding-right: 1.5rem;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.875rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .companies-grid {
    grid-template-columns: 1fr;
  }

  .company-card {
    min-height: 350px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .location-map {
    min-height: 300px;
  }
}

/* Tablet iГ§in 2 sГјtun layout */
@media (min-width: 768px) and (max-width: 1024px) {
  .companies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .company-card {
    min-height: 380px;
    padding: 1.75rem;
  }

  .company-description {
    font-size: 0.9rem;
  }

  .company-features {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0.5rem 0.75rem;
  }

  .navbar-logo {
    min-width: 100px;
  }

  .logo-icon {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.875rem;
  }

  .logo-text h1 {
    font-size: 0.75rem;
  }

  .logo-text p {
    font-size: 0.425rem;
  }

  .nav-menu {
    margin: 0 0.5rem;
    padding: 0.25rem;
  }

  .company-btn {
    padding: 0.75rem 0.95rem;
    font-size: 0.9rem;
  }

  #languageSelect {
    font-size: 0.7rem;
    padding: 0.375rem 0.5rem;
    padding-right: 1.25rem;
  }

  .hamburger {
    display: flex;
  }

  .logo-text h1 {
    font-size: 1rem;
  }

  .hero-title {
    font-size: 1.875rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 0.875rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .btn-primary {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

/* Custom Cursor */
.cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid #fff; /* Cerceeve */
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  transition-property: background, transform, border-color;
  z-index: 9999;
  backdrop-filter: invert(1); /* efekt */
  mix-blend-mode: difference; /*  karД±ЕџД±m efekti */
}

/* Hover */
.cursor.grow {
  transform: translate(-50%, -50%) scale(1.5);
  background: rgba(255, 255, 255, 0.2);
  border-color: #ff9900; /* Vurgu rengi*/
}

/* Normal cursor yok */
body,
a,
button {
  cursor: none !important;
}

/* Mobil cursor yok */
@media (max-width: 768px) {
  .cursor {
    display: none;
  }
}

/* ===== UTILITY: ANIMATION DELAYS ===== */
.anim-d-0 {
  --delay: 0s;
}
.anim-d-01 {
  --delay: 0.1s;
}
.anim-d-02 {
  --delay: 0.2s;
}
.anim-d-025 {
  --delay: 0.25s;
}
.anim-d-035 {
  --delay: 0.35s;
}
.anim-d-045 {
  --delay: 0.45s;
}
.anim-d-05 {
  --delay: 0.5s;
}
.anim-d-055 {
  --delay: 0.55s;
}
.anim-d-06 {
  --delay: 0.6s;
}

/* ===== UTILITY: ICON MARGIN ===== */
.icon-ml {
  margin-left: 0.5rem;
}

/* ===== COMPANY CARD: CHECK-CIRCLE COLORS ===== */
.company-card.architecture .fa-check-circle {
  color: #8e9db2;
}
.company-card.engineering .fa-check-circle {
  color: #d4af37;
}
.company-card.demolition .fa-check-circle {
  color: #4a9fd4;
}
.company-card.emlak .fa-check-circle {
  color: #40916c;
}

/* ===== ANNOUNCEMENTS LOADING ICON ===== */
.announcements-loading i {
  font-size: 2rem;
  color: var(--gold);
}

/* ===== FOOTER LOGO IMAGE ===== */
.footer-logo-link img {
  max-width: 300px;
  height: auto;
}

/* ===== BREADCRUMB NAV ===== */
#breadcrumbNav {
  padding: 1rem 2rem;
  background: rgba(15, 15, 15, 0.8);
  position: fixed;
  top: 5rem;
  left: 0;
  right: 0;
  z-index: 999;
  display: none;
}

#breadcrumbNav ol {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: #9ca3af;
}

#breadcrumbNav a {
  color: var(--gold);
  text-decoration: none;
}
