:root {
  --primary: #ffffff;
  --secondary: #a0a0a0;
  --accent: #3b82f6;
  /* Modern Blue */
  --accent-glow: #3b82f680;
  --bg-dark: #050505;
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.1);
  --glass-blur: 10px;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  color: var(--primary);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1030;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  padding: 0.8rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(15px);
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 1px;
}

.navbar-brand img {
  height: 35px;
}

.nav-link {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7) !important;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem !important;
}

.nav-link:hover {
  color: var(--primary) !important;
}

/* Navbar Mobile Menu */
@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 0 !important;
  }

  .navbar-brand img {
    height: 30px !important;
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.98) !important;
    backdrop-filter: blur(20px);
    margin-top: 0.5rem;
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  }

  .navbar-nav {
    gap: 0.3rem;
  }

  .nav-link {
    padding: 0.6rem 1rem !important;
    font-size: 0.95rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .navbar-toggler {
    padding: 0.4rem 0.6rem;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.15rem rgba(255, 255, 255, 0.2);
  }

  .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(ellipse at top, #1a1a2e 0%, #050505 50%, #000000 100%);
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 50%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
  filter: blur(80px);
  z-index: 0;
  animation: pulseGlow 8s infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #3b82f6 50%, #a855f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: slideUp 0.8s ease-out forwards, shimmer 3s infinite;
  background-size: 200% auto;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 2rem;
  opacity: 0;
  animation: slideUp 0.8s ease-out 0.3s forwards;
}

.btn-custom {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  opacity: 0;
  animation: slideUp 0.8s ease-out 0.6s forwards;
}

.btn-custom:hover {
  background: white;
  color: black;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* Services */
.section-padding {
  padding: 6rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #cccccc 50%, #999999 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  width: 100%;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.4s ease;
  backdrop-filter: blur(var(--glass-blur));
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
  color: var(--secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* Modern Service Cards */
.service-card-modern {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 3rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
}

.service-card-modern::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 30px;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.service-card-modern::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card-modern:hover {
  transform: translateY(-20px) scale(1.03);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.service-card-modern:hover::before {
  opacity: 1;
}

.service-card-modern:hover::after {
  opacity: 1;
}

/* Monochrome Dark Theme Backgrounds */
.gradient-blue,
.gradient-purple,
.gradient-green,
.gradient-pink {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  position: relative;
}

.gradient-blue::before,
.gradient-purple::before,
.gradient-green::before,
.gradient-pink::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  filter: blur(60px);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.gradient-blue:hover,
.gradient-purple:hover,
.gradient-green:hover,
.gradient-pink:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.gradient-blue:hover::before,
.gradient-purple:hover::before,
.gradient-green:hover::before,
.gradient-pink:hover::before {
  opacity: 1;
}

/* Service Card Elements */
.service-icon-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-icon-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card-modern:hover .service-icon-wrapper {
  transform: scale(1.15) rotate(-5deg);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card-modern:hover .service-icon-wrapper::before {
  opacity: 1;
}

.service-icon-large {
  font-size: 2.8rem;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.service-card-modern:hover .service-icon-large {
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.service-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #fff;
  background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.25s ease;
}

.service-card-modern:hover .service-title {
  transform: translateX(5px);
}

.service-description {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.service-features {
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.feature-item i {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.service-card-modern:hover .feature-item {
  transform: translateX(8px);
}

.service-card-modern:hover .feature-item i {
  color: #ffffff;
  transform: scale(1.2);
}

.btn-service {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  display: inline-block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-service::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-service:hover::before {
  width: 400px;
  height: 400px;
}

.btn-service:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
  color: #000;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-service span {
  position: relative;
  z-index: 1;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1rem 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  /* Square Aspect Ratio */
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.9);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  border-radius: 16px;
}

.gallery-overlay-content {
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.gallery-overlay-content h4 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gallery-overlay-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  margin: 0;
}

.gallery-item:hover {
  transform: translateY(-10px);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay-content {
  transform: translateY(0);
}

.gallery-item:hover .gallery-image-wrapper {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* Responsive Gallery */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-image-wrapper {
    padding-bottom: 100%;
    /* Square on mobile */
  }
}

/* Contact */
.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
  box-shadow: none;
}

/* Footer */
.footer-modern {
  background: linear-gradient(180deg, #020202 0%, #000000 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
  margin-top: 6rem;
}

.footer-brand img {
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
  max-width: 350px;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #ffffff !important;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #a0a0a0 !important;
  transform: translateX(5px);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
}

.footer-contact i {
  color: #ffffff;
  margin-top: 0.2rem;
  font-size: 1rem;
}

.footer-contact a {
  color: #ffffff !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #a0a0a0 !important;
}

.footer-contact span {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.text-gradient-footer {
  color: #ffffff;
  font-weight: 600;
}

/* Footer Mobile */
@media (max-width: 768px) {
  .footer-modern {
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
  }

  .footer-description {
    max-width: 100%;
  }

  .footer-title {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    margin-top: 1.5rem;
  }

  .footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }

  .footer-bottom p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem !important;
  }

  .social-icon {
    width: 36px;
    height: 36px;
  }
}


/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.1;
    transform: translate(-50%, -50%) scale(0.9);
  }

  100% {
    opacity: 0.2;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes pulseGlow {
  0% {
    opacity: 0.15;
    transform: translate(-50%, -50%) scale(0.95);
  }

  100% {
    opacity: 0.25;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }

  100% {
    background-position: 0% center;
  }
}

/* Utility */
.text-gradient {
  background: linear-gradient(45deg, #fff, #888);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Mobile Responsive Improvements */
@media (max-width: 768px) {

  /* Hero Section Mobile */
  .hero-title {
    font-size: 2.5rem !important;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1rem !important;
    padding: 0 1rem;
  }

  .btn-custom {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  /* Container Mobile */
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Section Padding Mobile */
  .section-padding {
    padding: 2.5rem 0 !important;
  }

  .section-title {
    font-size: 1.7rem !important;
    margin-bottom: 2rem !important;
    padding: 0 0.5rem;
  }

  /* Service Cards Mobile */
  .service-card-modern {
    padding: 1.5rem 1.2rem !important;
    margin-bottom: 1.2rem;
    border-radius: 18px !important;
  }

  .service-card-modern:hover {
    transform: translateY(-2px) scale(1.005) !important;
  }

  .service-icon-wrapper {
    width: 55px !important;
    height: 55px !important;
    margin-bottom: 1.2rem !important;
    border-radius: 14px !important;
  }

  .service-icon-large {
    font-size: 1.6rem !important;
  }

  .service-title {
    font-size: 1.25rem !important;
    margin-bottom: 0.6rem !important;
  }

  .service-description {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1.2rem !important;
  }

  .service-features {
    margin-bottom: 0 !important;
  }

  .feature-item {
    margin-bottom: 0.6rem !important;
    font-size: 0.85rem !important;
  }

  .feature-item i {
    font-size: 0.9rem !important;
  }

  /* Gallery Mobile */
  .gallery-grid {
    gap: 1rem !important;
    padding: 0.5rem 0 !important;
  }

  .gallery-item {
    margin-bottom: 0.3rem;
  }

  .gallery-image-wrapper {
    border-radius: 16px !important;
  }

  .gallery-overlay {
    padding: 1.5rem !important;
  }

  .gallery-overlay-content h4 {
    font-size: 1.2rem !important;
  }

  .gallery-overlay-content p {
    font-size: 0.9rem !important;
  }

  /* Contact Section Mobile */
  #contact {
    padding: 2.5rem 0 2rem !important;
  }

  #contact .row {
    margin: 0 !important;
  }

  #contact .col-lg-8 {
    padding: 0 1rem !important;
  }

  #contact .section-title {
    font-size: 1.7rem !important;
    margin-bottom: 1.2rem !important;
  }

  #contact .lead {
    font-size: 0.95rem !important;
    margin-bottom: 2rem !important;
    padding: 0 0.5rem;
  }

  #contact .d-flex.align-items-center {
    padding: 1.5rem 1.2rem !important;
    margin-bottom: 1.5rem !important;
    border-radius: 14px !important;
  }

  #contact .d-flex.align-items-center a {
    font-size: 1.05rem !important;
    word-break: break-all;
  }

  #contact .d-flex.align-items-center i {
    font-size: 1.5rem !important;
    min-width: 35px;
  }

  .bionluk-section {
    padding: 2rem 1.5rem !important;
    border-radius: 18px !important;
    margin: 0 !important;
  }

  .bionluk-section i.fa-briefcase {
    font-size: 2.2rem !important;
    margin-bottom: 0.8rem !important;
  }

  .bionluk-section h3 {
    font-size: 1.3rem !important;
    margin-bottom: 0.6rem !important;
  }

  .bionluk-section p {
    font-size: 0.9rem !important;
  }

  .bionluk-section .btn {
    padding: 0.9rem 1.8rem !important;
    font-size: 0.95rem !important;
    margin-top: 0.5rem;
  }

  /* Navbar Mobile */
  .navbar {
    padding: 0.5rem 0 !important;
  }

  .navbar-brand {
    font-size: 1.1rem;
  }

  .nav-link {
    padding: 0.5rem 0.8rem !important;
    font-size: 0.9rem;
  }

  /* Row spacing */
  .row.g-4 {
    gap: 1.2rem !important;
  }
}

@media (max-width: 576px) {

  /* Extra Small Devices */
  .hero-title {
    font-size: 2rem !important;
  }

  .hero-subtitle {
    font-size: 0.9rem !important;
  }

  .container {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .section-padding {
    padding: 2.5rem 0 !important;
  }

  .section-title {
    font-size: 1.6rem !important;
    margin-bottom: 2rem !important;
  }

  .service-card-modern {
    padding: 2rem 1.5rem !important;
    margin-bottom: 1.5rem;
  }

  .service-icon-wrapper {
    width: 65px !important;
    height: 65px !important;
  }

  .service-icon-large {
    font-size: 1.8rem !important;
  }

  .service-title {
    font-size: 1.4rem !important;
  }

  .service-description {
    font-size: 0.95rem !important;
  }

  .feature-item {
    font-size: 0.9rem !important;
  }

  .gallery-grid {
    gap: 1rem !important;
  }

  #contact .section-title {
    font-size: 1.6rem !important;
  }

  #contact .lead {
    font-size: 0.95rem !important;
  }

  #contact .d-flex.align-items-center {
    padding: 1.5rem 1rem !important;
  }

  #contact .d-flex.align-items-center a {
    font-size: 1rem !important;
  }

  .bionluk-section {
    padding: 2rem 1.5rem !important;
  }

  .bionluk-section h3 {
    font-size: 1.3rem !important;
  }

  .bionluk-section .btn {
    font-size: 0.95rem !important;
    padding: 0.9rem 1.5rem !important;
    gap: 0.5rem !important;
  }

  .navbar-brand {
    font-size: 1.1rem;
  }
}