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

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;
  }
}


.background-section {
    background-image: url('https://img1.wsimg.com/isteam/ip/afc3fe12-7cf9-41c3-9d2f-315aa1391cb0/image_6487327%20(1).JPG/:/rs=w:1440,h:1440');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    width: 100%;
    height: 500px;
    margin-top: 80px;
}

.content {
    margin: 0;
    padding: 0;
}

.contact-section {
    background: linear-gradient(to right, #1e1e1e, #4b4b4b);
    color: white;
    text-align: center;
    padding: 50px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.contact-section h1 {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.contact-section p {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #ddd;
}

.contact-section hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
    margin-top: 40px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.contact-section .special {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.contact-section .special:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.6);
}
.container {
    position: relative;
    background-image: url('https://img1.wsimg.com/isteam/ip/afc3fe12-7cf9-41c3-9d2f-315aa1391cb0/office%20fr.jpg/:/rs=w:1440,h:1440'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 40px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    min-height: 75vh;
    position: relative;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(20, 20, 20, 0.90));
    z-index: 0;
}

.container > * {
    position: relative;
    z-index: 1;
}

.contact-form {
    background: rgba(42, 42, 42, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    padding: 50px;
    flex-basis: 50%;
    max-width: 600px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    animation: slideInLeft 0.8s ease-out;
    margin-top: 80px;
	opacity: 0;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-form:hover {
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.3);
    border-color: rgba(255, 0, 0, 0.5);
    transform: translateY(-5px);
}

.form-title {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 35px;
    font-weight: bold;
    color: white;
    position: relative;
    padding-bottom: 20px;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    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);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    width: 100%;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
    color: #000;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff0000;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.15);
    transform: translateY(-2px);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.button-group {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.contact-form button {
    padding: 16px 55px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 1.15em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

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

.contact-form button:hover::before {
    left: 100%;
}

.contact-form button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 45px rgba(255, 0, 0, 0.7);
    background: linear-gradient(135deg, #ff3333 0%, #ff0000 100%);
}

.logo-container {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
	opacity: 0;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate(-50%, -30px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.logo.section-logo {
    width: 220px;
    height: auto;
    filter: drop-shadow(0 5px 20px rgba(255, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

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

.contact-info {
    flex-basis: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 35px;
    padding: 50px 40px;
    animation: slideInRight 0.8s ease-out;
    margin-top: 100px;
	opacity: 0; 
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.info-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #ff0000;
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.info-item img {
    width: 45px;
    height: 45px;
    filter: drop-shadow(0 3px 10px rgba(255, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.info-item:hover img {
    transform: scale(1.1) rotate(5deg);
}

.info-item p {
    margin: 0;
    font-size: 1.15em;
    color: white;
    font-weight: 500;
}


@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        align-items: center;
        padding: 60px 20px;
    }

    .contact-form,
    .contact-info {
        width: 100%;
        max-width: 600px;
    }

    .logo-container {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }
}

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

    .contact-section h1 {
        font-size: 2em;
    }

    .contact-form {
        padding: 30px 25px;
    }

    .form-title {
        font-size: 1.8em;
    }

    .logo.section-logo {
        width: 150px;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
    }

    .info-item:hover {
        transform: translateY(-5px);
    }
}

@media screen and (max-width: 768px) {
  .contact-section {
    padding: 40px 20px;
  }
  
  .contact-section h1 {
    font-size: 2em;
    margin-bottom: 15px;
    letter-spacing: 1px;
  }
  
  .contact-section p {
    font-size: 1em;
    margin-bottom: 12px;
  }
  
  .contact-section hr {
    margin-top: 30px;
  }
  
  .contact-section .special {
    padding: 10px 25px;
    font-size: 0.95em;
  }
  
  .container {
    padding: 60px 20px;
    flex-direction: column;
    align-items: center;
    min-height: auto;
    background-attachment: scroll;
  }
  
  .logo-container {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin-bottom: 30px;
  }
  
  .logo.section-logo {
    width: 150px;
  }
  
  .contact-form {
    flex-basis: 100%;
    max-width: 100%;
    width: 90%;
    padding: 35px 25px;
    margin-top: 0;
  }
  
  .form-title {
    font-size: 1.8em;
    margin-bottom: 25px;
    padding-bottom: 15px;
  }
  
  .form-title::after {
    width: 80px;
    height: 3px;
  }
  
  .contact-form form {
    gap: 15px;
  }
  
  .form-group {
    width: 90%;
    margin: 0 auto;
  }
  
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"],
  .contact-form select,
  .contact-form textarea {
    padding: 12px 15px;
    font-size: 0.95em;
    width: 100%;
  }
  
  .contact-form textarea {
    min-height: 100px;
  }
  
  .button-group {
    margin-top: 10px;
  }
  
  .contact-form button {
    padding: 14px 40px;
    font-size: 1em;
    width: 100%;
    max-width: 280px;
  }
  
  .contact-info {
    flex-basis: 100%;
    width: 100%;
    max-width: 100%;
    padding: 30px 20px;
    gap: 20px;
    margin-top: 20px;
  }
  
  .info-item {
    flex-direction: row;
    padding: 20px;
    gap: 15px;
    text-align: left;
  }
  
  .info-item:hover {
    transform: translateY(-5px);
  }
  
  .info-item img {
    width: 40px;
    height: 40px;
  }
  
  .info-item p {
    font-size: 1em;
  }
}

@media screen and (max-width: 480px) {
  .contact-section h1 {
    font-size: 1.8em;
  }
  
  .contact-section p {
    font-size: 0.95em;
  }
  
  .container {
    padding: 50px 15px;
  }
  
  .contact-form {
    padding: 30px 20px;
    width: 90%;
  }
  
  .form-title {
    font-size: 1.6em;
  }
  
  .form-group {
    width: 90%;
  }
  
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"],
  .contact-form select,
  .contact-form textarea {
    padding: 12px;
    font-size: 0.9em;
  }
  
  .contact-form button {
    padding: 12px 30px;
    font-size: 0.95em;
    width: 100%;
  }
  
  .contact-info {
    padding: 25px 15px;
  }
  
  .info-item {
    padding: 18px 15px;
  }
  
  .info-item img {
    width: 35px;
    height: 35px;
  }
  
  .info-item p {
    font-size: 0.95em;
  }
}

.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;
  }
}
