* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Mulish', sans-serif; }
body { background-image: url('/img/arka.jpg'); background-repeat: repeat; background-size: auto; background-color: #e6edf0; }
header { max-width: 90%; margin: 16px auto; padding: 20px 25px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 999; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); }

.logo { position: relative; display: flex; align-items: center; gap: 8px; font-size: 24px; font-weight: bold; color: #fff; }
.logo img { position:absolute; height: 70px; }
.yazilar { margin-left: 80px; }
.slogan { font-size: 13px; font-weight: normal; opacity: 0.8; margin-top: 4px; }

nav { flex-grow: 1; margin-right: 160px; }
nav ul { list-style: none; display: flex; gap: 15px; float:right; }
nav ul li { position: relative; display: flex; align-items: center; }
nav ul li a { color: white; text-decoration: none; padding: 10px 12px; border-radius: 12px; font-weight: 520; background-color: rgba(255, 255, 255, 0.1); transition: background-color 0.3s, transform 0.2s; display: inline-block; }
nav ul li a:hover { background-color: rgba(255, 255, 255, 0.25); transform: translateY(-2px); }

.phone-number { margin-left: 16px; font-weight: 600; font-size: 16px; user-select: none; display: inline-flex; align-items: center; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); }
.phone-number i { margin-right: 4px; color: #ffd700; }
.phone-number a { text-decoration: none; color: #ffd700; }

.dropdown > a::after { content: " ▼"; font-size: 12px; margin-left: 4px; }
.dropdown-content { padding-top: 4px; min-width: 170px; box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25); display: flex; flex-direction: column; z-index: 1000; backdrop-filter: blur(8px); transform: translateY(10px); transition: transform 0.3s ease, opacity 0.3s ease; opacity: 0; pointer-events: none; position: absolute; top: 100%; left: 0; row-gap: 6px; }
.dropdown:hover .dropdown-content { transform: translateY(0); opacity: 1; pointer-events: auto; }
.dropdown-content li { width: 100%; background: none; }
.dropdown-content li a { display: block; font-size: 15px; width: 100%; text-align: left; box-sizing: border-box; padding: 9px 15px; color: white; font-weight: 500; border-radius: 0; transition: background 0.3s ease, padding-left 0.3s ease; background-color: #333; border-radius: 6px; }
.dropdown-content li a::before { content: "›"; margin-right: 8px; font-size: 16px; }
.dropdown-content li a:hover { background-color: #fff; padding-left: 18px; color: #000; }

@media (max-width: 1920px) {
  .logo { font-size: 22px; }
  .phone-number { font-size: 20px; }
    nav ul { margin-right: 60px; gap: 22px; }
	nav ul li a { font-size: 16px; padding: 11px 16px; }
	.slogan { font-size: 13px; }
}
@media (max-width: 1680px) {
  .phone-number { font-size: 16px; }
    nav ul { margin-right: 30px; gap: 18px; }
	nav ul li a { font-size: 14px; }
}
@media (max-width: 1600px) {
  .logo { font-size: 20px; }
  .phone-number { font-size: 16px; }
    nav ul { margin-right: 15px; gap: 16px; }
	nav ul li a { font-size: 14px; }
}
@media (max-width: 1440px) {
  .logo { font-size: 20px; }
  .phone-number { font-size: 16px; }
    nav ul { margin-right: 12px; gap: 12px; }
	nav ul li a { font-size: 13px; }
	.dropdown-content li a { font-size: 13px; }
}
@media (max-width: 1366px) {
  .logo { font-size: 18px; }
  .phone-number { font-size: 14px; }
    nav ul { margin-right: 1px; gap: 13px; }
	nav ul li a { font-size: 12px; }
	.dropdown-content li a { font-size: 12px; }
}
@media (max-width: 1280px) {
  .logo { font-size: 18px; }
  .phone-number { font-size: 14px; }
    nav ul { margin-right: -15px; gap: 8px; }
}
@media (max-width: 1152px) {
  .logo { font-size: 15px; margin-left:-10px; }
  .slogan { font-size: 10px; }
  .phone-number { font-size: 12px; }
    nav ul { margin-right: -40px; gap: 5px; }
	nav ul li a { font-size: 10px; }
	.dropdown-content li a { font-size: 11px; }
}
@media (max-width: 1024px) {
  .logo { font-size: 13px; }
  .phone-number { font-size: 11px; }
    nav ul { margin-right: -65px; gap: 3px; width:550px; }
	nav ul li a { font-size: 11px; padding: 8px 10px; }
	.dropdown > a::after { font-size: 8px; }
	.dropdown-content { max-width: 160px; }
}
@media (max-width: 800px) {
  .logo { font-size: 9px; }
  .phone-number { display: none; max-width: 1px; padding:0; margin:0; }
    nav ul { width: 600px; margin-right: -300px; gap: 3px; }
	nav ul li a { font-size: 9px; padding: 8px 10px; }
	.dropdown > a::after { font-size: 8px; }
	.dropdown-content { width: 100px; }
	.dropdown-content li a { font-size: 10px; padding: 4px 15px 6px 15px; }
}

.hamburger { display: none; flex-direction: column; cursor: pointer; width: 28px; height: 22px; justify-content: space-between; }
.hamburger span { height: 3px; background-color: white; border-radius: 3px; transition: all 0.3s ease; }
@media (max-width: 768px) {
  .hamburger { display: flex; }
  nav { display: none; margin-right: -1px; flex-direction: column; position: absolute; top: 60px; right: 0; background-color: #222; padding: 10px; z-index: 100; width: 220px; border-radius: 8px; }
  nav.active { display: flex; }
  nav ul { display: flex; flex-direction: column; gap: 10px; padding: 0; align-items: flex-start; width: 100%; }
  nav ul li { width: 100%; border-bottom: none; }
  nav ul li a { padding: 15px 20px; text-align: left; font-size: 16px; background-color: #1f2c34; color: white; border: none; border-radius: 5px; width: 100%; transition: background-color 0.3s ease; }
  nav ul li a:hover { background-color: #e67e22; }
  .dropdown-content { display: none !important; }
  .dropdown > a::after { content: none !important; }
  .hamburger { display: flex; }
  .phone-number { position: relative; margin-top:26px; margin-left:30px; font-size: 16px; }
  .phone-number i { margin-right: 8px; }
  .logo { font-size: 20px; }
  .slogan { font-size: 12px; }
}
@media (max-width: 365px) {
.logo { font-size: 15px; }
.logo img { height: 60px; }
.yazilar { margin-left: 66px; }
.slogan { font-size: 11px; }
}

.slider { position: relative; max-width: 90%; margin: 30px auto; overflow: hidden; border-radius: 20px; height: 600px; background-color: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,0.5), 0 8px 30px rgba(0, 0, 0, 0.6); }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; visibility: hidden; transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out; z-index: 0; }
.slide.active { opacity: 1; visibility: visible; z-index: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 20px; }
.caption { position: absolute; bottom: 25px; left: 50%; transform: translateX(-50%); background: rgba(0,0,0,0.4); padding: 10px 18px; border-radius: 8px; color: white; font-size: 22px; font-weight: 600; text-shadow: 1px 1px 5px rgba(0,0,0,0.9); white-space: nowrap; pointer-events: none; user-select: none; z-index: 5; }
.prev, .next { position: absolute; top: 50%; transform: translateY(-50%); background-color: rgba(0,0,0,0.3); border: none; color: white; font-size: 40px; padding: 10px 20px; cursor: pointer; border-radius: 40%; user-select: none; z-index: 10; transition: background-color 0.3s; }
.prev:hover, .next:hover { background-color: rgba(0,0,0,0.6); }
.prev { left: 15px; }
.next { right: 15px; }

@media (max-width: 1600px) {
  .slider { height: 500px; }
  .slide img { height: 500px; }
}
@media (max-width: 1440px) {
  .slider { height: 450px; }
  .slide img { height: 450px; }
}
@media (max-width: 1366px) {
  .slider { height: 400px; }
  .slide img { height: 400px; }
}
@media (max-width: 800px) {
  .slider { height: 250px; }
  .slide img { height: 250px; }
}
@media (max-width: 768px) {
  .slider { height: 200px; }
  .slide img { height: 200px; }
  .caption { font-size: 16px; padding: 6px 12px; bottom: 10px; }
  .prev, .next { font-size: 22px; padding: 6px 10px; }
}

.content-page { width: 90%; margin: 30px auto; padding: 20px; background-color: #fff; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.06); box-sizing: border-box; }
.content-page h1 { display: flex; justify-content: space-between; align-items: center; font-size: 24px; margin-bottom: 20px; border-bottom: 2px solid #ddd; padding-bottom: 10px; }
.content-page h1 .baslik-sol { display: flex; align-items: center; gap: 10px; }
.content-page h1 .h1-btn { margin-left: auto; background-color: #007bff; color: #fff; font-size: 14px; padding: 4px 10px; border-radius: 6px; text-decoration: none; font-weight: 500; transition: background-color 0.2s ease; }
.content-page h1 .h1-btn:hover { background-color: #0056b3; }
.content-page p { font-size: 18px; line-height: 1.8; margin-bottom: 20px; }

.proje-detay-grid { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 20px; }
.proje-video { flex: 1 1 500px; max-width: 560px; }
.proje-video iframe { width: 100%; height: 315px; border-radius: 12px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.proje-aciklama { flex: 1 1 300px; }
.proje-aciklama p { font-size: 17px; line-height: 1.6; margin-bottom: 20px; }
.proje-ozellikler { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.proje-ozellikler span { background-color: #f3f3f3; padding: 8px 12px; border-radius: 8px; font-size: 15px; display: flex; align-items: center; gap: 8px; }

.video-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 25px; }
.video-item { background-color: #fff; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s ease; }
.video-item:hover { transform: translateY(-6px); }
.thumb img { width: 100%; height: 160px; object-fit: cover; display: block; }
.video-info { padding: 15px 20px; text-align: center; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.video-info h3 { font-family: 'Mulish', sans-serif; font-size: 12px; margin: 0 0 12px 0; color: #222; font-weight:400; }

@media (max-width: 600px) {
  .video-gallery { grid-template-columns: 1fr; }
}

.video-player { position: relative; width: 100%; max-width: 800px; aspect-ratio: 16 / 9; margin: 30px auto; overflow: hidden; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.video-player iframe { width: 100%; height: 100%; border: none; border-radius: 12px; }
.video-aciklama { display: flex; justify-content: center; align-items: center; margin-top: 20px; text-align: center; }
.video-aciklama p { font-size: 18px; line-height: 1.6; max-width: 700px; }

.proje-galeri { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 20px; }
.proje-galeri a { display: block; overflow: hidden; width: 190px; border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: transform 0.2s ease; }
.proje-galeri a:hover { transform: scale(1.03); }
.proje-galeri img { width: 100%; height: 100%; display: block; object-fit: cover; }
@media (max-width: 400px) {
.proje-galeri { gap: 10px; margin-top: 15px; }
.proje-galeri a { width: 135px; }
}

.gslide-desc,
.gslide-description,
.gdesc-inner { margin: 0 !important; padding: 0 !important; line-height: 1.2 !important; font-size: 18px !important; font-family: 'Mulish', sans-serif !important; text-align: center !important; background: rgba(255,255,255,0.7); }
.gslide-description { max-width: 90%; width: fit-content; margin: 10px auto 0 auto !important; padding: 6px 12px !important; background: rgba(255,255,255,0.7); border-radius: 8px; font-family: 'Mulish', sans-serif !important; font-size: 18px !important; text-align: center; }

.projects-list { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; margin-top: 30px; }
.project-card { width: 530px; background: #fff; border-radius: 10px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s ease; }
.project-card:hover { transform: translateY(-5px); }
.project-img { position: relative; }
.project-img img { width: 100%; height: 260px; object-fit: cover; display: block; }
.project-title { position: absolute; top: 0; left: 0; width: 100%; padding: 10px 0; background: rgba(0, 0, 0, 0.6); color: #fff; font-size: 20px; text-align: center; }
.project-info { padding: 16px; }
.project-meta { display: flex; justify-content: space-between; margin-bottom: 12px; align-items: center; }
.project-address,
.project-units { font-size: 15px; color: #555; margin: 0; }

.btn { display: inline-block; padding: 10px 18px; background-color: #ffd700; color: #000; border-radius: 6px; font-weight: 600; text-decoration: none; transition: background-color 0.3s ease, box-shadow 0.3s ease; display: block; width: fit-content; margin: 0 auto; }
.btn:hover { background-color: #333; color: #fff; }
@media (max-width: 768px) {
  .project-card { width: 100%; }
  .project-meta { display:block; }
}

.pagination { display: flex; justify-content: center; align-items: center; list-style: none; padding: 0; margin: 20px 0; gap: 8px; font-family: Arial, sans-serif; }
.pagination li { cursor: pointer; }
.pagination li a { display: block; padding: 10px 18px; background-color: #333; color: white; border-radius: 8px; font-weight: 600; text-decoration: none; box-shadow: 0 3px 8px rgb(0 123 255 / 0.4); transition: background-color 0.3s ease, box-shadow 0.3s ease; }
.pagination li.active a { background-color: #ffd700; cursor: default; pointer-events: none; box-shadow: none; }
.pagination li.disabled a { background-color: #333; cursor: not-allowed; pointer-events: none; box-shadow: none; }
.pagination li a:hover { background-color: #ffd700; box-shadow: 0 5px 15px rgb(0 86 179 / 0.6); }

.gallery-categories { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 30px; justify-content: space-between; }
.gallery-box { flex: 1 1 32%; background: #fff; border-radius: 10px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); padding: 24px 20px; text-align: center; text-decoration: none; color: #333; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.gallery-box:hover { transform: translateY(-6px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.gallery-box i { font-size: 40px; color: #007bff; margin-bottom: 14px; display: block; }
.gallery-box h2 { font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.gallery-box p { font-size: 14px; color: #555; line-height: 1.5; }
@media (max-width: 768px) {
  .gallery-box { flex: 1 1 100%; }
}

.category-menu { max-width: 90%; margin: 0 auto; background-color: #1f2c34; display: flex; justify-content: center; flex-wrap: wrap; gap: 40px; padding: 30px 0; }
.category-item { display: flex; flex-direction: column; align-items: center; color: #ffffff; cursor: pointer; transition: color 0.3s ease; font-size: 14px; }
.category-item i { font-size: 24px; margin-bottom: 6px; transition: color 0.3s ease; }
.category-item:hover,
.category-item:hover i { color: #f39c12;}
.category-item a { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: inherit; }

.gorus-item { display: flex; gap: 15px; padding: 10px 0; border-bottom: 1px solid #ddd; align-items: flex-start; flex-wrap: wrap; }
.gorus-content { flex: 1 1 100%; }
.gorus-meta { font-weight: 700; font-size: 16px; color: #222; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.ikon { font-size: 16px; color: #007bff; margin: 0; flex-shrink: 0; }
.gorus-metin { margin: 0; padding: 0; font-size: 17px; line-height: 1.5; color: #444; }

.kurumsal-butonlar { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-top: 30px; }
.kurum-btn { background-color: #ffd700; border: none; color: #333; padding: 20px 15px; text-align: center; text-decoration: none; border-radius: 10px; font-weight: 600; font-size: 18px; box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4); transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; align-items: center; justify-content: center; cursor: pointer; }
.kurum-btn i { font-size: 36px; margin-bottom: 12px; color: #333; transition: color 0.3s ease; }
.kurum-btn:hover { background-color: #e6c200; color: #000; box-shadow: 0 6px 18px rgba(230, 194, 0, 0.7); }
.kurum-btn:hover i { color: #000; }

.neden-biz { margin: 40px auto 0 auto; background-color: #f0f7ff; border-radius: 12px; padding: 20px 30px 10px 30px; box-shadow: 0 4px 10px rgba(0,102,204,0.1); max-width: 700px; width: fit-content; box-sizing: border-box; text-align: left; }
.neden-biz h2 { font-size: 30px; color: #0056b3; margin-bottom: 25px; display: flex; align-items: center; gap: 12px; justify-content: flex-start; }
.neden-biz ul { list-style: none; padding-left: 0; font-size: 22px; color: #333; max-width: 600px; }
.neden-biz ul li { margin-bottom: 12px; display: flex; align-items: center; gap: 12px; justify-content: flex-start; }
.neden-biz ul li i { color: #007BFF; font-size: 26px; }

.sosyal-medya-container { text-align: center; margin: 40px 0; }
.ikonlar { display: flex; justify-content: center; gap: 40px; font-size: 250px; color: #333; user-select: none; margin-bottom: 30px; }
.sosyal-buton { display: inline-block; padding: 15px 45px; background-color: #ffd700; color: #333; font-weight: 700; font-size: 24px; border-radius: 10px; text-decoration: none; cursor: pointer; transition: background-color 0.3s ease, color 0.3s ease; }
.sosyal-buton:hover { background-color: #e6c200; color: #000; }
.ikonlar i:hover { color: #000; cursor: default; }

.basvuru-alani { display: flex; flex-direction: column; align-items: center; text-align: center; margin-top: 20px; }
.basvuru-alani img { max-width: 100%; height: auto; margin-bottom: 15px; }
.basvuru-form { display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 20px; }
.basvuru-ikon { color: #007bff; flex: 0 0 auto; }
.form-alanlari { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.form-alanlari input[type="text"],
.form-alanlari input[type="tel"] { width: 190px; padding: 10px 10px; font-size: 14px; border: 1px solid #ccc; border-radius: 6px; text-align: left; }
.form-alanlari button { padding: 7px 14px; font-size: 14px; border: none; border-radius: 6px; background-color: #007bff; color: white; cursor: pointer; transition: background-color 0.3s ease; }
.form-alanlari button:hover { background-color: #0056b3;  }
@media (max-width: 500px) {
  .basvuru-form { flex-direction: column; }
  .form-alanlari { flex-direction: column; }
  .form-alanlari input,
  .form-alanlari button { width: 100%; }
}

@media (max-width: 1920px) {
  .category-item { font-size: 16px; }
  .category-menu { gap: 45px; }
}
@media (max-width: 1440px) {
  .category-item { font-size: 15px; }
  .category-menu { gap: 40px; }
}
@media (max-width: 1366px) {
  .category-item { font-size: 14px; }
  .category-menu { gap: 38px; }
}
@media (max-width: 1280px) {
  .category-item { font-size: 12px; }
}
@media (max-width: 1152px) {
  .category-item { font-size: 11px; }
}
@media (max-width: 1024px) {
  .category-item { font-size: 10px; }
  .category-menu { gap: 33px; }
}
@media (max-width: 800px) {
  .category-item { font-size: 9px; }
  .category-menu { gap: 15px; }
}
@media (max-width: 768px) {
  .category-menu { gap: 15px; padding: 15px 10px; }
  .category-item { width: 180px; padding: 18px 20px; font-size: 14px; }
}
@media (max-width: 480px) {
  .category-item { flex: 1 1 100%; padding: 15px 10px; }
}
@media (max-width: 400px) {
  .category-menu { gap: 2px; padding: 15px 10px; }
  .category-item {   width: 140px !important;
  max-width: 140px !important;
  flex: 0 0 140px !important; text-align: center; }
}

.image-gallery { max-width: 90%; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 22px; margin-top: 25px; justify-content: center; padding: 20px; }
.gallery-item { position: relative; width: 18.4%; cursor: pointer; overflow: hidden; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.content-page p { font-size: 18px; line-height: 1.8; text-align: justify; text-indent: 30px; margin-bottom: 20px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item span { position: absolute; top: 0; left: 0; width: 100%; padding: 10px 12px; background: rgba(0, 0, 0, 0.55); color: #fff; font-family: 'Mulish', sans-serif; font-size: 14px; text-align: center; box-sizing: border-box; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }

@media (max-width: 1920px) {
  .gallery-item img { height: 350px; }
}
@media (max-width: 1440px) {
  .gallery-item span { font-size: 12px; }
}
@media (max-width: 1366px) {
  .gallery-item span { font-size: 12px; }
  .gallery-item img { height: 240px; }
}
@media (max-width: 1280px) {
  .gallery-item { width: 18.2%; }
}
@media (max-width: 1024px) {
  .gallery-item { width: 17.7%; }
  .gallery-item span { font-size: 10px; }
  .gallery-item img { height: 200px; }
}
@media (max-width: 800px) {
  .gallery-item { width: 17.2%; }
  .gallery-item span { font-size: 9px; }
  .gallery-item img { height: 150px; }
}
@media (max-width: 768px) {
  .gallery-item { width: 100%; }
  .gallery-item img { height: 290px; }
  .gallery-item span { font-size: 12px; }
}
@media (max-width: 480px) {
  .gallery-item { width: 100%; }
}

.iletisim-form { display: flex; flex-direction: column; gap: 15px; align-items: center; }
.iletisim-form label { font-weight: bold; color: #444; width: 100%; max-width: 300px; text-align: left; }
.iletisim-form input,
.iletisim-form textarea { width: 100%; max-width: 300px; padding: 12px; border: 1px solid #ccc; border-radius: 8px; font-size: 15px; font-family: inherit; }
.iletisim-form button { width: 100%; max-width: 300px; padding: 12px; background-color: #007bff; color: white; border: none; border-radius: 8px; font-size: 16px; cursor: pointer; transition: background-color 0.3s; }
.iletisim-form button:hover { background-color: #0056b3; }

.custom-map { width: 90%; height: 400px; display: block; margin: 30px auto 60px auto; border: none; border-radius: 15px; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); transition: box-shadow 0.3s ease; }
.custom-map:hover { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25); }

header,
.category-menu,
.image-gallery,
.site-footer { border-radius: 20px; background-color: #222; box-shadow: 0 4px 15px rgba(0,0,0,0.7); }
.site-footer { background-color: #222; color: #eee; padding: 40px 20px 20px; font-family: 'Mulish', sans-serif; border-radius: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.7); max-width: 90%; margin: 20px auto; }
.footer-container { display: flex; flex-direction: column; gap: 25px; text-align: center; }
.footer-links-contact { display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap; font-weight: 600; }
.footer-address { display: flex; align-items: center; color: #eee; font-size: 16px; margin-right: 20px; }
.footer-address i { font-size: 20px; margin-right: 8px; color: #ffd700; }
.footer-contact { display: flex; gap: 30px; color: #eee; }
.footer-contact i { color: #ffd700; }
.footer-contact a { text-decoration: none; color: #eee; }
.social-icons { margin-top: 10px; text-align: center; }
.social-icons a { color: #fff; margin: 0 15px; font-size: 28px; transition: color 0.3s ease; }
.social-icons a:hover { color: #ff7f50; }
.footer-slogan { font-style: italic; color: #f39c12; font-size: 15px; border-top: none; }
.footer-alt-not { margin-top: 1px; font-size: 13px; color: #aaa; border-top: 1px dotted #444; padding-top: 15px; }
.footer-alt-not h1 { display: inline-block; font-size: 13px; }
@media (max-width: 1366px) {
  .footer-container { padding: 0 50px; }
  .footer-links-contact { gap: 30px; }
  .footer-menu { gap: 25px; }
  .footer-contact { gap: 25px; }
}
@media (max-width: 768px) {
  .footer-links-contact { flex-direction: column; gap: 15px; font-weight: normal; }
  .footer-menu { gap: 15px; flex-wrap: wrap; justify-content: center; }
  .footer-contact { flex-direction: column; gap: 10px; text-align: center; }
  .social-icons { text-align: center; margin-top: 20px; }
  .footer-slogan { font-size: 14px; }
  .footer-alt-not { font-size: 12px; }
}
@media (max-width: 480px) {
  .footer-container { padding: 0 20px; }
  .footer-links-contact { flex-direction: column; gap: 10px;  font-weight: normal; }
  .footer-menu { gap: 10px; flex-wrap: wrap; justify-content: center; }
  .footer-contact { flex-direction: column; gap: 5px; text-align: center; }
  .social-icons { text-align: center; margin-top: 15px; }
  .footer-slogan { font-size: 12px; }
  .footer-alt-not { font-size: 10px; }
}
