body {
    background-color: #11151a;
}

* {
    -webkit-tap-highlight-color: transparent;
}


.quick-menu-mobile {
    display: none;
}

.quick-menu {
    background-color: #13171c;
    width: 70%;
    height: 350px;
    position: absolute;
    top: 200px;
    left: 15%;
    border-radius: 30px;
    display: flex;
    z-index: 2;
}

.quick-menu h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 70px;
    color: #fff;
    position: absolute;
    top: 15px;
    left: 5%;
}

.menu-column {
    position: relative;
    left: 25%;
    top: 42px;
    gap: 5px;
    width: 25%; /* 3 kolon için ideal */
}

.quick-menu-button {
    background-color: transparent;
    color: #fff;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 20px;
    text-align: left;
    transition: all .2s ease-in-out;
}


.quick-menu-button:hover {
    background-color: #fff;
    color: #000;
    transform: scale(1.05);
}


.space-light-glow {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 1800px;
    height: 800px;
    background: radial-gradient(ellipse at right,
            rgba(0, 217, 255, 0.4),
            rgba(0, 0, 0, 0) 70%);
    filter: blur(150px);
    opacity: 0.8;
    border-radius: 50%;
    animation: glowPulse 8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}


.products-container {
  width: 70%;
  margin: 0 auto;
  padding: 40px 0;
  position: absolute;
  top: 600px;
  left: 15%;
}

.product-section {
  margin-bottom: 100px;
}

.product-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  margin-bottom: 20px;
  color: #fff;
}

.packages {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-top: 20px;
}

.package-box {
  background-color: #11151a;
  width: 300px;
  height: 340px;
  border-radius: 10px;
  transition: all .3s ease-in-out;
  border: 1px solid #2a2a2a;
  position: relative; 
}

.package-box-button {
  position: absolute;
  bottom: 20px;  
  left: 10%;
  width: 80%;
}

.package-box-button button {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #fff;
    width: 100%;
    height: 45px;
    border-radius: 10px;
    background-color: transparent;
    border: 1px solid #c2c2c2;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.package-box-button button:hover {
    background-color: #fff;
    color: #000;
}


.package-box:hover {
  transform: translateY(-5px);
  background-color: #13171c;
}

.package-box-header{
 font-family: 'Poppins', sans-serif;
 font-size: 20px;
 font-weight: 100;
 color: #fff;
 position: relative;
 top: 0px;
 left: 0%;
 width: 100%;
 height: 40px;
 text-align: center;
 background: linear-gradient(90deg, rgba(0, 113, 133, 0.4), rgba(0, 161, 190, 0.4));
 border-top-right-radius: 10px;
 border-top-left-radius: 10px;
 padding-top: 10px;
 cursor: default;
}

.package-box:hover .package-box-header{
 background: linear-gradient(90deg, rgba(0, 161, 190, 0.4), rgba(0, 217, 255, 0.4));

}



.package-box-text{
 font-family: 'Poppins', sans-serif;
 font-size: 14px;
 font-weight: 100;
 color: #858484;
 position: absolute;
 top: 110px;
 left: 10%;
 width: 80%;
 text-align: left;
 cursor: default;
 transition: all .3s ease-in-out;
}

.package-box:hover .package-box-text {
color: #fff;
}

.footer {
    position: absolute;
    top: 9000px;
    left: 0%;
}


 /*RESPONSIVE*/
@media (min-width: 240px) and (max-width: 359.98px) and (orientation: portrait)  {
body {
    background-color: #11151a;
}

.quick-menu-mobile {
    display: block;
    background-color: transparent;
    justify-content: center;
    align-items: center;
}

.dropdown-container {
  position: absolute;
  top: 80px;
  left: 6%; 
  width: 88%;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  color: #000;
  z-index: 5;
  border: none;
}

.dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 18px;
  font-size: 12px;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s ease;
}


.dropdown-container.active .dropdown-header {
  background-color: rgba(0, 110, 129, 0.6);
}

.material-symbols-outlined{
  font-size: 20px;
  transition: transform 0.3s ease;
}

.dropdown-container.active .material-symbols-outlined {
  transform: rotate(-180deg);
}

.dropdown-list {
  max-height: 0;             /* başlangıçta kapalı */
  overflow: hidden;
  background-color: #fff;
  color: #000;
  transition: max-height 0.4s ease;
  border: none;
}

.dropdown-container.active .dropdown-list {
  max-height: unset; 
  overflow-y: auto; 
  max-height: 60vh; 
}

.dropdown-list a {
  display: block;
  padding: 12px 18px;
  font-size: 15px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  cursor: pointer;
  text-decoration: none;
  color: #000;
  transition: background 0.2s ease;
}

.dropdown-list a:hover {
  background-color: rgba(0,217,255,0.1);
}



.quick-menu { display: none;
}


.space-light-glow {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(ellipse at right,
            rgba(0, 217, 255, 0.4),
            rgba(0, 0, 0, 0) 70%);
    filter: blur(150px);
    opacity: 0.8;
    border-radius: 50%;
    animation: glowPulse 8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}


.products-container {
  width: 100%;
  margin: 0 auto;
  padding: 40px 0;
  position: absolute;
  top: 110px;
  left: 0%;
  align-items: center;
}

.product-section {
  margin-bottom: 100px;
}

.product-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  margin-bottom: 20px;
  color: #fff;
  padding-left: 20px;
}

.packages {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding-top: 20px;
  justify-content: center;
}


.package-box {
  background-color: #11151a;
  width: calc(50% - 20px);  /* Yan yana iki kutu */
  height: 280px; 
  border-radius: 10px;
  transition: all .3s ease-in-out;
  border: 1px solid #2a2a2a;
  position: relative; 
}

.package-box-button {
  position: absolute;
  bottom: 20px;  
  left: 10%;
  width: 80%;
}

.package-box-button button {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #000;
    width: 100%;
    height: 35px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #c2c2c2;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.package-box-button button:hover {
    background-color: #fff;
    color: #000;
}


.package-box:hover {
  transform: translateY(-5px);
  background-color: #13171c;
}

.package-box-header{
 font-family: 'Poppins', sans-serif;
 font-size: 14px;
 font-weight: 100;
 color: #fff;
 position: relative;
 top: 0px;
 left: 0%;
 width: 100%;
 height: 35px;
 text-align: center;
 background: linear-gradient(90deg, rgba(0, 113, 133, 0.4), rgba(0, 161, 190, 0.4));
 border-top-right-radius: 10px;
 border-top-left-radius: 10px;
 padding-top: 10px;
 cursor: default;
}

.package-box:hover .package-box-header{
 background: linear-gradient(90deg, rgba(0, 161, 190, 0.4), rgba(0, 217, 255, 0.4));

}



.package-box-text{
 font-family: 'Poppins', sans-serif;
 font-size: 11px;
 font-weight: 100;
 color: #ececec;
 position: absolute;
 top: 70px;
 left: 2.5%;
 width: 95%;
 text-align: center;
 cursor: default;
 transition: all .3s ease-in-out;
}

.package-box:hover .package-box-text {
color: #fff;
}

.mobile-footer {
    position: absolute;
    top: 11600px;
    left: 0%;
}  
}
  
@media (min-width: 360px) and (max-width: 575.98px) and (orientation: portrait) {
body {
    background-color: #11151a;
}

.quick-menu-mobile {
    display: block;
    background-color: transparent;
    justify-content: center;
    align-items: center;
}

.dropdown-container {
  position: absolute;
  top: 100px;
  left: 6%; 
  width: 88%;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  color: #000;
  z-index: 5;
  border: none;
}

.dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  font-size: 16px;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s ease;
}


.dropdown-container.active .dropdown-header {
  background-color: rgba(0, 110, 129, 0.6);
}

.material-symbols-outlined{
  font-size: 20px;
  transition: transform 0.3s ease;
}

.dropdown-container.active .material-symbols-outlined {
  transform: rotate(-180deg);
}

.dropdown-list {
  max-height: 0;             /* başlangıçta kapalı */
  overflow: hidden;
  background-color: #fff;
  color: #000;
  transition: max-height 0.4s ease;
  border: none;
}

.dropdown-container.active .dropdown-list {
  max-height: unset; 
  overflow-y: auto; 
  max-height: 60vh; 
}

.dropdown-list a {
  display: block;
  padding: 12px 18px;
  font-size: 15px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  cursor: pointer;
  text-decoration: none;
  color: #000;
  transition: background 0.2s ease;
}

.dropdown-list a:hover {
  background-color: rgba(0,217,255,0.1);
}



.quick-menu { display: none;
}


.space-light-glow {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
    height: 300px;
    background: radial-gradient(ellipse at right,
            rgba(0, 217, 255, 0.4),
            rgba(0, 0, 0, 0) 70%);
    filter: blur(150px);
    opacity: 0.8;
    border-radius: 50%;
    animation: glowPulse 8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}


.products-container {
  width: 100%;
  margin: 0 auto;
  padding: 40px 0;
  position: absolute;
  top: 130px;
  left: 0%;
  align-items: center;
}

.product-section {
  margin-bottom: 100px;
}

.product-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  margin-bottom: 20px;
  color: #fff;
  padding-left: 20px;
}

.packages {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding-top: 20px;
  justify-content: center;
}


.package-box {
  background-color: #11151a;
  width: calc(50% - 20px);  /* Yan yana iki kutu */
  height: 300px; 
  border-radius: 10px;
  transition: all .3s ease-in-out;
  border: 1px solid #2a2a2a;
  position: relative; 
}

.package-box-button {
  position: absolute;
  bottom: 20px;  
  left: 10%;
  width: 80%;
}

.package-box-button button {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #000;
    width: 100%;
    height: 40px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #c2c2c2;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.package-box-button button:hover {
    background-color: #fff;
    color: #000;
}


.package-box:hover {
  transform: translateY(-5px);
  background-color: #13171c;
}

.package-box-header{
 font-family: 'Poppins', sans-serif;
 font-size: 18px;
 font-weight: 100;
 color: #fff;
 position: relative;
 top: 0px;
 left: 0%;
 width: 100%;
 height: 35px;
 text-align: center;
 background: linear-gradient(90deg, rgba(0, 113, 133, 0.4), rgba(0, 161, 190, 0.4));
 border-top-right-radius: 10px;
 border-top-left-radius: 10px;
 padding-top: 10px;
 cursor: default;
}

.package-box:hover .package-box-header{
 background: linear-gradient(90deg, rgba(0, 161, 190, 0.4), rgba(0, 217, 255, 0.4));

}



.package-box-text{
 font-family: 'Poppins', sans-serif;
 font-size: 13px;
 font-weight: 100;
 color: #ececec;
 position: absolute;
 top: 70px;
 left: 2.5%;
 width: 95%;
 text-align: center;
 cursor: default;
 transition: all .3s ease-in-out;
}

.package-box:hover .package-box-text {
color: #fff;
}

.mobile-footer {
    position: absolute;
    top: 12400px;
    left: 0%;
}
}

@media (min-width: 576px) and (max-width: 767.98px) and (orientation: portrait)  {
body {
    background-color: #11151a;
}

.quick-menu-mobile {
    display: block;
    background-color: transparent;
    justify-content: center;
    align-items: center;
}

.dropdown-container {
  position: absolute;
  top: 100px;
  left: 14%; 
  width: 74%;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  color: #000;
  z-index: 5;
  border: none;
}

.dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  font-size: 16px;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s ease;
}


.dropdown-container.active .dropdown-header {
  background-color: rgba(0, 110, 129, 0.6);
}

.material-symbols-outlined{
  font-size: 20px;
  transition: transform 0.3s ease;
}

.dropdown-container.active .material-symbols-outlined {
  transform: rotate(-180deg);
}

.dropdown-list {
  max-height: 0;             /* başlangıçta kapalı */
  overflow: hidden;
  background-color: #fff;
  color: #000;
  transition: max-height 0.4s ease;
  border: none;
}

.dropdown-container.active .dropdown-list {
  max-height: unset; 
  overflow-y: auto; 
  max-height: 60vh; 
}

.dropdown-list a {
  display: block;
  padding: 12px 18px;
  font-size: 15px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  cursor: pointer;
  text-decoration: none;
  color: #000;
  transition: background 0.2s ease;
}

.dropdown-list a:hover {
  background-color: rgba(0,217,255,0.1);
}



.quick-menu { display: none;
}


.space-light-glow {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
    height: 300px;
    background: radial-gradient(ellipse at right,
            rgba(0, 217, 255, 0.4),
            rgba(0, 0, 0, 0) 70%);
    filter: blur(150px);
    opacity: 0.8;
    border-radius: 50%;
    animation: glowPulse 8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}


.products-container {
  width: 100%;
  margin: 0 auto;
  padding: 40px 0;
  position: absolute;
  top: 130px;
  left: 0%;
  align-items: center;
}

.product-section {
  margin-bottom: 100px;
}

.product-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  margin-bottom: 20px;
  color: #fff;
  padding-left: 13%;
}

.packages {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding-top: 20px;
  justify-content: center;
}


.package-box {
  background-color: #11151a;
  width: calc(40% - 20px);  /* Yan yana iki kutu */
  height: 300px; 
  border-radius: 10px;
  transition: all .3s ease-in-out;
  border: 1px solid #2a2a2a;
  position: relative; 
}

.package-box-button {
  position: absolute;
  bottom: 20px;  
  left: 10%;
  width: 80%;
}

.package-box-button button {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #000;
    width: 100%;
    height: 40px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #c2c2c2;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.package-box-button button:hover {
    background-color: #fff;
    color: #000;
}


.package-box:hover {
  transform: translateY(-5px);
  background-color: #13171c;
}

.package-box-header{
 font-family: 'Poppins', sans-serif;
 font-size: 18px;
 font-weight: 100;
 color: #fff;
 position: relative;
 top: 0px;
 left: 0%;
 width: 100%;
 height: 35px;
 text-align: center;
 background: linear-gradient(90deg, rgba(0, 113, 133, 0.4), rgba(0, 161, 190, 0.4));
 border-top-right-radius: 10px;
 border-top-left-radius: 10px;
 padding-top: 10px;
 cursor: default;
}

.package-box:hover .package-box-header{
 background: linear-gradient(90deg, rgba(0, 161, 190, 0.4), rgba(0, 217, 255, 0.4));

}



.package-box-text{
 font-family: 'Poppins', sans-serif;
 font-size: 13px;
 font-weight: 100;
 color: #ececec;
 position: absolute;
 top: 70px;
 left: 2.5%;
 width: 95%;
 text-align: center;
 cursor: default;
 transition: all .3s ease-in-out;
}

.package-box:hover .package-box-text {
color: #fff;
}

.mobile-footer {
    position: absolute;
    top: 12100px;
    left: 0%;
}
}
     
@media  (min-width: 768px) and (max-width: 991.98px) and (orientation: portrait) {
body {
    background-color: #11151a;
}

.quick-menu-mobile {
    display: block;
    background-color: transparent;
    justify-content: center;
    align-items: center;
}

.dropdown-container {
  position: absolute;
  top: 100px;
  left: 20%; 
  width: 88%;
  max-width: 450px;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  color: #000;
  z-index: 5;
  border: none;
}

.dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  font-size: 16px;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s ease;
}


.dropdown-container.active .dropdown-header {
  background-color: rgba(0, 110, 129, 0.6);
}

.material-symbols-outlined{
  font-size: 20px;
  transition: transform 0.3s ease;
}

.dropdown-container.active .material-symbols-outlined {
  transform: rotate(-180deg);
}

.dropdown-list {
  max-height: 0;             /* başlangıçta kapalı */
  overflow: hidden;
  background-color: #fff;
  color: #000;
  transition: max-height 0.4s ease;
  border: none;
}

.dropdown-container.active .dropdown-list {
  max-height: unset; 
  overflow-y: auto; 
  max-height: 60vh; 
}

.dropdown-list a {
  display: block;
  padding: 12px 18px;
  font-size: 15px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  cursor: pointer;
  text-decoration: none;
  color: #000;
  transition: background 0.2s ease;
}

.dropdown-list a:hover {
  background-color: rgba(0,217,255,0.1);
}



.quick-menu { display: none;
}


.space-light-glow {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
    height: 300px;
    background: radial-gradient(ellipse at right,
            rgba(0, 217, 255, 0.4),
            rgba(0, 0, 0, 0) 70%);
    filter: blur(150px);
    opacity: 0.8;
    border-radius: 50%;
    animation: glowPulse 8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}


.products-container {
  width: 100%;
  margin: 0 auto;
  padding: 40px 0;
  position: absolute;
  top: 130px;
  left: 0%;
  align-items: center;
}

.product-section {
  margin-bottom: 100px;
}

.product-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  margin-bottom: 20px;
  color: #fff;
  padding-left: 13%;
}

.packages {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding-top: 20px;
  justify-content: center;
}


.package-box {
  background-color: #11151a;
  width: calc(30% - 20px);  /* Yan yana iki kutu */
  height: 300px; 
  border-radius: 10px;
  transition: all .3s ease-in-out;
  border: 1px solid #2a2a2a;
  position: relative; 
}

.package-box-button {
  position: absolute;
  bottom: 20px;  
  left: 10%;
  width: 80%;
}

.package-box-button button {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #000;
    width: 100%;
    height: 40px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #c2c2c2;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.package-box-button button:hover {
    background-color: #fff;
    color: #000;
}


.package-box:hover {
  transform: translateY(-5px);
  background-color: #13171c;
}

.package-box-header{
 font-family: 'Poppins', sans-serif;
 font-size: 18px;
 font-weight: 100;
 color: #fff;
 position: relative;
 top: 0px;
 left: 0%;
 width: 100%;
 height: 35px;
 text-align: center;
 background: linear-gradient(90deg, rgba(0, 113, 133, 0.4), rgba(0, 161, 190, 0.4));
 border-top-right-radius: 10px;
 border-top-left-radius: 10px;
 padding-top: 10px;
 cursor: default;
}

.package-box:hover .package-box-header{
 background: linear-gradient(90deg, rgba(0, 161, 190, 0.4), rgba(0, 217, 255, 0.4));

}



.package-box-text{
 font-family: 'Poppins', sans-serif;
 font-size: 13px;
 font-weight: 100;
 color: #ececec;
 position: absolute;
 top: 70px;
 left: 2.5%;
 width: 95%;
 text-align: center;
 cursor: default;
 transition: all .3s ease-in-out;
}

.package-box:hover .package-box-text {
color: #fff;
}

.mobile-footer {
    position: absolute;
    top: 12100px;
    left: 0%;
}
}
     
@media (min-width: 992px) and (max-width: 1199.98px) and (orientation: portrait)  {
body {
    background-color: #11151a;
}

.quick-menu-mobile {
    display: block;
    background-color: transparent;
    justify-content: center;
    align-items: center;
}

.dropdown-container {
  position: absolute;
  top: 140px;
  right: 8%; 
  width: 88%;
  max-width: 450px;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  color: #000;
  z-index: 5;
  border: none;
}

.dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  font-size: 18px;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s ease;
}


.dropdown-container.active .dropdown-header {
  background-color: rgba(0, 110, 129, 0.6);
}

.material-symbols-outlined{
  font-size: 20px;
  transition: transform 0.3s ease;
}

.dropdown-container.active .material-symbols-outlined {
  transform: rotate(-180deg);
}

.dropdown-list {
  max-height: 0;             /* başlangıçta kapalı */
  overflow: hidden;
  background-color: #fff;
  color: #000;
  transition: max-height 0.4s ease;
  border: none;
}

.dropdown-container.active .dropdown-list {
  max-height: unset; 
  overflow-y: auto; 
  max-height: 60vh; 
}

.dropdown-list a {
  display: block;
  padding: 12px 18px;
  font-size: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  cursor: pointer;
  text-decoration: none;
  color: #000;
  transition: background 0.2s ease;
}

.dropdown-list a:hover {
  background-color: rgba(0,217,255,0.1);
}



.quick-menu { display: none;
}


.space-light-glow {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
    height: 300px;
    background: radial-gradient(ellipse at right,
            rgba(0, 217, 255, 0.4),
            rgba(0, 0, 0, 0) 70%);
    filter: blur(150px);
    opacity: 0.8;
    border-radius: 50%;
    animation: glowPulse 8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}


.products-container {
  width: 100%;
  margin: 0 auto;
  padding: 40px 0;
  position: absolute;
  top: 200px;
  left: 0%;
  align-items: center;
}

.product-section {
  margin-bottom: 100px;
}

.product-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  margin-bottom: 20px;
  color: #fff;
  padding-left: 13%;
}

.packages {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding-top: 20px;
  justify-content: center;
}


.package-box {
  background-color: #11151a;
  width: calc(22% - 20px);  /* Yan yana iki kutu */
  height: 300px; 
  border-radius: 10px;
  transition: all .3s ease-in-out;
  border: 1px solid #2a2a2a;
  position: relative; 
}

.package-box-button {
  position: absolute;
  bottom: 20px;  
  left: 10%;
  width: 80%;
}

.package-box-button button {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #000;
    width: 100%;
    height: 40px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #c2c2c2;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.package-box-button button:hover {
    background-color: #fff;
    color: #000;
}


.package-box:hover {
  transform: translateY(-5px);
  background-color: #13171c;
}

.package-box-header{
 font-family: 'Poppins', sans-serif;
 font-size: 18px;
 font-weight: 100;
 color: #fff;
 position: relative;
 top: 0px;
 left: 0%;
 width: 100%;
 height: 35px;
 text-align: center;
 background: linear-gradient(90deg, rgba(0, 113, 133, 0.4), rgba(0, 161, 190, 0.4));
 border-top-right-radius: 10px;
 border-top-left-radius: 10px;
 padding-top: 10px;
 cursor: default;
}

.package-box:hover .package-box-header{
 background: linear-gradient(90deg, rgba(0, 161, 190, 0.4), rgba(0, 217, 255, 0.4));

}



.package-box-text{
 font-family: 'Poppins', sans-serif;
 font-size: 14px;
 font-weight: 100;
 color: #ececec;
 position: absolute;
 top: 70px;
 left: 2.5%;
 width: 95%;
 text-align: center;
 cursor: default;
 transition: all .3s ease-in-out;
}

.package-box:hover .package-box-text {
color: #fff;
}

.mobile-footer {
    position: absolute;
    top: 7700px;
    left: 0%;
}
}

@media  (min-width: 1200px) and (max-width: 1399.98px)  {
body {
    background-color: #11151a;
}

.quick-menu-mobile {
    display: none;
}

.quick-menu {
    background-color: #13171c;
    width: 80%;
    height: 300px;
    position: absolute;
    top: 180px;
    left: 10%;
    border-radius: 30px;
    display: flex;
    z-index: 2;
}

.quick-menu h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 60px;
    color: #fff;
    position: absolute;
    top: 15px;
    left: 5%;
}

.menu-column {
    position: relative;
    left: 25%;
    top: 30px;
    gap: 5px;
    width: 25%; /* 3 kolon için ideal */
}

.quick-menu-button {
    background-color: transparent;
    color: #fff;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 20px;
    text-align: left;
    transition: all .2s ease-in-out;
}


.quick-menu-button:hover {
    background-color: #fff;
    color: #000;
    transform: scale(1.05);
}


.space-light-glow {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 1190px;
    height: 800px;
    background: radial-gradient(ellipse at right,
            rgba(0, 217, 255, 0.4),
            rgba(0, 0, 0, 0) 70%);
    filter: blur(150px);
    opacity: 0.8;
    border-radius: 50%;
    animation: glowPulse 8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}


.products-container {
  width: 80%;
  margin: 0 auto;
  padding: 40px 0;
  position: absolute;
  top: 580px;
  left: 15%;
}

.product-section {
  margin-bottom: 100px;
}

.product-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  margin-bottom: 20px;
  color: #fff;
}

.packages {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-top: 20px;
}

.package-box {
  background-color: #11151a;
  width: calc(22% - 20px);  /* Yan yana iki kutu */
  height: 320px;
  border-radius: 10px;
  transition: all .3s ease-in-out;
  border: 1px solid #2a2a2a;
  position: relative; 
}

.package-box-button {
  position: absolute;
  bottom: 20px;  
  left: 10%;
  width: 80%;
}

.package-box-button button {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #fff;
    width: 100%;
    height: 40px;
    border-radius: 10px;
    background-color: transparent;
    border: 1px solid #c2c2c2;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.package-box-button button:hover {
    background-color: #fff;
    color: #000;
}


.package-box:hover {
  transform: translateY(-5px);
  background-color: #13171c;
}

.package-box-header{
 font-family: 'Poppins', sans-serif;
 font-size: 16px;
 font-weight: 100;
 color: #fff;
 position: relative;
 top: 0px;
 left: 0%;
 width: 100%;
 height: 35px;
 text-align: center;
 background: linear-gradient(90deg, rgba(0, 113, 133, 0.4), rgba(0, 161, 190, 0.4));
 border-top-right-radius: 10px;
 border-top-left-radius: 10px;
 padding-top: 10px;
 cursor: default;
}

.package-box:hover .package-box-header{
 background: linear-gradient(90deg, rgba(0, 161, 190, 0.4), rgba(0, 217, 255, 0.4));

}



.package-box-text{
 font-family: 'Poppins', sans-serif;
 font-size: 13px;
 font-weight: 100;
 color: #858484;
 position: absolute;
 top: 70px;
 left: 10%;
 width: 80%;
 text-align: center;
 cursor: default;
 transition: all .3s ease-in-out;
}

.package-box:hover .package-box-text {
color: #fff;
}

.footer {
    position: absolute;
    top: 8300px;
    left: 0%;
}
  
}
     
@media  (min-width: 1400px) and (max-width: 1599.98px)  { 
body {
    background-color: #11151a;
}

.quick-menu-mobile {
    display: none;
}

.quick-menu {
    background-color: #13171c;
    width: 80%;
    height: 300px;
    position: absolute;
    top: 180px;
    left: 10%;
    border-radius: 30px;
    display: flex;
    z-index: 2;
}

.quick-menu h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 60px;
    color: #fff;
    position: absolute;
    top: 15px;
    left: 5%;
}

.menu-column {
    position: relative;
    left: 25%;
    top: 30px;
    gap: 5px;
    width: 25%; /* 3 kolon için ideal */
}

.quick-menu-button {
    background-color: transparent;
    color: #fff;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 20px;
    text-align: left;
    transition: all .2s ease-in-out;
}


.quick-menu-button:hover {
    background-color: #fff;
    color: #000;
    transform: scale(1.05);
}


.space-light-glow {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 1190px;
    height: 800px;
    background: radial-gradient(ellipse at right,
            rgba(0, 217, 255, 0.4),
            rgba(0, 0, 0, 0) 70%);
    filter: blur(150px);
    opacity: 0.8;
    border-radius: 50%;
    animation: glowPulse 8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}


.products-container {
  width: 80%;
  margin: 0 auto;
  padding: 40px 0;
  position: absolute;
  top: 580px;
  left: 15%;
}

.product-section {
  margin-bottom: 100px;
}

.product-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  margin-bottom: 20px;
  color: #fff;
}

.packages {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-top: 20px;
}

.package-box {
  background-color: #11151a;
  width: calc(22% - 20px);  /* Yan yana iki kutu */
  height: 320px;
  border-radius: 10px;
  transition: all .3s ease-in-out;
  border: 1px solid #2a2a2a;
  position: relative; 
}

.package-box-button {
  position: absolute;
  bottom: 20px;  
  left: 10%;
  width: 80%;
}

.package-box-button button {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #fff;
    width: 100%;
    height: 40px;
    border-radius: 10px;
    background-color: transparent;
    border: 1px solid #c2c2c2;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.package-box-button button:hover {
    background-color: #fff;
    color: #000;
}


.package-box:hover {
  transform: translateY(-5px);
  background-color: #13171c;
}

.package-box-header{
 font-family: 'Poppins', sans-serif;
 font-size: 16px;
 font-weight: 100;
 color: #fff;
 position: relative;
 top: 0px;
 left: 0%;
 width: 100%;
 height: 35px;
 text-align: center;
 background: linear-gradient(90deg, rgba(0, 113, 133, 0.4), rgba(0, 161, 190, 0.4));
 border-top-right-radius: 10px;
 border-top-left-radius: 10px;
 padding-top: 10px;
 cursor: default;
}

.package-box:hover .package-box-header{
 background: linear-gradient(90deg, rgba(0, 161, 190, 0.4), rgba(0, 217, 255, 0.4));

}



.package-box-text{
 font-family: 'Poppins', sans-serif;
 font-size: 13px;
 font-weight: 100;
 color: #858484;
 position: absolute;
 top: 70px;
 left: 10%;
 width: 80%;
 text-align: center;
 cursor: default;
 transition: all .3s ease-in-out;
}

.package-box:hover .package-box-text {
color: #fff;
}

.footer {
    position: absolute;
    top: 8300px;
    left: 0%;
}    
}
     



/* LANDSCAPE RESPONSIVE*/
@media (min-width: 500px) and (max-width: 639.98px) and (orientation: landscape) {
body {
    background-color: #11151a;
}

.quick-menu-mobile {
    display: block;
    background-color: transparent;
    justify-content: center;
    align-items: center;
}

.dropdown-container {
  position: absolute;
  top: 100px;
  left: 6%; 
  width: 88%;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  color: #000;
  z-index: 5;
  border: none;
}

.dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  font-size: 16px;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s ease;
}


.dropdown-container.active .dropdown-header {
  background-color: rgba(0, 110, 129, 0.6);
}

.material-symbols-outlined{
  font-size: 20px;
  transition: transform 0.3s ease;
}

.dropdown-container.active .material-symbols-outlined {
  transform: rotate(-180deg);
}

.dropdown-list {
  max-height: 0;             /* başlangıçta kapalı */
  overflow: hidden;
  background-color: #fff;
  color: #000;
  transition: max-height 0.4s ease;
  border: none;
}

.dropdown-container.active .dropdown-list {
  max-height: unset; 
  overflow-y: auto; 
  max-height: 60vh; 
}

.dropdown-list a {
  display: block;
  padding: 12px 18px;
  font-size: 15px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  cursor: pointer;
  text-decoration: none;
  color: #000;
  transition: background 0.2s ease;
}

.dropdown-list a:hover {
  background-color: rgba(0,217,255,0.1);
}



.quick-menu { display: none;
}


.space-light-glow {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
    height: 300px;
    background: radial-gradient(ellipse at right,
            rgba(0, 217, 255, 0.4),
            rgba(0, 0, 0, 0) 70%);
    filter: blur(150px);
    opacity: 0.8;
    border-radius: 50%;
    animation: glowPulse 8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}


.products-container {
  width: 100%;
  margin: 0 auto;
  padding: 40px 0;
  position: absolute;
  top: 130px;
  left: 0%;
  align-items: center;
}

.product-section {
  margin-bottom: 100px;
}

.product-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  margin-bottom: 20px;
  color: #fff;
  padding-left: 20px;
}

.packages {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding-top: 20px;
  justify-content: center;
}


.package-box {
  background-color: #11151a;
  width: calc(50% - 20px);  /* Yan yana iki kutu */
  height: 300px; 
  border-radius: 10px;
  transition: all .3s ease-in-out;
  border: 1px solid #2a2a2a;
  position: relative; 
}

.package-box-button {
  position: absolute;
  bottom: 20px;  
  left: 10%;
  width: 80%;
}

.package-box-button button {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #000;
    width: 100%;
    height: 40px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #c2c2c2;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.package-box-button button:hover {
    background-color: #fff;
    color: #000;
}


.package-box:hover {
  transform: translateY(-5px);
  background-color: #13171c;
}

.package-box-header{
 font-family: 'Poppins', sans-serif;
 font-size: 18px;
 font-weight: 100;
 color: #fff;
 position: relative;
 top: 0px;
 left: 0%;
 width: 100%;
 height: 35px;
 text-align: center;
 background: linear-gradient(90deg, rgba(0, 113, 133, 0.4), rgba(0, 161, 190, 0.4));
 border-top-right-radius: 10px;
 border-top-left-radius: 10px;
 padding-top: 10px;
 cursor: default;
}

.package-box:hover .package-box-header{
 background: linear-gradient(90deg, rgba(0, 161, 190, 0.4), rgba(0, 217, 255, 0.4));

}



.package-box-text{
 font-family: 'Poppins', sans-serif;
 font-size: 13px;
 font-weight: 100;
 color: #ececec;
 position: absolute;
 top: 70px;
 left: 2.5%;
 width: 95%;
 text-align: center;
 cursor: default;
 transition: all .3s ease-in-out;
}

.package-box:hover .package-box-text {
color: #fff;
}

.mobile-footer {
    position: absolute;
    top: 12400px;
    left: 0%;
}
}

@media (min-width: 640px) and (max-width: 811.98px) and (orientation: landscape) {
body {
    background-color: #11151a;
}

.quick-menu-mobile {
    display: block;
    background-color: transparent;
    justify-content: center;
    align-items: center;
}

.dropdown-container {
  position: absolute;
  top: 100px;
  left: 14%; 
  width: 74%;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  color: #000;
  z-index: 5;
  border: none;
}

.dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  font-size: 16px;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s ease;
}


.dropdown-container.active .dropdown-header {
  background-color: rgba(0, 110, 129, 0.6);
}

.material-symbols-outlined{
  font-size: 20px;
  transition: transform 0.3s ease;
}

.dropdown-container.active .material-symbols-outlined {
  transform: rotate(-180deg);
}

.dropdown-list {
  max-height: 0;             /* başlangıçta kapalı */
  overflow: hidden;
  background-color: #fff;
  color: #000;
  transition: max-height 0.4s ease;
  border: none;
}

.dropdown-container.active .dropdown-list {
  max-height: unset; 
  overflow-y: auto; 
  max-height: 60vh; 
}

.dropdown-list a {
  display: block;
  padding: 12px 18px;
  font-size: 15px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  cursor: pointer;
  text-decoration: none;
  color: #000;
  transition: background 0.2s ease;
}

.dropdown-list a:hover {
  background-color: rgba(0,217,255,0.1);
}



.quick-menu { display: none;
}


.space-light-glow {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
    height: 300px;
    background: radial-gradient(ellipse at right,
            rgba(0, 217, 255, 0.4),
            rgba(0, 0, 0, 0) 70%);
    filter: blur(150px);
    opacity: 0.8;
    border-radius: 50%;
    animation: glowPulse 8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}


.products-container {
  width: 100%;
  margin: 0 auto;
  padding: 40px 0;
  position: absolute;
  top: 130px;
  left: 0%;
  align-items: center;
}

.product-section {
  margin-bottom: 100px;
}

.product-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  margin-bottom: 20px;
  color: #fff;
  padding-left: 13%;
}

.packages {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding-top: 20px;
  justify-content: center;
}


.package-box {
  background-color: #11151a;
  width: calc(40% - 20px);  /* Yan yana iki kutu */
  height: 300px; 
  border-radius: 10px;
  transition: all .3s ease-in-out;
  border: 1px solid #2a2a2a;
  position: relative; 
}

.package-box-button {
  position: absolute;
  bottom: 20px;  
  left: 10%;
  width: 80%;
}

.package-box-button button {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #000;
    width: 100%;
    height: 40px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #c2c2c2;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.package-box-button button:hover {
    background-color: #fff;
    color: #000;
}


.package-box:hover {
  transform: translateY(-5px);
  background-color: #13171c;
}

.package-box-header{
 font-family: 'Poppins', sans-serif;
 font-size: 18px;
 font-weight: 100;
 color: #fff;
 position: relative;
 top: 0px;
 left: 0%;
 width: 100%;
 height: 35px;
 text-align: center;
 background: linear-gradient(90deg, rgba(0, 113, 133, 0.4), rgba(0, 161, 190, 0.4));
 border-top-right-radius: 10px;
 border-top-left-radius: 10px;
 padding-top: 10px;
 cursor: default;
}

.package-box:hover .package-box-header{
 background: linear-gradient(90deg, rgba(0, 161, 190, 0.4), rgba(0, 217, 255, 0.4));

}



.package-box-text{
 font-family: 'Poppins', sans-serif;
 font-size: 13px;
 font-weight: 100;
 color: #ececec;
 position: absolute;
 top: 70px;
 left: 2.5%;
 width: 95%;
 text-align: center;
 cursor: default;
 transition: all .3s ease-in-out;
}

.package-box:hover .package-box-text {
color: #fff;
}

.mobile-footer {
    position: absolute;
    top: 12100px;
    left: 0%;
}
}

@media (min-width: 812px) and (max-width: 999.98px) and (orientation: landscape) {
body {
    background-color: #11151a;
}

.quick-menu-mobile {
    display: block;
    background-color: transparent;
    justify-content: center;
    align-items: center;
}

.dropdown-container {
  position: absolute;
  top: 100px;
  left: 20%; 
  width: 88%;
  max-width: 450px;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  color: #000;
  z-index: 5;
  border: none;
}

.dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  font-size: 16px;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s ease;
}


.dropdown-container.active .dropdown-header {
  background-color: rgba(0, 110, 129, 0.6);
}

.material-symbols-outlined{
  font-size: 20px;
  transition: transform 0.3s ease;
}

.dropdown-container.active .material-symbols-outlined {
  transform: rotate(-180deg);
}

.dropdown-list {
  max-height: 0;             /* başlangıçta kapalı */
  overflow: hidden;
  background-color: #fff;
  color: #000;
  transition: max-height 0.4s ease;
  border: none;
}

.dropdown-container.active .dropdown-list {
  max-height: unset; 
  overflow-y: auto; 
  max-height: 60vh; 
}

.dropdown-list a {
  display: block;
  padding: 12px 18px;
  font-size: 15px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  cursor: pointer;
  text-decoration: none;
  color: #000;
  transition: background 0.2s ease;
}

.dropdown-list a:hover {
  background-color: rgba(0,217,255,0.1);
}



.quick-menu { display: none;
}


.space-light-glow {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
    height: 300px;
    background: radial-gradient(ellipse at right,
            rgba(0, 217, 255, 0.4),
            rgba(0, 0, 0, 0) 70%);
    filter: blur(150px);
    opacity: 0.8;
    border-radius: 50%;
    animation: glowPulse 8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}


.products-container {
  width: 100%;
  margin: 0 auto;
  padding: 40px 0;
  position: absolute;
  top: 130px;
  left: 0%;
  align-items: center;
}

.product-section {
  margin-bottom: 100px;
}

.product-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  margin-bottom: 20px;
  color: #fff;
  padding-left: 13%;
}

.packages {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding-top: 20px;
  justify-content: center;
}


.package-box {
  background-color: #11151a;
  width: calc(30% - 20px);  /* Yan yana iki kutu */
  height: 300px; 
  border-radius: 10px;
  transition: all .3s ease-in-out;
  border: 1px solid #2a2a2a;
  position: relative; 
}

.package-box-button {
  position: absolute;
  bottom: 20px;  
  left: 10%;
  width: 80%;
}

.package-box-button button {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #000;
    width: 100%;
    height: 40px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #c2c2c2;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.package-box-button button:hover {
    background-color: #fff;
    color: #000;
}


.package-box:hover {
  transform: translateY(-5px);
  background-color: #13171c;
}

.package-box-header{
 font-family: 'Poppins', sans-serif;
 font-size: 18px;
 font-weight: 100;
 color: #fff;
 position: relative;
 top: 0px;
 left: 0%;
 width: 100%;
 height: 35px;
 text-align: center;
 background: linear-gradient(90deg, rgba(0, 113, 133, 0.4), rgba(0, 161, 190, 0.4));
 border-top-right-radius: 10px;
 border-top-left-radius: 10px;
 padding-top: 10px;
 cursor: default;
}

.package-box:hover .package-box-header{
 background: linear-gradient(90deg, rgba(0, 161, 190, 0.4), rgba(0, 217, 255, 0.4));

}



.package-box-text{
 font-family: 'Poppins', sans-serif;
 font-size: 13px;
 font-weight: 100;
 color: #ececec;
 position: absolute;
 top: 70px;
 left: 2.5%;
 width: 95%;
 text-align: center;
 cursor: default;
 transition: all .3s ease-in-out;
}

.package-box:hover .package-box-text {
color: #fff;
}

.mobile-footer {
    position: absolute;
    top: 12100px;
    left: 0%;
}
}

@media (min-width: 1000px) and (max-width: 1200px) and (orientation: landscape) {
body {
    background-color: #11151a;
}

.quick-menu-mobile {
    display: block;
    background-color: transparent;
    justify-content: center;
    align-items: center;
}

.dropdown-container {
  position: absolute;
  top: 140px;
  right: 8%; 
  width: 88%;
  max-width: 450px;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  color: #000;
  z-index: 5;
  border: none;
}

.dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  font-size: 18px;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s ease;
}


.dropdown-container.active .dropdown-header {
  background-color: rgba(0, 110, 129, 0.6);
}

.material-symbols-outlined{
  font-size: 20px;
  transition: transform 0.3s ease;
}

.dropdown-container.active .material-symbols-outlined {
  transform: rotate(-180deg);
}

.dropdown-list {
  max-height: 0;             /* başlangıçta kapalı */
  overflow: hidden;
  background-color: #fff;
  color: #000;
  transition: max-height 0.4s ease;
  border: none;
}

.dropdown-container.active .dropdown-list {
  max-height: unset; 
  overflow-y: auto; 
  max-height: 60vh; 
}

.dropdown-list a {
  display: block;
  padding: 12px 18px;
  font-size: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  cursor: pointer;
  text-decoration: none;
  color: #000;
  transition: background 0.2s ease;
}

.dropdown-list a:hover {
  background-color: rgba(0,217,255,0.1);
}



.quick-menu { display: none;
}


.space-light-glow {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
    height: 300px;
    background: radial-gradient(ellipse at right,
            rgba(0, 217, 255, 0.4),
            rgba(0, 0, 0, 0) 70%);
    filter: blur(150px);
    opacity: 0.8;
    border-radius: 50%;
    animation: glowPulse 8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}


.products-container {
  width: 100%;
  margin: 0 auto;
  padding: 40px 0;
  position: absolute;
  top: 200px;
  left: 0%;
  align-items: center;
}

.product-section {
  margin-bottom: 100px;
}

.product-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  margin-bottom: 20px;
  color: #fff;
  padding-left: 13%;
}

.packages {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding-top: 20px;
  justify-content: center;
}


.package-box {
  background-color: #11151a;
  width: calc(22% - 20px);  /* Yan yana iki kutu */
  height: 300px; 
  border-radius: 10px;
  transition: all .3s ease-in-out;
  border: 1px solid #2a2a2a;
  position: relative; 
}

.package-box-button {
  position: absolute;
  bottom: 20px;  
  left: 10%;
  width: 80%;
}

.package-box-button button {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #000;
    width: 100%;
    height: 40px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #c2c2c2;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.package-box-button button:hover {
    background-color: #fff;
    color: #000;
}


.package-box:hover {
  transform: translateY(-5px);
  background-color: #13171c;
}

.package-box-header{
 font-family: 'Poppins', sans-serif;
 font-size: 18px;
 font-weight: 100;
 color: #fff;
 position: relative;
 top: 0px;
 left: 0%;
 width: 100%;
 height: 35px;
 text-align: center;
 background: linear-gradient(90deg, rgba(0, 113, 133, 0.4), rgba(0, 161, 190, 0.4));
 border-top-right-radius: 10px;
 border-top-left-radius: 10px;
 padding-top: 10px;
 cursor: default;
}

.package-box:hover .package-box-header{
 background: linear-gradient(90deg, rgba(0, 161, 190, 0.4), rgba(0, 217, 255, 0.4));

}



.package-box-text{
 font-family: 'Poppins', sans-serif;
 font-size: 14px;
 font-weight: 100;
 color: #ececec;
 position: absolute;
 top: 70px;
 left: 2.5%;
 width: 95%;
 text-align: center;
 cursor: default;
 transition: all .3s ease-in-out;
}

.package-box:hover .package-box-text {
color: #fff;
}

.mobile-footer {
    position: absolute;
    top: 7700px;
    left: 0%;
}
}