
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');

:root {
    --main-color: #1eaa7e; 
    --black-color: #121212;
    --border: 0.1rem solid rgba(255, 255, 255, 0.2); 
    --accent-color: #ffc107; 
    --background-color: #e6dbdb; 
    --text-color: #2b2b2b;
}
*{
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: 0.2s ease;
}
 /*! base html codes */
 html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
 }
 body{
    background-color: var(--main-color);
    height: 200vh;
    overflow-x: hidden;
 } 
section{
    padding: 3.5rem 7%;
}
a{
    color: var(--black-color);
    text-decoration: none;
}
.btn  {
    margin-top: 1rem;
    display: inline-block;
    padding: 2rem 3.75rem;
    border-radius: 30rem;
    font-size: 1.7rem;
    color: #fff;
    background-color: var(--black-color);
    cursor: pointer;
     transition: all 0.3s ease;
}
.btn:hover {
    background-color: #2c2c2c; /* var(--black-color)’dan biraz daha açık */
    transform: scale(1.05);
}
.heading{
    color: #2b2b2b;
    text-transform: uppercase;
    font-size: 4rem;
    margin-bottom: 3.5rem;
    border-bottom: 0.1rem solid #fff;
}
@media (max-width: 768px) {
  .heading {
    font-size: 3rem;
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 480px) {
  .heading {
    font-size: 2.5rem;
    margin-bottom: 2rem; 
  }
}
.search-input{
    font-size: 1.6rem;
    color: var(--black-color);
    padding:1rem ;
    text-transform: none;
    border-radius: 3rem;

}
.contact-hero {
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    margin-top: -14.5rem;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.contact-hero h1.animated-text {
    color: #fff;
    font-size: 7rem;
    font-weight: 700;
    text-align: center;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 1s forwards;
}
.contact-hero p.animated-text{
    color: #fff;
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.contact-hero h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
}
/* Tablet (768px) */
@media (max-width: 768px) {
    .contact-hero {
        height: 500px;
        margin-top: -14rem;
        margin-bottom: 30px;
    }
    .contact-hero h1.animated-text {
        font-size: 4rem;
    }
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    .contact-hero p {
        font-size: 1.5rem;
    }
}
@media (max-width: 480px) {
    .contact-hero {
        height: 500px;
        margin-top: -11rem;
        margin-bottom: 20px;
    }
    .contact-hero h1.animated-text {
        font-size: 3.5rem;
    }
    .contact-hero h1 {
        font-size: 2rem;
    }
    .contact-hero p {
        font-size: 1rem;
    }
}
/*! header start */
.header .logo img {
    height: 10rem;
}
.header {
    background-color: #e6dbdb;
    display: flex; 
    align-items: center;
    justify-content: space-between;
    padding: 0 7%;
    margin:2rem 4%;
    border-radius: 30rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0px 0px 17px -2px rgba(0, 0, 0, 0.1);
 }
.header .navbar a{
    margin: 0 1rem;
    font-size: 1.6rem;
    color: var(--text-color);
    border-bottom: 0.1rem solid transparent;
}
.header .navbar .active,
.header .navbar a:hover{
    border-color: var(--main-color);
    padding-bottom:0.5rem ;
}
.header .buttons button{
    cursor: pointer;
    font-size: 2rem;
    margin-left: 2rem ;
    background-color: transparent;
}
#menu-btn{ 
    display: none;
}
.buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-item {
  display: flex;
  align-items: center;
  margin: 0.3rem 0;
  font-size: 1.5rem;
  color: var(--text-color);
}
.contact-item i {
  font-size: 1.8rem;
  margin-right: 0.5rem;
  color: var(--main-color);
}
.contact-item span{
    text-transform: lowercase;
    font-weight: bold; 
}
@media (max-width: 768px) {
    #menu-btn {
        display: block; 
        margin-left: auto;
        font-size: 2.5rem;
        margin-right: 2rem;
        background-color: #e6dbdb;
    }
    .header .navbar {
        display: flex;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background-color: #e6dbdb;
        flex-direction: column;
        padding: 1rem;
        border-radius: 1rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        z-index: 1000;
        max-height: 0;     
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
    padding: 0;
    }
    .header .navbar a {
        margin: 0.5rem 0;
        font-size: 1.4rem;
        opacity: 0;
        transform: translateY(0); 
        transition: opacity 0.4s ease-in-out;
        padding: 0.5rem 1rem;
        color: var(--text-color);
        text-decoration: none;
        border-radius: 0.5rem;
    }
    .header .navbar.open {
        max-height: 500px; 
        padding: 1rem 0.5rem;
   }
   .header .navbar.open a {
       opacity: 1;
}
.header .navbar.open a:nth-child(1) { transition-delay: 0.1s; }
.header .navbar.open a:nth-child(2) { transition-delay: 0.2s; }
.header .navbar.open a:nth-child(3) { transition-delay: 0.3s; }
.header .navbar.open a:nth-child(4) { transition-delay: 0.4s; }
.header .navbar.open a:nth-child(5) { transition-delay: 0.5s; }
.header .navbar.open a:nth-child(6) { transition-delay: 0.6s; }

.header .navbar a:hover {
    background-color: var(--main-color);
    color: #fff;
}
    .buttons {
        flex-direction: row; /* yan yana */
        justify-content: center;
        gap: 1.5rem;
        width: 100%;
        margin-left: 3.5rem;
    }
    .contact-item {
        font-size: 1.3rem;
    }
    .contact-item i {
        font-size: 1.5rem;   
    }
}
@media (max-width: 480px) {
  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 .5rem;
    margin: .5rem 1rem;
    border-radius: 3rem;
    gap: .5rem;
    flex-wrap: nowrap
  }
  .header .logo img {
    height: 3rem;
  }
  .buttons {
    display: flex !important;
    flex-direction: column;
    justify-content: center; 
    align-items: flex-start;
    gap: .2rem;
    margin: 0;
  }
  .contact-item {
    font-size: .9rem;
    line-height: 1.2;
  }
  .contact-item i {
    font-size: 1rem;
  }
  #menu-btn {
    font-size: 1.6rem;
    background: #e6dbdb;
    border: none;
    cursor: pointer;
  }
  .header .navbar a {
    font-size: .9rem;
    padding: .3rem .5rem;
  }
}
/*! header end */

/*! Sælg bilen start */
.Sælg{
    min-height: 100vh;
    background: url(../images/arkaplan.png)
     no-repeat;
    background-size: cover ; 
    background-position: center;  
    margin-top: -14.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3.5rem 7%;
}
.Sælg .content{
max-width: 60rem;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.Sælg .content h3 {
  font-size: 6rem;
  color: #fff;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}
.Sælg .content p {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.8;
  padding: 1rem 0;
  color: #ccc;
  opacity: 0;
  animation: fadeInUp 1.5s ease forwards;
  animation-delay: 0.5s;
}
.contact-form {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 2rem 3rem;
  border-radius: 1.5rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: 5%;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.2);
}
.contact-form h2 {
  text-align: center;
  font-size: 2.2rem;
  color: var(--black-color);
  margin-bottom: 1.5rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group.full {
  grid-column: 1 / -1;
}
.form-group label {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 0.3rem;
}
.form-group input,
.form-group textarea {
  padding: 0.7rem 1rem;
  font-size: 1.3rem;
  border: var(--border);
  border-radius: 0.4rem;
  background-color: white;
  color: var(--black-color);
}
.submit-btn {
  width: 100%;
  background-color: var(--main-color);
  color: white;
  font-size: 1.5rem;
  padding: 1rem;
  border: none;
  border-radius: 0.6rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.submit-btn:hover {
  background-color: #178a68;
}
.Sælg {
    min-height: 100vh;
    background: url(../images/arkaplan.png) no-repeat center center/cover;
    margin-top: -14.5rem ;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3.5rem 7%;
    position: relative;
    overflow: hidden;
    gap: 2rem; 
}
.Sælg .content {
    flex-grow: 1;
    max-width: calc(100% - 50rem - 5% - 3rem);
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    padding-right: 2rem;       
}
.contact-form {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 2rem 3rem;
    border-radius: 1.5rem;
    max-width: 70rem;
    margin-left: 0;
    margin-right: 2%;
    margin-top: 6rem;
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.2);
}
.contact-form h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--black-color);
    margin-bottom: 1.5rem;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group.full {
    grid-column: 1 / -1;
}
.form-group label {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.3rem;
}
.form-group input,
.form-group textarea {
    padding: 0.7rem 1rem;
    font-size: 1.3rem;
    border: var(--border);
    border-radius: 0.4rem;
    background-color: white;
    color: var(--black-color);
    width: 100%;
    box-sizing: border-box;
    resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--main-color);
    outline: none;
    box-shadow: 0 0 0.5rem rgba(0, 123, 255, 0.2);
}
.submit-btn {
    width: 100%;
    background-color: var(--main-color);
    color: white;
    font-size: 1.5rem;
    padding: 1rem;
    border: none;
    border-radius: 0.6rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    grid-column: 1 / -1;
    margin-top: 1rem;
}
.submit-btn:hover {
    background-color: #178a68;
}
.form-group select {
    padding: 0.7rem 1rem;
    font-size: 1.3rem;
    border: var(--border);
    border-radius: 0.4rem;
    background-color: white;
    color: var(--black-color);
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
}
.form-group select:focus {
    border-color: var(--main-color);
    outline: none;
    box-shadow: 0 0 0.5rem rgba(0, 123, 255, 0.2);
}
/*! Sælg bilen end */

/* hvorfor start */
   .hvorfor .box-container{
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
       gap: 3rem;
   }
   .hvorfor .box-container .box{
    padding: 2.5rem;
    background-color: #fff;
    border-radius: 3rem;
    background-color: #fff;
    min-height: 20rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;

   }
   .hvorfor .box-container .box img{
       width: 100%;
       object-fit: cover;
       margin-bottom: 2rem;
   }
   .hvorfor .box-container .box .steps{
       font-size: 2.5rem;
       padding: 1rem 0;
       text-transform: capitalize;
       margin-bottom: 1rem;
       font-weight: bold; 
       text-align: center;
   }
   .hvorfor .box-container .box h3{
       font-size: 1.2rem;
       margin-top: 1.1rem;
       
   }
 
.hvorfor {
     text-align: center;
     padding: 6rem 7% 4rem;
     }

.hvorfor p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #fff;
    max-width: 80rem;
    margin: 0 auto 4rem;      
}
@media (max-width: 768px) {
  .hvorfor p{
    font-size: 1.2rem;
  }
  .hvorfor .box-container .box {
    flex-direction: row; 
    align-items: center; 
  }
  .hvorfor .box-container .box img {
    width: 60%;
    max-width: 150px; 
    margin-right: 2rem;
    margin-bottom: 0; 
  }
  .hvorfor .box-container .box-head {
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
  }
  .hvorfor .box-container .box .steps{
   text-align: center;
   font-size: 2.5rem;
   margin-top: 0;
  }
  .hvorfor .box-container .box h3{
   text-align: center;
   font-size: 1.5rem;
   margin-top: 0;
  }
}
/* For mobile phones (max-width: 480px) */
@media (max-width: 480px) {
  .hvorfor .box-container .box {
    flex-direction: column; /* Revert to column for smaller screens if desired, or keep row */
    align-items: center;
    text-align: center;
  }
  
  .hvorfor .box-container .box img {
    width: 100%;
    margin-bottom: 2rem;
    margin-right: 0;
  }
.hvorfor .box-container .box .steps{
  text-align: center;
   font-size: 1.8rem;
   margin-top: 0;
  }
  .hvorfor .box-container .box h3{
   text-align: center;
   font-size: 1.1rem;
   margin-bottom: 0;
  }
}
/* hvorfor end */

/* page start */
    .page .row{
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        align-items: center;
    }
    .page .row .image{
        flex: 1 1 45rem;
        max-width: 600px;
    }
    .page .row img{
        width: 100%;
    }
    .page .row .content {
        flex: 1 1 45rem;
        min-width: 300px;
    }
    .page .row .content h3 {
        font-size: clamp(1.8rem, 2.5vw, 3rem);
        color: #fff; 
}
    .page .row .content h2 {
        font-size: clamp(1.6rem, 2vw, 2.5rem);
         color: #fff; 
}
  .page .row .content p,
  .page .row .content ul,
  .page .row .content ol {
        font-size: clamp(1rem, 1.2vw, 1.5rem);
        color: #fff; 
        padding: 1rem 0;
        line-height: 1.8;
        text-transform: none;
  }
.red-number {
    color: rgb(245, 47, 47);
    font-weight: bold; 
}
/* page start */
.page .row{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}
.page .row .image{
    flex: 1 1 45rem;
    max-width: 600px;
    padding: 1rem; 
}
.page .row img{
    width: 90%; 
    height: auto; 
    display: block;
    margin: 0 auto; 
}
.page .row .content {
    flex: 1 1 45rem;
    min-width: 300px;
}
.page .row .content h3 {
    font-size: clamp(1.8rem, 2.5vw, 3rem);
    color: #fff; 
}
.page .row .content h2 {
    font-size: clamp(1.6rem, 2vw, 2.5rem);
    color: #fff; 
}
.page .row .content p,
.page .row .content ul,
.page .row .content ol {
    font-size: clamp(1rem, 1.2vw, 1.5rem);
    color: #fff; 
    padding: 1rem 0;
    line-height: 1.8;
    text-transform: none;
}
.red-number {
    color: rgb(245, 47, 47);
    font-weight: bold; 
}
@media (max-width: 768px) {
    .page .row {
        flex-direction: column;
        gap: 1.5rem;
    }
    .page .row .image,
    .page .row .content {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 0.8rem;
    }
    .page .row img {
        width: 85%;
        height: auto;
        margin: 0 auto;
    }
    .page .row .content h3 {
        font-size: clamp(1.5rem, 4vw, 2.2rem);
    }
    .page .row .content h2 {
        font-size: clamp(1.3rem, 3.5vw, 2rem);
    }
    .page .row .content p,
    .page .row .content ul,
    .page .row .content ol {
        font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    }
}
@media (max-width: 480px) {
    .page .row {
        gap: 1rem;
    }
    .page .row .image {
        padding: 0.5rem;
    }
    .page .row img {
        width: 80%;
        height: auto;
        margin: 0 auto;
    }
    .page .row .content h3 {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }
    .page .row .content h2 {
        font-size: clamp(1.1rem, 4.5vw, 1.6rem);
    }
    .page .row .content p,
    .page .row .content ul,
    .page .row .content ol {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
    }
}
/* page end */

/* review start */
   .review .box-container{
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
       gap: 3rem;
   }
   .review .box-container .box{
    border: var(--border);
    text-align: center;
    padding: 3rem 2rem;
    background-color:#fff;
    border-radius: 3rem;
   }
   .review .box-container p{
    font-size: 1.5rem;
    line-height: 1.8;
    padding: 2rem 0;
   }
   .review .box-container .box .user {
    height: 7rem;
    width: 7rem;
    border-radius:  50%;
    object-fit: cover ;
   }
   .review .box-container .box img{
    height: 17rem;
    width: 17rem;
   }
   .review .box-container .box h3{
    padding: 1rem 0;
    font-size: 2rem;
    color: var(--main-color);
   }
   .review .box-container .box .stars{
    font-size: 1.5rem;
    color: gold;
   }
   @media (max-width: 768px) {
  .review .box-container {
    grid-template-columns: 1fr; 
  }
  .review .box-container .box img{
    height: 14rem;
    width: 14rem;
   }
  .review .box-container .box {
    padding: 2.5rem 1.5rem; 
  }
  .review .box-container p {
    font-size: 1.4rem; 
    padding: 1.5rem 0;
    text-align: center;
  }
  .review .box-container .box h3 {
    font-size: 1.8rem; 
  }
  .review .box-container .box .user {
    height: 7rem;
    width: 7rem;
  }
}
@media (max-width: 480px) {
  .review .box-container .box {
    padding: 2rem 1rem;
  }
   .review .box-container .box img{
    height: 9rem;
    width: 9rem;
   }
  .review .box-container p {
    font-size: 1.1rem; 
    padding: 1rem 0; 
  }
  .review .box-container .box h3 {
    font-size: 1.4rem; 
  }
  .review .box-container .box .user {
    height: 5rem;
    width: 5rem;
  }
}
/* review end */

/* FAQ start */
.accordion-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 sütun */
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.accordion {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  background: #fff;
  padding: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
  font-size: 16px;
  transition: background 0.3s;
}


.accordion-header:hover {
  background: #f1f1f1;
}

.accordion-header:after {
  content: "+";
  font-size: 20px;
  transition: transform 0.3s;
}

.accordion-header.active:after {
  content: "-";
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  background: #fafafa;
  transition: max-height 0.3s ease, padding 0.3s;
  font-size: 1.6rem;      
  line-height: 2rem;      
  color: #333;   
}

.accordion-content.open {
  max-height: 1000px;
  padding: 15px;
}
.faq-link {
  color: #0000EE; /* klasik mavi link rengi */
  text-decoration: underline; /* altını çiz */
}

.faq-link:hover {
  color: #0000AA; /* hover'da daha koyu mavi */
}
@media (max-width: 768px) {
  .accordion-container {
    grid-template-columns: 1fr; /* 1 sütuna düşür */
    gap: 15px; /* Boşlukları azalt */
  }

  .accordion-header {
    font-size: 1.5rem; /* Font boyutunu biraz küçült */
    padding: 12px;
  }
}
/* FAQ end */

/* Compare Section start */
.comparison-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}
.comparison-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
}
.comparison-section h2 span {
    color: var(--highlight-color);
}
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 50px;
    align-items: center;
}

.comparison-grid .card:nth-child(1),
.comparison-grid .card:nth-child(3) {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    min-height: 400px; 
}
.comparison-grid .card:nth-child(2) {
    transform: scale(1); 
    z-index: 1; 
}
.card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: left;
    border: var(--border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--main-color);
}
.card ul {
    list-style: none;
    margin-top: 15px;
}
.card ul li {
    margin-bottom: 16px;
    line-height: 1.8;
    font-size: 1.2rem; 
    position: relative;
    padding-left: 25px;
    color: #555;
}
.card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    color: #ccc; 
}
.card.highlight {
    background: #F59E0B;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.card.highlight h3 {
    position: relative;
    font-size: 2.5rem;
    border-bottom: 3px solid #fff; 
    padding-right: 40px;
}
.card.highlight ul li {
    color: #fff;
    font-size: 1.4rem;
}
.card.highlight ul li::before {
    content: "✓"; 
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    color: #fff; 
}
.card.highlight h3::after {
    content: "✔︎";  
    position: absolute;
    top: 8px;       
    right: 10px;   
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2); 
    border-radius: 50%;  
    width: 28px;
    height: 28px;
    text-align: center;
    line-height: 28px;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}
.cta-btn {
    display: block;
    margin-top: 25px;
    background: #0d1b4c;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease;
}
.cta-btn:hover {
    background: #09123a;
}
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr; /* mobilde tek sütun */
    }
}
@media (max-width: 480px) {
    .comparison-grid {
        grid-template-columns: 1fr; /* mobilde tek sütun */
    }
}
/* Compare Section end */

/* CONTACT SECTION */
.contact {
    background: #f5f5f5;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.contact .row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: stretch; 
}
.contact .row form {
    flex: 1;
    background: #fff;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    min-height: 500px;
}
.contact .row form:hover {
    transform: translateY(-5px);
}
.contact .row form .inputBox {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding-left: 1rem;
    background: #fafafa;
}
.contact .row form .inputBox i {
    color: var(--main-color);
    font-size: 1.6rem;
}
.contact .row form .inputBox input,
.contact .row form .inputBox textarea {
    width: 100%;
    padding: 1.8rem;
    font-size: 1.2rem;
    color: #333;
    background: transparent;
    border: none;
    outline: none;
    resize: none;
}
.contact .row form .btn {
    margin-top: 10px;
    padding: 14px 28px;
    color: #fff;
    background: var(--main-color);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}
.contact .row form .btn:hover {
    background: #fff;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    transform: scale(1.05);
}
.contact-info {
    flex: 1;
    background: #fff;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
    min-height: 500px;
}
.contact-info:hover {
    transform: translateY(-5px);
}
.contact-info p {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.7;
    margin-top: 35px;
}
.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    font-size: 1.3rem;
    color: #333;
}
.info-item i {
    background: var(--main-color);
    color: #fff;
    font-size: 1.3rem;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}
.info-item i:hover {
    transform: scale(1.2) rotate(8deg);
    box-shadow: 0 0 15px var(--main-color);
}
.info-item a {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 600;
}
.info-item a:hover {
    text-decoration: underline;
}
.map-section {
    margin-top: 20px;
}
.map-section .map {
    width: 100%;
    height: 500px;
    border: 0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.map-section .map:hover {
    transform: scale(1.02);
}
@media (max-width: 768px) {
    .contact .row {
        flex-direction: column;
        gap: 1.5rem;
    }
    .contact .row form,
    .contact-info {
        flex: 1 1 100%;
        min-height: auto;
        padding: 35px 25px;
    }
    .contact .row form .inputBox input,
    .contact .row form .inputBox textarea {
        padding: 1.5rem;
        font-size: 1.1rem;
    }
    .contact .row form .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    .contact-info p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        margin-top: 25px;
    }
    .info-item {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }
    .info-item i {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 1.2rem;
        margin-right: 12px;
    }
    .map-section .map {
        height: 400px;
    }
}
@media (max-width: 480px) {
    .contact .row {
        gap: 1rem;
    }
    .contact .row form,
    .contact-info {
        padding: 25px 15px;
    }
    .contact .row form .inputBox input,
    .contact .row form .inputBox textarea {
        padding: 1.2rem;
        font-size: 1rem;
    }
    .contact .row form .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    .contact-info p {
        font-size: 1.1rem;
        margin-bottom: 25px;
        margin-top: 20px;
    }
    .info-item {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .info-item i {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 1.1rem;
        margin-right: 10px;
    }
    .map-section .map {
        height: 300px;
    }
}
/* blog start */
.blogs .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}
.blogs .box-container .box{
    background-color: #fff;
    border-radius: 3rem;
}
.blogs .box-container .box .images{
    height: 35rem;
    overflow: hidden;
    width: 100%;
    border-top-left-radius:3rem ;
    border-top-right-radius:3rem ;
}
.blogs .box-container .box .images img{
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.blogs .box-container .box:hover .images img{
    transform:scale(1.2) ;
}
.blogs .box-container .box .content{
    padding: 2rem;
}
.blogs .box-container .box .content .title{
    line-height:1.5;
    font-size: 2.5rem;
}
.blogs .box-container .box .content p{
    font-size: 1.6rem;
    line-height: 1.8;
    color: #ccc;
    padding: 1rem 0;
}


.blog-section {
    display: flex;
    flex-wrap: wrap;
    column-gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.blog-section.odd {
    flex-direction: row; /* Resim solda, yazı sağda */
}

.blog-section.even {
    flex-direction: row-reverse; /* Resim sağda, yazı solda */
}

.blog-section .blog-image,
.blog-section .blog-text {
    flex: 1 1 45rem;
}

.blog-section .blog-image img {
    width: 100%;
    
}

.blog-section .blog-text h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}
.blog-section .blog-text h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
}

.blog-section .blog-text p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #fff;
    text-transform: none;
}
.blog-section .blog-text ol {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #fff;
    text-transform: none;
}
.blog-section .blog-text ul {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #fff;
    text-transform: none;
}
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #6c63ff, #4f46e5);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.back-btn i {
  font-size: 16px;
}
.back-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #4f46e5, #6c63ff);
}
@media (max-width: 768px) {
    .blogs .box-container {
        grid-template-columns: 1fr; 
        gap: 2rem;
    }
    .blogs .box-container .box .images {
        height: 28rem;
    }
    .blogs .box-container .box .content {
        padding: 1.5rem;
    }
    .blogs .box-container .box .content .title {
        font-size: 2rem;
    }
    .blogs .box-container .box .content p {
        font-size: 1.4rem;
    }
    .blog-section {
        flex-direction: column;
        gap: 2rem;
    }
    .blog-section .blog-image,
    .blog-section .blog-text {
        flex: 1 1 100%;
    }
    .blog-section .blog-text h2 {
        font-size: 2rem;
    }
    .blog-section .blog-text h3 {
        font-size: 1.6rem;
    }
    .blog-section .blog-text p,
    .blog-section .blog-text ol,
    .blog-section .blog-text ul {
        font-size: 1.3rem;
    }
    .back-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    .back-btn i {
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .blogs .box-container {
        gap: 1.5rem;
    }
    .blogs .box-container .box .images {
        height: 22rem;
    }
    .blogs .box-container .box .content {
        padding: 1rem;
    }
    .blogs .box-container .box .content .title {
        font-size: 1.6rem;
    }
    .blogs .box-container .box .content p {
        font-size: 1.2rem;
    }
    .blog-section {
        gap: 1.5rem;
    }
    .blog-section .blog-text h2 {
        font-size: 1.8rem;
    }
    .blog-section .blog-text h3 {
        font-size: 1.4rem;
    }
    .blog-section .blog-text p,
    .blog-section .blog-text ol,
    .blog-section .blog-text ul {
        font-size: 1.1rem;
    }
    .back-btn {
        padding: 6px 14px;
        font-size: 13px;
    }
    .back-btn i {
        font-size: 13px;
    }
}
/* blog end */

/* footer start */
    .footer {
        background-color: var(--black-color);
        text-align: center;
    }
    .footer .search{
        display: flex;
        justify-content: center;
    }
    .footer .search .search-input {
        width: 30rem;
    }
    .footer .search .btn-priamary {
        background-color: var(--main-color);
        padding: 1rem 2rem;
        margin-left: 1rem ;
    }
    .footer .share {
        padding: 2rem 0;
    }
    .footer .share a {
        width: 5rem;
        height: 5rem;
        line-height: 5rem;
        color: #fff;
        font-size: 2rem;
        border: var(--border);
        border-radius: 50%;
        margin: 0.3rem;
    }
    .footer .share a:hover{
        background-color: var(--main-color);
    }
    .footer .links{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .footer .links a{
       background-color: var(--main-color);
       padding: 0.7rem 2rem ;
       color: #fff;
       font-size: 2rem;
       border: var(--border);
    }
    .footer .links a:hover{
       background-color: var(--black-color);
       opacity: 0.7;
    }
     .footer .links a.active{
       background-color: var(--black-color);
    }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8rem;
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
  color: #fff;
}
.footer-logo {
  flex: 1;
}
.footer-logo .logo {
  max-width: 300px;  
  margin-bottom: 1rem;
}
.footer-logo p {
  font-size: 1.4rem;
  line-height: 1.6;
  max-width: 400px;
  margin-left: 7rem;
}
.footer .fcontact {
  flex: 1;
  text-align: left;
}
.footer .fcontact h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: var(--main-color);
  margin-top: 3rem;
}
.footer .fcontact p {
  margin: 0.8rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.5rem;
}
.footer .fcontact i {
  color: var(--main-color);
  font-size: 1.8rem;
  min-width: 2rem;
}
.footer .fcontact a{
    margin: 0 1rem;
    font-size: 1.6rem;
    color: #fff;
    border-bottom: 0.1rem solid transparent;
}
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        padding: 1.5rem;
    }
    .footer-logo p {
        margin-left: 0;
        text-align: center;
        font-size: 1.3rem;
        max-width: 100%;
    }
    .footer .fcontact {
        text-align: center;
    }
    .footer .fcontact h3 {
        font-size: 1.8rem;
        margin-top: 2rem;
    }
    .footer .fcontact p {
        font-size: 1.3rem;
    }
    .footer .fcontact i {
        font-size: 1.5rem;
        min-width: 1.8rem;
    }
    .footer .fcontact a {
        font-size: 1.4rem;
        margin: 0 0.5rem;
    }
    .footer .search .search-input {
        width: 25rem;
    }
    .footer .share a {
        width: 4rem;
        height: 4rem;
        line-height: 4rem;
        font-size: 1.6rem;
    }
    .footer .links a {
        font-size: 1.6rem;
        padding: 0.6rem 1.5rem;
    }
}
@media (max-width: 480px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 1rem;
    }
    .footer-logo .logo {
        max-width: 200px;
    }
    .footer-logo p {
        font-size: 1.1rem;
        text-align: center;
        margin-left: 0;
    }
    .footer .fcontact h3 {
        font-size: 1.5rem;
        margin-top: 1.5rem;
    }
    .footer .fcontact p {
        font-size: 1.1rem;
    }
    .footer .fcontact i {
        font-size: 1.3rem;
        min-width: 1.5rem;
    }
    .footer .fcontact a {
        font-size: 1.2rem;
        margin: 0 0.3rem;
    }
    .footer .search .search-input {
        width: 18rem;
    }
    .footer .share a {
        width: 3.5rem;
        height: 3.5rem;
        line-height: 3.5rem;
        font-size: 1.4rem;
    }
    .footer .links a {
        font-size: 1.4rem;
        padding: 0.5rem 1.2rem;
    }
}
/* footer end */
/* Sælg responsive start */
@media (max-width: 768px) {
  .header {
    padding: 1.5rem 2rem;
  }
  .header .logo img {
    height: 6rem;
  }
  section {
    padding: 2rem;
  }
  .Sælg {
    flex-direction: column;
    align-items: center;
    padding: 2rem 5%;
    gap: 2rem;
  }
  .Sælg .content {
    max-width: 90%;
    text-align: center;
    padding-right: 0;
    margin-top: 12rem;
  }
  .Sælg .content h3 {
    font-size: 4.5rem;
  }
  .Sælg .content p {
    font-size: 1.3rem;
  }
  .contact-form {
    max-width: 90%;
    margin: 0 auto;
    padding: 1.5rem;
  }
  .form-grid {
    grid-template-columns: 1fr 1fr; 
    gap: 1.2rem;
  }
  .form-group.full {
    grid-column: 1 / -1;
  }
}
@media (max-width: 480px) {
   #menu-btn {
    display: inline-block;
  }
  .Sælg .content h3 {
    font-size: 3rem;
  }
  .Sælg .content p {
    font-size: 1.2rem;
  }
  .form-grid {
    grid-template-columns: 1fr; 
  }
  .form-group input,
  .form-group textarea {
    font-size: 1.1rem;
    padding: 0.6rem 0.8rem;
  }
  .submit-btn {
    font-size: 1.3rem;
    padding: 0.8rem;
  }
.form-group select {
    width: 100%;
    max-width: 200px;   
    box-sizing: border-box;
    font-size: 1.1rem;
    padding: 0.6rem 0.8rem;
    overflow-y: auto;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
/* Sælg responsive end*/

/*KONTAKT butonu start*/
#contact-btn {
  position: fixed;
  top: 40%;
  left: 0;
  background: #ffc107;
  color: #fff;
  font-weight: bold;
  padding: 25px 14px;
  font-size: 18px;
  cursor: pointer;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  border-radius: 0 8px 8px 0;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  transition: background 0.3s;
  z-index: 1000;
}
#contact-btn:hover {
  background: #c99805;
}
#contact-form {
  display: none; 
  position: fixed;
  top: 0; left: 0;
  width: 100%; 
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}
.form-content {
  background: #dbd9d9;
  padding: 20px;
  border-radius: 12px;
  width: 600px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}
.form-content h2{
    text-align: center;
  font-size: 2.2rem;
  color: var(--black-color);
  margin-bottom: 1.5rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group.full {
  grid-column: 1 / -1;
}
.form-group label {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 0.3rem;
}
.form-group input,
.form-group textarea {
  padding: 0.7rem 1rem;
  font-size: 1.3rem;
  border: var(--border);
  border-radius: 0.4rem;
  background-color: white;
  color: var(--black-color);
}
#close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 30px;
  cursor: pointer;
  color: #333;
}
#contact-form form input,
#contact-form form textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
}
#contact-form form button {
  width: 100%;
  padding: 12px;
  border: none;
  background: #1eaa7e;
  color: white;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
#contact-form form button:hover {
  background: #178a68;
}
@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}
@media (max-width: 768px) {
    #contact-btn {
        padding: 20px 12px;
        font-size: 16px;
    }
    .form-content {
        width: 500px;
        padding: 18px;
    }
    .form-content h2 {
        font-size: 2rem;
    }
    .form-group label {
        font-size: 1.1rem;
    }
    .form-group input,
    .form-group textarea {
        font-size: 1.2rem;
        padding: 0.6rem 0.8rem;
    }
    #contact-form form button {
        font-size: 15px;
        padding: 10px;
    }
    #close-btn {
        font-size: 28px;
        top: 8px;
        right: 12px;
    }
}
@media (max-width: 480px) {
    #contact-btn {
        padding: 16px 10px;
        font-size: 14px;
    }
    .form-content {
        width: 90%;
        max-width: 360px; 
        padding: 15px;
    }
    .form-group select {
        width: 100%;  
        max-width: 200px;   
        box-sizing: border-box;
        font-size: 1rem;
        padding: 0.5rem 0.7rem;
    }
    .form-content h2 {
        font-size: 1.8rem;
    }
    .form-group label {
        font-size: 1rem;
    }
    .form-group input,
    .form-group textarea {
        font-size: 1rem;
        padding: 0.5rem 0.7rem;
    }
    #contact-form form button {
        font-size: 14px;
        padding: 8px;
    }
    #close-btn {
        font-size: 24px;
        top: 6px;
        right: 10px;
    }
}
/* kontaks end */

/* text start */
.text {
    display: flex;
        flex-wrap: wrap;
        column-gap: 3rem;
}
.text h2 {
    color: #ebe4e4;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 3.5rem;
}
.text p {
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1.5rem;
}
.text ul {
    margin: 10px 0 20px 20px;
    padding: 0;
    font-size: 1.5rem;
}
.text ul li {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1.5rem;
}
.text strong {
    color: #fff; 
    font-weight: bold;
}
@media (max-width: 768px) {
    .text {
        column-gap: 2rem;
    }
    .text h2 {
        font-size: 2.8rem;
        margin-top: 15px;
        margin-bottom: 8px;
    }
    .text p,
    .text ul,
    .text ul li {
        font-size: 1.6rem;
        line-height: 1.5;
    }
}
@media (max-width: 480px) {
    .text {
        flex-direction: column;
        column-gap: 0;
    }
    .text h2 {
        font-size: 2rem;
        margin-top: 10px;
        margin-bottom: 6px;
    }
    .text p,
    .text ul,
    .text ul li {
        font-size: 1.4rem;
        line-height: 1.4;
    }
    .text ul {
        margin-left: 15px;
    }
}
/* text end */

/* Om os section */
.om-os {
  background-color: var(--background-color);
  padding: 5rem 7%;
}
.om-os-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  align-items: center;
}
.om-os-image img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.om-os-content h2 {
  font-size: 3rem;
  color: var(--black-color);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}
.om-os-content p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}
.om-os-content p:nth-of-type(1) {
  animation-delay: 0.3s;
}
.om-os-content p:nth-of-type(2) {
  animation-delay: 0.6s;
}
.om-os-content strong {
  color: var(--main-color);
}
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--main-color);
  color: #fff;
  border-radius: 2rem;
  font-size: 1.6rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn:hover {
  background: var(--accent-color);
  color: var(--black-color);
}
@media (max-width: 768px) {
    .om-os {
        padding: 4rem 5%;
    }
    .om-os-container {
        gap: 2rem;
    }
    .om-os-content h2 {
        font-size: 2.5rem;
    }
    .om-os-content p {
        font-size: 1.4rem;
    }
    .btn {
        padding: 0.8rem 1.8rem;
        font-size: 1.4rem;
    }
}
@media (max-width: 480px) {
    .om-os {
        padding: 3rem 4%;
    }
    .om-os-container {
        gap: 1.5rem;
    }
    .om-os-content h2 {
        font-size: 2rem;
    }
    .om-os-content p {
        font-size: 1.2rem;
    }
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 1.2rem;
    }
}
/* Om os section end */