:root {
    --main-color: #e10600;
    /* Kırmızı */
    --second-color: #ffffff;
    /* Beyaz */
    --bg-color: #1a1a1a;
    /* Koyu zemin */
    --text-dark: #111111;
    /* Navbar zemin vs. */
    --text-light: #ffffff;
    /* Başlıklar */
    --text-soft: #bbbbbb;
    /* Açıklamalar */
    --hover-color: #b00000;
    /* Buton hover kırmızı */
}


body,html {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-light);
    scroll-behavior: smooth;
    overflow-x: hidden;

    
}
section {

    min-height: 100vh;
    overflow-x: hidden;
}

/* Scrollbar genişliği */
::-webkit-scrollbar {
    width: 8px;
}

/* Scrollbar track (arka plan) */
::-webkit-scrollbar-track {
    background: var(--bg-color);
    /* Koyu zemin */
}

/* Scrollbar thumb (kaydırma çubuğu) */
::-webkit-scrollbar-thumb {
    background: var(--main-color);
    /* Ana renk */
    transition: background 0.3s;
}

/* Hover’da renk değişimi */
::-webkit-scrollbar-thumb:hover {
    background: var(--hover-color);
    /* Hover’da hafif daha açık ton */
}

/*NAVBAR----------------------------------------------------------------------------------*/
.navbar {
    position: fixed;
    top: -100px;
    /* animasyon için yukarıda başlat */

    display: flex;
    align-items: flex-start;
  
    z-index: 999;
    animation: navbarSlideDown 0.8s ease-out forwards;
}

.logo {
    height: 50px;
    /* Eskisi 80px’di */
    width: auto;
    /* Otomatik orantı */
    margin-right: 16px;
}

.nav-links {
    background-color: var(--bg-color);
    padding: 12px 30px;
    /* Üst-alt padding’i de biraz küçülttüm */
    border-radius: 0 0 30px 0;
    /* sağ alt köşeyi oval yapar */
    display: flex;
    gap: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);

    align-items: center;
    /* Dikeyde ortalar */
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--main-color);
}

@keyframes navbarSlideDown {
    to {
        top: 0px;
    }
}

/* hamburger görünümü */
.mobile-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 6px 24px;
    background-color: var(--bg-color);

    border-radius: 0 0 30px 0;
}

/* mobil menü (tam ekran) */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--text-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 1000;
    transition: left 0.4s ease;
}

.mobile-menu a {
    font-size: 22px;
    color: var(--second-color);
    text-decoration: none;
    font-weight: 600;
}

.mobile-menu a:hover {
    color: var(--main-color);
}

/* menü kapatma X */
.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 36px;
    color: var(--second-color);
    cursor: pointer;
}

body.menu-open .hamburger {
    display: none;
}

/* responsive ayar */
@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        justify-content: flex-start;
    }

    .mobile-logo {
        width: 50px;
        height: 50px;
        object-fit: contain;
        margin-right: 10px;
    }

    .hamburger {
        font-size: 28px;
        color: var(--text-light);
        cursor: pointer;
        line-height: 1;
    }

    .mobile-header {
        display: flex;
        font-size: 22px;
        background-color: var(--text-dark);
        width: 90vw;
        border-radius: 0 0 30px 0;
        color: var(--text-light);
        gap: 10px;
    }

    .desktop-nav {
        display: none;
    }
}


/*NAVBAR----------------------------------------------------------------------------------*/
/*CTA----------------------------------------------------------------------------------*/
.floating-buttons {
    position: fixed;
    bottom: 0px;
    right: 0px;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    padding: 12px;
    display: flex;
    gap: 10px;
    z-index: 1000;
    animation: slideUpFade 0.6s ease-out 0.4s both;
}

.floating-buttons i {
    font-size: 24px;
    background-color: var(--text-dark);
    color: var(--second-color);
    transition: transform 0.3s ease, color 0.3s ease;
    border: 1px solid var(--text-dark);
    border-radius: 50%;
    padding: 6px;
}

.floating-buttons i:hover {
    transform: scale(1.1);
    color: var(--main-color);
}

.floating-buttons .scroll-top,
.floating-buttons .icon-button {
    background: none;
    border: none;
    cursor: pointer;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*CTA----------------------------------------------------------------------------------*/
/*HERO----------------------------------------------------------------------------------*/
.hero {
    width: 100%;
    height: 100vh;
    background: url("hero.png") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: left;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 20px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.hero p {
    font-size: 24px;
    color: var(--text-soft);
    margin-bottom: 40px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    position: relative;
    overflow: hidden;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: none;
    display: inline-block;
    z-index: 1;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--hover-color);
    z-index: -1;
    transition: width 0.4s ease;
}

.btn:hover::before {
    width: 100%;
}

.btn:hover {
    color: white;
}


.btn-primary {
    background-color: var(--main-color);
    color: var(--second-color);
}


.btn-secondary {
    background-color: transparent;
    color: var(--second-color);
    border: 2px solid var(--second-color);
}

.btn-secondary:hover {
    border: 2px solid var(--hover-color);
}

/* hero içine degrade overlay ekle */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 10%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 90%);
    z-index: 1;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 42px;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 22px;
        margin-bottom: 20px;
    }

}

/*HERO----------------------------------------------------------------------------------*/
/*STATS LOGOLAR----------------------------------------------------------------------------------*/
/* İstatistik kutusu */
.stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 80px 20px;
    background: var(--bg-color);
    color: var(--text-light);
    text-align: center;
}

.stat-item {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    align-items: center;

    position: relative;
    overflow: hidden;
    padding: 12px;
    background-color: var(--bg-color);
    transition: color 0.3s ease;
    z-index: 1;
}

.stat-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--hover-color);
    /* kırmızı dolgu */
    z-index: -1;
    transition: width 0.4s ease;
}

.stat-item:hover::before {
    width: 100%;
}

.stat-item:hover.stat-item i {
    transform: rotate(360deg);
    color: var(--text-light);
}

.stat-item i {
    font-size: 48px;
    color: var(--main-color);
    transition: transform 0.6s ease;
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
}

/* Logo kısmı */
.logo-section {
    padding: 40px 20px;
    min-height: 45vh;
    background: var(--second-color);
    color: var(--text-dark);
    text-align: center;
}

.logo-header {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.logo-title-box {
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 1.2rem;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 30px;
    justify-items: center;
}

.logo-grid img {
    height: 150px;

    transition: 0.3s ease;
}

.logo-grid img:hover {

    transform: scale(1.05);
}
@media (max-width: 768px) {
.logo-grid img {
    height: 120px;
}
}
/*STATS LOGOLAR----------------------------------------------------------------------------------*/

/*ABOUT SECTION----------------------------------------------------------------------------------*/
.about-us {
    background-color: var(--bg-color);
    color: var(--text-light);
    padding: 80px 0px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-image {
    flex: 1 1 500px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-top-left-radius: 30px;
    border-bottom-right-radius:30px ;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.about-text {
    flex: 1 1 300px;
    background-color: var(--bg-color);
    padding: 12px;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--main-color);
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--text-light);
}

.btn-info {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: transparent;
  border: 2px solid var(--main-color);
  color: var(--text-light);
  font-weight: 500;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
  text-decoration: none;
}

.btn-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--main-color);
  z-index: -1;
  transition: width 0.3s ease;
}

.btn-info:hover::before {
  width: 100%;
}
@media (max-width: 768px) {
   .about-image img {
    max-width: 90%;
}
.about-text {
    padding: 24px;
}
}
/*ABOUT SECTION----------------------------------------------------------------------------------*/
/*SERVICES SECTION----------------------------------------------------------------------------------*/
.services-section {
  position: relative;
  background-image: url("hero5.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text-light);
  padding: 100px 0px;
  text-align: center;
  overflow: hidden;
}
.services-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  filter: blur(2px);
  z-index: 0;
  transform: scale(1.1); /* blur kenarları taşırmasın */
}
.section-title {
  font-size: 48px;
  margin-bottom: 60px;
    
}

.services-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.service-card {
  background: var(--bg-color);
  padding: 20px;
  width: 300px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--hover-color);
  z-index: 0;
  transition: left 0.4s ease;
}

.service-card:hover::before {
  left: 0;
}

.service-card:hover {
  color: var(--text-light);
}

.service-card * {
  position: relative;
  z-index: 1;
}

.service-card img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card h3 {
  margin-top: 15px;
  font-size: 1.4rem;
}

.service-card p {
  font-size: 1rem;
  margin: 10px 0;
}

.more-info-btn {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid var(--hover-color);
  color: var(--text-light);
  text-decoration: none;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}

.more-info-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--hover-color);
  z-index: -1;
  transition: left 0.4s ease;
}

.more-info-btn:hover::before {
  left: 0;
}

.more-info-btn:hover {
  color: var(--text-light);
}


/* Mobil */
@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
    align-items: center;
  }
.service-card {
  width: 220px;
}
.section-title {
  font-size: 40px;
  margin-bottom: 60px;
    
}
}

/*SERVICES SECTION----------------------------------------------------------------------------------*/
/*FOOTER----------------------------------------------------------------------------------*/
.site-footer {
  background-color: var(--text-dark);
  color: var(--text-light);
  padding: 60px 40px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100vw;
  margin: auto;
  gap: 10px;
}

.footer-left, .footer-links, .footer-contact {
  flex: 1 1 250px;
}

.footer-logo {
  width: 80px;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--main-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--text-soft);
  margin-top: 40px;
  font-size: 0.85rem;
}
.footer-contact p i {
  margin-right: 8px;
  color: var(--main-color);
}
.footer-contact p a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-contact p a:hover {
  color: var(--main-color);
}
.footer-bottom a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--hover-color);
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left, .footer-links, .footer-contact {
    margin-bottom: 20px;
  }
  .footer-bottom {
  margin-bottom: 50px;
}

}
@media (max-width: 1024px) {

.site-footer {

  padding: 60px 20px;

}
.footer-container {

  width: 80vw;

}
}

/*FOOTER----------------------------------------------------------------------------------*/
/*SERVICES----------------------------------------------------------------------------------*/
.hero-service {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("hero2.png") center/cover no-repeat;
  color: var(--text-light);
  padding: 120px 30px;
  text-align: center;
  min-height: 20vh;
}

.hero-service h1 {
  font-size: 48px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}

.hero-service p {
  font-size: 1.3rem;
  margin-top: 10px;
  color: var(--text-light);
}

.services-grid {
  display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));

  gap: 30px;
  padding: 60px 30px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
   justify-content: center;
}

.services-card {
  position: relative;
  background: var(--dark-color);
  color: var(--text-light);
  overflow: hidden;
  padding: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  max-height: 350px;
  max-width: 350px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: color 0.3s ease;
}

.services-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--main-color), transparent);
  transition: left 0.4s ease;
  z-index: 0;
}

.services-card:hover::before {
  left: 0;
}

.services-card * {
  position: relative;
  z-index: 1;
}


.services-card img {
  max-width: 100%;
  height: 70%;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.services-card:hover img {
  transform: scale(1.05);
}

.services-card h3 {
  color: var(--text-light);
  margin: 16px;
}

.services-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin: 0 16px 20px 16px;
}
@media (max-width: 768px) {
.hero-service h1 {
  font-size: 32px;
}

}
/*SERVICES----------------------------------------------------------------------------------*/
/*ABOUT----------------------------------------------------------------------------------*/
.hero-about {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("hero4.png") center/cover no-repeat;
  color: var(--text-light);
  padding: 120px 30px;
  text-align: center;
  min-height: 20vh;
}

.hero-about h1 {
  font-size: 48px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}
.hero-about p {
  font-size: 1.3rem;
  margin-top: 10px;
  color: var(--text-light);
}
.about-page {
  background-color: var(--bg-color);
  padding: 80px 30px;
  color: var(--text-light);
  max-width: 1000px;
  margin: 0 auto;
}

.about-section {
  margin-bottom: 60px;
}

.about-section h2 {
  font-size: 2rem;
  color: var(--main-color);
  text-shadow: 1px 1px 5px rgba(0,0,0,0.2);
  margin-bottom: 20px;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-soft);
}


/*ABOUT----------------------------------------------------------------------------------*/
/*BLOG----------------------------------------------------------------------------------*/

.blog-container {
  display: flex;
  padding: 80px 20px;
}
.hero-blog {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("hero7.png") center/cover no-repeat;
  color: var(--text-light);
  padding: 120px 30px;
  text-align: center;
  min-height: 20vh;
}

.hero-blog h1 {
  font-size: 48px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}
.hero-blog p {
  font-size: 1.3rem;
  margin-top: 10px;
  color: var(--text-light);
}
.blog-posts {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}

.blog-card {
  background: var(--text-dark);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.blog-card img {
  padding: 24px;
  width: 80%;
  height: auto;
  display: block;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.meta {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.full-text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--text-light);
  margin-top: 10px;
}
.toggle-btn {
  background-color: transparent;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  padding: 8px 16px;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s ease, color 0.3s ease;
}
.toggle-btn:hover {
  background-color: var(--main-color);
  color: var(--text-light);
}

/* Sidebar */
.blog-sidebar {
  flex: 1;
  margin-left: 20px;
  position: sticky;
  top: 30px;
  background: var(--text-dark);
  padding: 20px;
  height: fit-content;
}

.blog-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-sidebar li {
  margin-bottom: 10px;
}

.blog-sidebar a {
  color: var(--text-light);
  text-decoration: none;
  transition: 0.2s ease-in-out;
}

.blog-sidebar a:hover {
  color: var(--hover-color);
}

/* Mobil Sidebar */
#sidebar-toggle {
  display: none;
}

/* Mobil */
@media (max-width: 768px) {
  .blog-container {
    flex-direction: column;
  }

.blog-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 60%;
    max-width: 300px;
    height: 100vh;
    z-index: 9999;
    padding: 20px;
    transition: right 0.3s ease;
    overflow-y: auto;
  }

  .blog-sidebar.open {
    right: 0;

  }
  #sidebar-toggle {
    display: block;
    position: fixed;
    top: 80px;
    right: 0px;
    z-index: 900;
    background: var(--bg-color);
    color: var(--text-light);
    border: none;
    font-size: 1.5rem;
    padding: 8px;
    cursor: pointer;
  }
}

/*BLOG----------------------------------------------------------------------------------*/
/*CONTACT----------------------------------------------------------------------------------*/
.hero-contact {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("hero6.png") center/cover no-repeat;
  color: var(--text-light);
  padding: 120px 30px;
  text-align: center;
  min-height: 20vh;
}

.hero-contact h1 {
  font-size: 48px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}
.hero-contact p {
  font-size: 1.3rem;
  margin-top: 10px;
  color: var(--text-light);
}
.contact-section {
  padding: 60px 30px;
  background-color: var(--bg-color);
  color: var(--text-light);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-map {
  flex: 1 1 50%;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

.contact-info {
  flex: 1 1 50%;
  background: var(--text-dark);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.contact-info h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.6rem;
  font-weight: 700;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.info-item {
  background: var(--bg-color);
  flex-direction: column;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.info-item i {
  font-size: 36px;
  color: var(--main-color);
  margin-top: 2px;
}

.info-text a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.4;
  display: block;
  transition: 0.2s ease-in;
}
.info-text a:hover {
  color: var(--hover-color);
}
.logo-box {
  text-align: center;
  margin-top: 20px;
}

.logo-box img {
  height: 60px;
  margin-bottom: 10px;
}

.logo-box .slogan {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--main-color);
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
  .info-grid {
    flex-direction: column;
  }
}

/*CONTACT----------------------------------------------------------------------------------*/
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}