body, html {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  color: #000000;
  width: 100%;
  overflow-x: hidden;
  background-color: #d1d1d1;
}


header nav.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background: #d1d1d1;
  padding: 10px 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo-container {
  margin-right: 20px;
  flex-shrink: 0;
}

header .logo {
  height: 50px;
  max-width: 100%;
}

header nav.sticky ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  flex-grow: 1;
  justify-content: space-around;
}

header nav.sticky ul li {
  position: relative;
  padding: 10px 0;
  white-space: nowrap;
}

header nav.sticky ul li a {
  color: #030303;
  text-decoration: none;
  padding: 5px 5px;
  display: inline-block;
  font-weight: normal;
  font-size: 1rem;
  transition: all 0.3s ease;
}

header nav.sticky ul li a:hover {
  color: red;
  font-weight: bold;
}

header nav.sticky ul li a::after {
  content: '';
  display: block;
  height: 2px;
  background: red;
  width: 0;
  transition: width 0.3s;
}

header nav.sticky ul li a:hover::after {
  width: 100%;
}

header nav.sticky ul li.special a {
  border: 2px solid #FF0000;
  padding: 8px 20px;
  border-radius: 15px;
  background-color: #ff0000;
  color: #000;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 0.85rem;
}

header nav.sticky ul li.special a:hover {
  background-color: #FF0000;
  color: #ffffff;
}

nav.sticky ul li a.active {
  position: relative;
}

nav.sticky ul li a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: red;
}

@media only screen and (min-width: 769px) {
  .dropdown {
    position: relative;
  }

  .dropdown-content {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #c7c7c7;
    min-width: 180px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    padding: 5px 0;
    z-index: 1000;
    flex-direction: column;
  }

  .dropdown-content li {
    list-style: none;
  }

  .dropdown-content a {
    display: block;
    width: 100%;
    padding: 14px 20px;
    text-align: left;
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    color: black;
    text-decoration: none;
    letter-spacing: 0.6px;
    line-height: 26px;
    transition: background-color 0.3s ease;
  }

  .dropdown-content a:hover {
    background-color: #f1f1f1;
  }

  .dropdown:hover .dropdown-content {
    display: flex !important;
  }
}
.dropdown-content a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.dropdown-content svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  padding: 6px 42px;
  background: none;
  border: none;
}

@media only screen and (max-width: 768px) {
  header nav.sticky {
    flex-wrap: wrap;
    padding: 8px 10px;
  }

  .menu-toggle {
    display: block;
  }

  header .logo {
    height: 32px;
    max-width: 100px;
  }

  header nav.sticky ul {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #d1d1d1;
    width: 100%;
    padding: 10px;
  }

  header nav.sticky ul.active {
    display: flex;
  }

  header nav.sticky ul li {
    width: 100%;
    text-align: left;
    padding: 8px 0;
  }

  header nav.sticky ul li a {
    font-size: 0.9rem;
    padding: 8px 0;
    width: 100%;
  }

  header nav.sticky ul li.special a {
    text-align: center;
    width: 80%;
    display: block;
  }

  .dropdown-content {
    display: block !important;
    position: static;
    background: none;
    box-shadow: none;
    padding-left: 20px;
    margin-top: 4px;
    flex-direction: column;
  }

  .dropdown-content li {
    list-style: none;
  }

  .dropdown-content a {
    display: block;
    padding: 6px 0;
    font-size: 0.95rem;
    font-family: 'Open Sans', sans-serif;
    color: black;
    text-decoration: none;
    line-height: 1.4;
  }

  .dropdown:hover .dropdown-content {
    display: block !important;
  }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main-container {
    margin: 0;
    padding: 0;
}

.background-section-asphalt {
    background-image: url('photos/care3.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    height: 750px;
    width: 100%;
    position: relative;
    margin-top: 80px;
}

.background-section-asphalt::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 1;
}

.asphalt-title {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(to right, #1e1e1e, #4b4b4b);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.asphalt-title h1 {
    font-size: 46px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 2px;
    margin: 0;
}

.asphalt-intro {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 80px 40px;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-text {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro-text h2 {
    font-size: 2.8em;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.intro-text h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

.intro-text p {
    font-size: 1.2em;
    color: #ccc;
    line-height: 1.8;
    max-width: 900px;
    margin: 35px auto 0;
}

.care-services-section {
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
    padding: 100px 40px;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 70px;
}

.services-header h2 {
    font-size: 3em;
    color: #fff;
    margin-bottom: 20px;
    font-weight: bold;
}

.header-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
    margin: 0 auto 20px;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

.services-header p {
    font-size: 1.2em;
    color: #bbb;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.service-item.reverse {
    transform: translateX(50px);
}

.service-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.service-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    border: 2px solid #444;
    background: #1a1a1a;
    height: 400px;
}

.service-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.3);
    border-color: #ff0000;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.service-image:hover img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 2.2em;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.service-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 60%;
    background: #ff0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.service-content p {
    font-size: 1.1em;
    color: #ccc;
    line-height: 1.8;
}

.care-cta-section {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 80px 40px;
}

.cta-banner-care {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    border-radius: 20px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 15px 50px rgba(255, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.cta-banner-care.animate {
    opacity: 1;
    transform: translateY(0);
}

.cta-banner-care::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-content-care {
    flex: 1;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.cta-banner-care.animate .cta-content-care {
    opacity: 1;
    transform: translateX(0);
}

.cta-content-care h3 {
    font-size: 2.5em;
    color: #fff;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-content-care p {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.95);
}

.estimate-button-care {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 22px 50px;
    background: #fff;
    color: #ff0000;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3em;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateX(30px);
}

.cta-banner-care.animate .estimate-button-care {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s ease-out 0.4s, transform 0.8s ease-out 0.4s, 
                all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.estimate-button-care::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.2), transparent);
    transition: left 0.6s ease;
}

.estimate-button-care:hover::before {
    left: 100%;
}

.estimate-button-care svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.estimate-button-care:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: #f0f0f0;
}

.estimate-button-care:hover svg {
    transform: translateX(8px);
}

.curing-section {
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
    padding: 100px 40px;
}

.curing-container {
    max-width: 1600px;
    margin: 0 auto;
}

.curing-header {
    text-align: center;
    margin-bottom: 70px;
}

.curing-header h2 {
    font-size: 3em;
    color: #fff;
    margin-bottom: 20px;
    font-weight: bold;
}

.curing-header p {
    font-size: 1.2em;
    color: #bbb;
    margin-top: 25px;
}

.curing-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.curing-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid #444;
    position: relative;
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(0.9);
}

.curing-card.animate {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, all 0.4s ease;
}

.curing-card:nth-child(1).animate { transition-delay: 0.1s; }
.curing-card:nth-child(2).animate { transition-delay: 0.2s; }
.curing-card:nth-child(3).animate { transition-delay: 0.3s; }
.curing-card:nth-child(4).animate { transition-delay: 0.4s; }
.curing-card:nth-child(5).animate { transition-delay: 0.5s; }
.curing-card:nth-child(6).animate { transition-delay: 0.6s; }

.curing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.curing-card:hover::before {
    transform: scaleX(1);
}

.curing-card:hover {
    transform: translateY(-10px) scale(1);
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.3);
    border-color: #ff0000;
}

.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3.5em;
    font-weight: bold;
    color: rgba(255, 0, 0, 0.12);
    line-height: 1;
}

.curing-card h3 {
    font-size: 1.6em;
    color: #fff;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
    padding-right: 60px;
}

.curing-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, transparent);
    transition: width 0.4s ease;
}

.curing-card:hover h3::after {
    width: 100%;
}

.curing-card p {
    font-size: 1em;
    color: #d4d4d4;
    line-height: 1.9;
    flex-grow: 1;
}

.curing-card p strong {
    color: #ff6666;
    font-weight: 600;
}
.care-tips-box {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(255, 0, 0, 0.2);
}

.care-tips-box h3 {
    font-size: 2.2em;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.care-tips-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.care-tips-box ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.care-tips-box li {
    font-size: 1.05em;
    color: #e0e0e0;
    padding-left: 35px;
    position: relative;
    line-height: 1.7;
}

.care-tips-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff0000;
    font-weight: bold;
    font-size: 1.4em;
}

.faq-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.3), transparent);
    margin: 60px 0;
}

.faq-section {
    margin-top: 40px;
}

.faq-section h3 {
    font-size: 2.2em;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.faq-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.faq-disclaimer {
    text-align: center;
    font-size: 0.95em;
    color: #999;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.6;
}

.faq-item {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 0, 0, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #ff0000;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.faq-question h4 {
    flex: 1;
    margin: 0;
    font-size: 1.2em;
    color: #fff;
    font-weight: 600;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    color: #ff0000;
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 85px;
}

.faq-answer p {
    margin: 0;
    color: #d4d4d4;
    line-height: 1.8;
    font-size: 1.05em;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid rgba(255, 0, 0, 0.3);
}

.faq-cta-text {
    font-size: 1.3em;
    color: #ddd;
    margin-bottom: 20px;
    font-weight: 500;
}

.faq-contact-button {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.faq-contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.6);
    background: linear-gradient(135deg, #ff3333 0%, #ff0000 100%);
}

@media (max-width: 768px) {
    .care-tips-box ul {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .faq-icon {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }
    
    .faq-question h4 {
        font-size: 1.05em;
    }
}

@media (max-width: 1024px) {
    .service-item,
    .service-item.reverse {
        grid-template-columns: 1fr;
    }

    .curing-content {
        grid-template-columns: 1fr;
    }

    .care-tips-box ul {
        grid-template-columns: 1fr;
    }

    .cta-banner-care {
        flex-direction: column;
        text-align: center;
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .background-section-asphalt {
        height: 400px;
        margin-top: 60px;
    }

    .asphalt-title h1 {
        font-size: 32px;
    }

    .intro-text h2 {
        font-size: 2em;
    }

    .services-header h2,
    .curing-header h2 {
        font-size: 2em;
    }

    .service-content h3 {
        font-size: 1.6em;
    }

    .service-image img {
        height: 300px;
    }

    .care-services-section,
    .curing-section {
        padding: 60px 20px;
    }

    .cta-content-care h3 {
        font-size: 1.8em;
    }

    .care-tips-box {
        padding: 30px 25px;
    }
}

.footer {
    background-image: url('https://img1.wsimg.com/isteam/ip/afc3fe12-7cf9-41c3-9d2f-315aa1391cb0/Turkc.png/:/rs=w:1440,h:1440');
    background-size: cover;
    background-position: center 75%;
    background-attachment: fixed;
    position: relative;
    color: white;
    padding: 80px 40px 0;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(20, 20, 20, 0.9) 100%);
    z-index: 1;
}

.footer > * {
    position: relative;
    z-index: 2;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-logo {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(255, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-line {
    font-size: 1.1em;
    color: #ddd;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.footer-phone {
    font-size: 1.8em;
    font-weight: bold;
    color: #ff0000;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(255, 0, 0, 0.4);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    padding: 8px;
}
.social-icon svg,
.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.social-icon:hover {
    background: #ff0000;
    border-color: #ff0000;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

.social-icon:hover svg,
.social-icon:hover img {
    filter: brightness(0) invert(1);
}
.footer-nav {
    text-align: left;
}

.footer-nav h4 {
    font-size: 1.4em;
    margin: 0 0 25px 0;
    color: #fff;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.footer-nav h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, transparent);
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95em;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-nav ul li a::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #ff0000;
}

.footer-nav ul li a:hover {
    color: #ff0000;
    padding-left: 15px;
}

.footer-nav ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-info {
    text-align: left;
}

.footer-info h4 {
    font-size: 1.4em;
    margin: 0 0 25px 0;
    color: #fff;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.footer-info h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, transparent);
}

.footer-info-item {
    margin-bottom: 15px;
    color: #ccc;
    font-size: 0.95em;
    line-height: 1.6;
}

.footer-info-item strong {
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.footer-legal {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 25px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-legal-text {
    color: #aaa;
    font-size: 0.9em;
}

.footer-legal-links {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ff0000;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-logo-section {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
    }
}
@media only screen and (max-width: 768px) {
  .footer {
    padding: 120px 20px 0;
    background-size: cover;
    background-position: center 75%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    min-height: 600px;
    overflow: hidden;
  }

  .footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
  }

  .footer-logo {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 160px;
    margin: 0 auto 10px auto;
    display: block;
    z-index: 2;
  }

  .footer-contact {
    margin-bottom: 20px;
    z-index: 2;
    font-size: 1.1em;
    font-weight: bold;
    color: white;
    line-height: 1.4;
    text-align: center;
  }

  .footer-nav {
    position: relative !important;   
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100%;
    padding: 0 20px;
    margin-bottom: 30px;
    z-index: 2;
    text-align: left;
    align-self: flex-start;
  }

  .footer-nav h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: white;
  }

  .footer-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .footer-nav ul li {
    margin-bottom: 10px;
  }

  .footer-nav ul li a {
    font-size: 0.95em;
    color: white;
    text-decoration: none;
  }

  .footer-legal {
    position: relative;
    font-size: 0.85em;
    padding: 12px 0;
    background-color: #222;
    color: #ccc;
    width: 100%;
    text-align: center;
    z-index: 2;
    margin-top: auto;
  }

  .footer-legal a {
    color: #a9d5de;
    text-decoration: none;
    margin-left: 10px;
  }
}