* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #f3f3e4;
  --dark-brown: #474138;
  --medium-brown: #a0968a;
  --light-brown: #c4bfb3;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: var(--cream);
  color: var(--dark-brown);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Görsel Optimizasyonu */
img {
  display: block;
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

img[src=""],
img:not([src]) {
  opacity: 0;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(243, 243, 228, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 25px 40px;
  border-bottom: 1px solid rgba(71, 65, 56, 0.08);
  transition: transform 0.3s ease-in-out;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1800px;
  margin: 0 auto;
}

.logo {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-decoration: none;
  color: var(--dark-brown);
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo:hover {
  opacity: 0.6;
}

.logo-image {
  height: 40px;
  width: auto;
  display: block;
}

.logo-text {
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav a {
  text-decoration: none;
  color: var(--dark-brown);
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 400;
  transition: opacity 0.3s;
}

.nav a:hover {
  opacity: 0.5;
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(243, 243, 228, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(71, 65, 56, 0.1);
  border-radius: 8px;
  padding: 15px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(71, 65, 56, 0.15);
  z-index: 1000;
  margin-top: 10px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 15px;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 25px;
  color: var(--dark-brown);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 1.5px;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-dropdown-menu a:first-child {
  font-weight: 600;
  border-bottom: 1px solid rgba(71, 65, 56, 0.1);
  margin-bottom: 5px;
  padding-bottom: 12px;
}

.nav-dropdown-menu a:hover {
  background: rgba(71, 65, 56, 0.05);
  padding-left: 30px;
  opacity: 1;
}

.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark-brown);
  transition: opacity 0.3s;
  padding: 5px;
}

.search-btn:hover {
  opacity: 0.5;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background-color: var(--dark-brown);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(243, 243, 228, 0.98);
  backdrop-filter: blur(10px);
  z-index: 999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: flex;
  opacity: 1;
  align-items: center;
  justify-content: center;
}

.mobile-nav-list {
  list-style: none;
  text-align: center;
  padding: 0;
}

.mobile-nav-list li {
  margin: 30px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-nav-list li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-nav-list li:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-nav-list li:nth-child(2) {
  transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-nav-list li:nth-child(3) {
  transition-delay: 0.3s;
}

.mobile-menu-overlay.active .mobile-nav-list li:nth-child(4) {
  transition-delay: 0.4s;
}

.mobile-menu-overlay.active .mobile-nav-list li:nth-child(5) {
  transition-delay: 0.5s;
}

.mobile-nav-list a {
  text-decoration: none;
  color: var(--dark-brown);
  font-size: 24px;
  letter-spacing: 3px;
  font-weight: 300;
  transition: opacity 0.3s;
  display: inline-block;
}

.mobile-nav-list a:hover {
  opacity: 0.5;
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  height: 100vh;
  margin-top: 70px;
  overflow: hidden;
}

.carousel-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  backface-visibility: hidden;
}

.carousel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  padding: 80px 120px;
  color: white;
}

.carousel-title {
  font-size: 32px;
  letter-spacing: 6px;
  font-weight: 300;
  margin-bottom: 20px;
}

.carousel-text {
  max-width: 800px;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.carousel-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-dot.active {
  background-color: rgba(255, 255, 255, 0.9);
}

/* Sections */
.section-title {
  text-align: center;
  font-size: 18px;
  letter-spacing: 6px;
  font-weight: 300;
  margin: 120px 0 80px;
}

.section-side-text {
  position: relative;
}

.side-text-left,
.side-text-right {
  position: absolute;
  font-size: 11px;
  letter-spacing: 4px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 300;
  opacity: 0.3;
}

.side-text-left {
  left: 20px;
  top: 0;
}

.side-text-right {
  right: 20px;
  top: 0;
}

/* Projects Grid */
.projects-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px 120px;
  display: grid;
  gap: 80px;
}

/* Modern Projects Grid - Attığınız tasarıma uygun */
.projects-grid-modern {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.project-card-modern {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  aspect-ratio: 1 / 1;
}

.project-card-modern.large {
  aspect-ratio: 2 / 1;
  grid-column: span 2;
}

.project-card-modern:hover {
  transform: translateY(-5px);
}

.project-link-modern {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.project-view-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  font-size: 11px;
  letter-spacing: 2px;
  transition: all 0.3s;
}

.project-card-modern:hover .project-view-btn {
  background: white;
  color: var(--dark-brown);
}

.project-image-modern {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.project-image-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  will-change: transform;
  backface-visibility: hidden;
}

.project-card-modern:hover .project-image-modern img {
  transform: scale(1.05);
}

.project-overlay-modern {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card-modern:hover .project-overlay-modern {
  opacity: 1;
}

.project-title-modern {
  font-size: 18px;
  letter-spacing: 3px;
  font-weight: 400;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.project-description-modern {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 15px;
  font-weight: 300;
}

.project-meta-modern {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.8;
}

.projects-grid.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.projects-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.projects-grid.four-col {
  grid-template-columns: repeat(4, 1fr);
}

.projects-grid.five-col {
  grid-template-columns: repeat(5, 1fr);
}

.project-card {
  cursor: pointer;
  transition: transform 0.3s;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-image {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 20px;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-title {
  font-size: 16px;
  letter-spacing: 3px;
  font-weight: 400;
  margin-bottom: 15px;
}

.project-card.small .project-title {
  font-size: 13px;
  letter-spacing: 2px;
}

.project-description {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #5a5550;
  font-weight: 300;
}

.project-meta {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--medium-brown);
  text-transform: uppercase;
}

/* Featured Section */
.featured-section {
  position: relative;
  height: 90vh;
  margin: 120px 0;
}

.featured-image {
  width: 100%;
  height: 100%;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  backface-visibility: hidden;
}

.featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  padding: 80px 120px;
  color: white;
}

.featured-title {
  font-size: 28px;
  letter-spacing: 6px;
  font-weight: 300;
  margin-bottom: 20px;
}

.featured-text {
  max-width: 900px;
  font-size: 13px;
  line-height: 1.9;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Footer */
.footer {
  background-color: #e8e8d8;
  padding: 80px 80px 40px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-logo h3 {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 400;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.footer-column h4 {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 400;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  text-decoration: none;
  color: var(--dark-brown);
  font-size: 13px;
  letter-spacing: 0.5px;
  font-weight: 300;
  transition: opacity 0.3s;
}

.footer-column a:hover {
  opacity: 0.5;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid rgba(71, 65, 56, 0.15);
}

.footer-bottom p {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--medium-brown);
}

/* Hizmetler Bölümü */
.services-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f3f3e4 0%, #ffffff 100%);
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(71, 65, 56, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(71, 65, 56, 0.15);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.service-title {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--dark-brown);
  margin-bottom: 15px;
}

.service-description {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
}

/* Hakkımızda Bölümü */
.about-section {
  padding: 100px 0;
  background: white;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text {
  padding-top: 20px;
}

.about-intro {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.about-feature {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(
    135deg,
    rgba(71, 65, 56, 0.03) 0%,
    rgba(71, 65, 56, 0.08) 100%
  );
  border-radius: 10px;
  transition: all 0.3s;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(71, 65, 56, 0.1);
}

.feature-value {
  font-size: 48px;
  font-weight: 300;
  color: var(--dark-brown);
  margin-bottom: 10px;
}

.feature-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--dark-brown);
  margin-bottom: 5px;
}

.feature-description {
  font-size: 12px;
  color: #666;
  letter-spacing: 1px;
}

.about-description {
  margin-bottom: 40px;
}

.about-description p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
}

.about-values h3 {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--dark-brown);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(71, 65, 56, 0.03);
  border-radius: 8px;
  font-size: 13px;
  transition: all 0.3s;
}

.value-item:hover {
  background: rgba(71, 65, 56, 0.08);
}

.value-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.value-item strong {
  color: var(--dark-brown);
  font-weight: 600;
}

.about-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(71, 65, 56, 0.15);
  height: 100%;
  min-height: 600px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(71, 65, 56, 0.95) 0%,
    transparent 100%
  );
  padding: 40px 30px;
  color: white;
}

.about-image-overlay p {
  font-size: 20px;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

/* İletişim Bölümü */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #474138 0%, #5a5550 100%);
  color: white;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info .section-title {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.contact-subtitle {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 40px;
}

.contact-details {
  margin-bottom: 50px;
}

.contact-item {
  display: flex;
  align-items: start;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.contact-text strong {
  display: block;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 8px;
  opacity: 0.7;
}

.contact-text p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.contact-text a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.contact-text a:hover {
  opacity: 0.7;
}

.social-links h3 {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form h3 {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: white;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: white;
  color: var(--dark-brown);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 1200px) {
  .projects-grid.five-col {
    grid-template-columns: repeat(3, 1fr);
  }

  .projects-grid.four-col {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card-modern.large {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 15px 20px;
  }

  .nav ul {
    gap: 20px;
  }

  .nav a {
    font-size: 9px;
  }

  .carousel-overlay {
    padding: 40px 30px;
  }

  .carousel-title {
    font-size: 20px;
    letter-spacing: 3px;
  }

  .carousel-text {
    font-size: 12px;
  }

  .projects-grid {
    padding: 0 30px 60px;
    gap: 50px;
  }

  .projects-grid.three-col,
  .projects-grid.two-col,
  .projects-grid.four-col,
  .projects-grid.five-col {
    grid-template-columns: 1fr;
  }

  .projects-grid-modern {
    grid-template-columns: 1fr;
    padding: 0 20px 60px;
    gap: 15px;
  }

  .project-card-modern.large {
    grid-column: span 1;
    aspect-ratio: 1 / 1;
  }

  .project-overlay-modern {
    padding: 25px;
  }

  .project-title-modern {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .project-description-modern {
    font-size: 12px;
  }

  .featured-overlay {
    padding: 40px 30px;
  }

  .footer {
    padding: 60px 30px 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Tablet ve Mobil */
@media (max-width: 1024px) {
  .header {
    padding: 20px 30px;
  }

  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  /* Mobil menüde dropdown */
  .mobile-nav-list .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .mobile-nav-list .nav-dropdown-menu a {
    padding: 8px 20px;
    font-size: 16px;
    margin-left: 20px;
    border-left: 2px solid rgba(71, 65, 56, 0.2);
  }

  .carousel-overlay {
    padding: 60px 40px;
  }

  .carousel-title {
    font-size: 32px;
  }

  .carousel-text {
    font-size: 14px;
  }

  .projects-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card-modern.large {
    grid-column: span 1;
  }

  .featured-overlay {
    padding: 50px 40px;
  }

  .featured-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  /* Services Responsive */
  .services-section {
    padding: 60px 0;
  }

  .services-container {
    padding: 0 20px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 30px 20px;
  }

  /* About Responsive */
  .about-section {
    padding: 60px 0;
  }

  .about-container {
    padding: 0 20px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 400px;
    order: -1;
  }

  /* Contact Responsive */
  .contact-section {
    padding: 60px 0;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .social-icons {
    flex-direction: column;
  }

  .social-icon {
    justify-content: center;
  }

  .header {
    padding: 15px 20px;
  }

  .logo-image {
    height: 32px;
  }

  .logo-text {
    font-size: 12px;
  }

  .hero-carousel {
    height: 60vh;
    margin-top: 60px;
  }

  .carousel-overlay {
    padding: 40px 20px;
  }

  .carousel-title {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .carousel-text {
    font-size: 12px;
    line-height: 1.6;
  }

  .section-title {
    font-size: 20px;
    letter-spacing: 3px;
  }

  .projects-grid-modern {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid.three-col,
  .projects-grid.two-col,
  .projects-grid.five-col {
    grid-template-columns: 1fr;
  }

  .featured-section {
    min-height: 60vh;
  }

  .featured-overlay {
    padding: 30px 20px;
  }

  .featured-title {
    font-size: 22px;
  }

  .featured-text {
    font-size: 13px;
  }

  .footer {
    padding: 50px 20px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .logo-text {
    display: none;
  }

  .search-btn {
    display: none;
  }

  .hero-carousel {
    height: 50vh;
  }

  .carousel-title {
    font-size: 20px;
  }

  .carousel-text {
    font-size: 11px;
  }

  .section-title {
    font-size: 18px;
  }

  .mobile-nav-list a {
    font-size: 20px;
  }
}
