/* =========================
   SECTION: ROOT / GENERAL
========================== */
:root{
  --pink:#ff2f92;
  --hotpink:#ff4fa6;
  --purple:#6b38ff;
  --violet:#8a49ff;
  --orange:#ff7a2f;
  --yellow:#ffcd4d;
  --green:#18c37e;
  --blue:#2e8bff;
  --soft-bg:#fff8fb;
  --text:#3d3152;
  --muted:#7c6d92;
  --white:#ffffff;
  --shadow:0 18px 40px rgba(88, 44, 116, 0.12);
  --shadow-soft:0 10px 24px rgba(88, 44, 116, 0.08);
  --radius-xl:30px;
  --radius-lg:22px;
  --radius-md:16px;
  --transition:all .28s ease;
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins', sans-serif;
  background:var(--soft-bg);
  color:var(--text);
  overflow-x:hidden;
}

body.menu-open{
  overflow:hidden;
}

a{
  text-decoration:none;
  transition:var(--transition);
}

img{
  max-width:100%;
  display:block;
}

.section-mini-title{
  font-size:.92rem;
  font-weight:700;
  color:var(--hotpink);
  letter-spacing:.4px;
}

.section-title{
  font-size:2.1rem;
  font-weight:800;
  line-height:1.25;
  color:var(--text);
  margin:10px 0 14px;
}

.section-text{
  font-size:1rem;
  line-height:1.85;
  color:var(--muted);
  max-width:720px;
  margin:0 auto;
}

.section-head{
  margin-bottom:52px;
}

/* =========================
   SECTION: NAVBAR
========================== */
.site-header{
  position:relative;
  z-index:30;
}

.custom-navbar{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  padding:18px 0;
  z-index:40;
}

.brand-logo{
  display:inline-flex;
  align-items:flex-end;
  gap:6px;
  font-weight:800;
  line-height:1;
}

.brand-main{
  font-size:2rem;
  color:#5b31c9;
}

.brand-sub{
  font-size:1.35rem;
  color:var(--hotpink);
}

.desktop-nav .nav-link{
  color:#fff;
  font-weight:600;
  font-size:.96rem;
  padding:.7rem 1rem !important;
  border-radius:999px;
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active{
  color:#fff;
  background:rgba(255,255,255,.14);
}

.nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 20px;
  border-radius:999px;
  background:#fff;
  color:#5b31c9;
  font-weight:700;
  box-shadow:var(--shadow-soft);
}

.nav-cta:hover{
  transform:translateY(-2px);
  color:#4a23ad;
}

/* =========================
   SECTION: MOBILE MENU
========================== */
.menu-toggle{
  width:48px;
  height:48px;
  border:none;
  background:rgba(255,255,255,.16);
  border-radius:16px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  backdrop-filter:blur(6px);
}

.menu-toggle span{
  width:22px;
  height:2.5px;
  border-radius:20px;
  background:#fff;
  display:block;
}

.mobile-menu-overlay{
  position:fixed;
  inset:0;
  z-index:999;
  background:linear-gradient(135deg, #ff2f92 0%, #ff6c3a 40%, #6b38ff 100%);
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding:20px 18px;
  opacity:0;
  visibility:hidden;
  transform:translateY(-100%) scale(.96);
  transform-origin:top center;
  transition:all .38s ease;
  border-bottom-left-radius:60% 14%;
  border-bottom-right-radius:60% 14%;
  overflow:hidden;
}

.mobile-menu-overlay::before,
.mobile-menu-overlay::after{
  content:"";
  position:absolute;
  border-radius:50%;
  background:rgba(255,255,255,.09);
}

.mobile-menu-overlay::before{
  width:220px;
  height:220px;
  top:-40px;
  left:-50px;
}

.mobile-menu-overlay::after{
  width:180px;
  height:180px;
  right:-40px;
  bottom:90px;
}

.mobile-menu-overlay.active{
  opacity:1;
  visibility:visible;
  transform:translateY(0) scale(1);
}

.mobile-menu-inner{
  width:100%;
  max-width:520px;
  padding-top:8px;
  position:relative;
  z-index:2;
}

.mobile-menu-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:36px;
}

.brand-logo-mobile .brand-main{
  color:#fff;
}

.brand-logo-mobile .brand-sub{
  color:#ffe27d;
}

.menu-close{
  width:46px;
  height:46px;
  border:none;
  border-radius:14px;
  background:rgba(255,255,255,.14);
  color:#fff;
  font-size:1.2rem;
}

.mobile-menu-list{
  list-style:none;
  padding:0;
  margin:0 0 30px;
}

.mobile-menu-list li{
  margin-bottom:12px;
}

.mobile-link{
  display:flex;
  width:100%;
  padding:16px 18px;
  color:#fff;
  font-size:1.08rem;
  font-weight:600;
  border-radius:18px;
  background:rgba(255,255,255,.10);
  backdrop-filter:blur(6px);
}

.mobile-link:hover{
  color:#fff;
  background:rgba(255,255,255,.18);
}

.mobile-menu-btn{
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
  min-height:54px;
  border-radius:999px;
  background:#fff;
  color:#5b31c9;
  font-weight:800;
  box-shadow:0 10px 25px rgba(0,0,0,.15);
}

/* =========================
   SECTION: HERO
========================== */
.hero-section{
  position:relative;
  padding:130px 0 130px;
  overflow:hidden;
  background:
    linear-gradient(135deg, rgba(255,47,146,1) 0%, rgba(255,111,68,1) 45%, rgba(107,56,255,1) 100%);
}

.hero-blur{
  position:absolute;
  border-radius:50%;
  pointer-events:none;
}

.hero-blur-1{
  width:260px;
  height:260px;
  background:rgba(255,255,255,.10);
  top:110px;
  left:-70px;
}

.hero-blur-2{
  width:220px;
  height:220px;
  background:rgba(255,255,255,.09);
  right:-60px;
  bottom:110px;
}

.hero-content{
  color:#fff;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  color:#fff;
  font-size:.92rem;
  font-weight:600;
  margin-bottom:18px;
}

.hero-title{
  font-size:3.2rem;
  font-weight:800;
  line-height:1.15;
  margin-bottom:18px;
  color:#fff;
}

.hero-title span{
  color:#ffe27d;
}

.hero-text{
  font-size:1.05rem;
  line-height:1.9;
  color:rgba(255,255,255,.92);
  max-width:620px;
  margin-bottom:22px;
}

.hero-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:28px;
}

.hero-chips span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:.92rem;
  font-weight:600;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.btn-primary-custom,
.btn-secondary-custom{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 24px;
  border-radius:999px;
  font-weight:700;
}

.btn-primary-custom{
  background:#fff;
  color:#5b31c9;
  box-shadow:var(--shadow-soft);
}

.btn-primary-custom:hover{
  color:#5b31c9;
  transform:translateY(-2px);
}

.btn-secondary-custom{
  background:rgba(255,255,255,.12);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
}

.btn-secondary-custom:hover{
  color:#fff;
  background:rgba(255,255,255,.18);
}


/* =========================
   LOGIN CARD EDGE LIGHT RUNNER
========================== */
.edge-light-runner{
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.18);
}

/* Kenar çizgileri */
.edge-light-runner .edge{
  position: absolute;
  display: block;
  z-index: 3;
  pointer-events: none;
}

/* ÜST */
.edge-light-runner .edge-top{
  top: 0;
  left: 14px;
  width: calc(100% - 28px);
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 35%,
    #ff2f92 48%,
    #ffd84d 50%,
    #6b38ff 52%,
    transparent 65%,
    transparent 100%
  );
  background-size: 220% 100%;
  animation: lightTop 2.4s linear infinite;
  box-shadow: 0 0 10px rgba(255,79,166,.55);
}

/* SAĞ */
.edge-light-runner .edge-right{
  top: 14px;
  right: 0;
  width: 2px;
  height: calc(100% - 28px);
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 35%,
    #ff7a2f 48%,
    #7dffb3 50%,
    #2e8bff 52%,
    transparent 65%,
    transparent 100%
  );
  background-size: 100% 220%;
  animation: lightRight 2.4s linear infinite;
  animation-delay: .6s;
  box-shadow: 0 0 10px rgba(46,139,255,.45);
}

/* ALT */
.edge-light-runner .edge-bottom{
  bottom: 0;
  right: 14px;
  width: calc(100% - 28px);
  height: 2px;
  background: linear-gradient(
    270deg,
    transparent 0%,
    transparent 35%,
    #86007d 48%,
    #ff2f92 50%,
    #ffd84d 52%,
    transparent 65%,
    transparent 100%
  );
  background-size: 220% 100%;
  animation: lightBottom 2.4s linear infinite;
  animation-delay: 1.2s;
  box-shadow: 0 0 10px rgba(134,0,125,.45);
}

/* SOL */
.edge-light-runner .edge-left{
  bottom: 14px;
  left: 0;
  width: 2px;
  height: calc(100% - 28px);
  background: linear-gradient(
    0deg,
    transparent 0%,
    transparent 35%,
    #18c37e 48%,
    #2e8bff 50%,
    #ff2f92 52%,
    transparent 65%,
    transparent 100%
  );
  background-size: 100% 220%;
  animation: lightLeft 2.4s linear infinite;
  animation-delay: 1.8s;
  box-shadow: 0 0 10px rgba(24,195,126,.45);
}

/* Köşelerde hafif ışık noktası */
.edge-light-runner::before,
.edge-light-runner::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
}

.edge-light-runner::before{
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.18), transparent 22px),
    radial-gradient(circle at top right, rgba(255,255,255,.14), transparent 22px),
    radial-gradient(circle at bottom right, rgba(255,255,255,.16), transparent 22px),
    radial-gradient(circle at bottom left, rgba(255,255,255,.14), transparent 22px);
  opacity: .65;
}

/* Animasyonlar */
@keyframes lightTop{
  0%   { background-position: 200% 0; }
  100% { background-position: -40% 0; }
}

@keyframes lightRight{
  0%   { background-position: 0 200%; }
  100% { background-position: 0 -40%; }
}

@keyframes lightBottom{
  0%   { background-position: -40% 0; }
  100% { background-position: 200% 0; }
}

@keyframes lightLeft{
  0%   { background-position: 0 -40%; }
  100% { background-position: 0 200%; }
}


.login-card{
  background:rgba(255,255,255,.96);
  border-radius:28px;
  padding:28px 24px 22px;
  box-shadow:0 22px 50px rgba(48, 18, 84, 0.22);
  max-width:430px;
  margin-left:auto;
  position:relative;
  z-index:2;
}

.login-card-top h2{
  font-size:2rem;
  font-weight:800;
  color:#5b31c9;
  margin-bottom:8px;
}

.login-card-top p{
  font-size:.96rem;
  color:var(--muted);
  line-height:1.7;
  margin-bottom:20px;
}

.form-group-custom{
  position:relative;
  margin-bottom:14px;
}

.form-group-custom i{
  position:absolute;
  left:16px;
  top:50%;
  transform:translateY(-50%);
  color:#b195d6;
  font-size:1rem;
}

.custom-input{
  min-height:54px;
  border:none;
  border-radius:16px;
  background:#f7f0fb;
  padding-left:46px;
  color:var(--text);
  box-shadow:none !important;
}

.custom-input:focus{
  background:#f4ebff;
}

.login-note{
  display:block;
  color:#8d7fa1;
  margin:6px 0 14px;
  line-height:1.7;
}

.login-btn{
  width:100%;
  min-height:54px;
  border:none;
  border-radius:999px;
  background:linear-gradient(90deg, var(--pink), var(--orange));
  color:#fff;
  font-weight:800;
  letter-spacing:.2px;
  box-shadow:0 12px 24px rgba(255,79,166,.25);
}

.download-box{
  margin-top:16px;
  min-height:58px;
  border-radius:18px;
  background:#fff6fb;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  color:#6b38ff;
  font-weight:700;
  border:1px solid #f3d7ea;
}

.hero-wave{
  position:absolute;
  bottom:-1px;
  left:0;
  width:100%;
  line-height:0;
}

/* =========================
   SECTION: FEATURES
========================== */
.features-section{
  position:relative;
  padding:90px 0 40px;
}

.feature-card{
  height:100%;
  background:#fff;
  border-radius:26px;
  padding:28px 22px;
  box-shadow:var(--shadow-soft);
  transition:var(--transition);
  border:1px solid rgba(255,255,255,.5);
}

.feature-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
}

.feature-icon{
  width:68px;
  height:68px;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.8rem;
  color:#fff;
  margin-bottom:18px;
}

.feature-card h3{
  font-size:1.2rem;
  font-weight:700;
  margin-bottom:10px;
  color:var(--text);
}

.feature-card p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
}

.pink-card .feature-icon{ background:linear-gradient(135deg, var(--pink), var(--hotpink)); }
.orange-card .feature-icon{ background:linear-gradient(135deg, var(--orange), var(--yellow)); }
.purple-card .feature-icon{ background:linear-gradient(135deg, var(--purple), var(--violet)); }
.green-card .feature-icon{ background:linear-gradient(135deg, var(--green), #5ecbff); }

/* =========================
   SECTION: ABOUT
========================== */
.text-pink{ color:#ff2f92; }
.text-purple{ color:#6b38ff; }
.text-orange{ color:#ff7a2f; }

.about-section{
  padding:70px 0;
}

.about-image-box{
  position:relative;
  padding:18px;
}

.about-image-glow{
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(255,47,146,.18), rgba(107,56,255,.14), rgba(24,195,126,.14));
  border-radius:34px;
  transform:rotate(-4deg);
}

.about-image{
  position:relative;
  border-radius:30px;
  box-shadow:var(--shadow);
  min-height:440px;
  object-fit:cover;
  width:100%;
}

.about-content .section-text{
  max-width:none;
}

/* =========================
   SECTION: ROOMS
========================== */
.rooms-section{
  padding:40px 0 80px;
}

.room-card{
  height:100%;
  background:#fff;
  border-radius:26px;
  padding:30px 24px;
  box-shadow:var(--shadow-soft);
  transition:var(--transition);
}

.room-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
}

.room-icon{
  width:70px;
  height:70px;
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.7rem;
  color:#fff;
  background:linear-gradient(135deg, var(--hotpink), var(--orange), var(--purple));
  margin-bottom:18px;
}

.room-card h3{
  font-size:1.24rem;
  font-weight:700;
  margin-bottom:10px;
  color:var(--text);
}

.room-card p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
}

/* =========================
   SECTION: CTA
========================== */
.cta-section{
  padding:0 0 90px;
}

.cta-banner{
  border-radius:34px;
  padding:34px 32px;
  background:linear-gradient(90deg, var(--pink) 0%, var(--orange) 50%, var(--purple) 100%);
  box-shadow:var(--shadow);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.cta-banner h2{
  color:#fff;
  font-size:2rem;
  font-weight:800;
  margin:0;
}

.cta-btn{
  min-width:180px;
  min-height:56px;
  padding:0 24px;
  border-radius:999px;
  background:#fff;
  color:#5b31c9;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
}

.cta-btn:hover{
  color:#5b31c9;
  transform:translateY(-2px);
}

/* =========================
   SECTION: FOOTER
========================== */
.footer-section{
  position:relative;
  padding:90px 0 28px;
  background:linear-gradient(135deg, #ff7a2f 0%, #ff2f92 55%, #6b38ff 100%);
  overflow:hidden;
}

.footer-section::before{
  content:"";
  position:absolute;
  top:-70px;
  left:0;
  width:100%;
  height:130px;
  background:var(--soft-bg);
  border-bottom-left-radius:50% 100%;
  border-bottom-right-radius:50% 100%;
}

.footer-section .container{
  position:relative;
  z-index:2;
}

.footer-top{
  display:grid;
  grid-template-columns:1.35fr 1fr 1fr 1.1fr;
  gap:28px;
  padding-top:40px;
  padding-bottom:36px;
  border-bottom:1px solid rgba(255,255,255,.18);
}

.footer-logo .brand-main{
  color:#fff;
}

.footer-logo .brand-sub{
  color:#ffe27d;
}

.footer-brand p,
.footer-links ul li a,
.footer-social p{
  color:rgba(255,255,255,.88);
  line-height:1.9;
}

.footer-links h3,
.footer-social h3{
  font-size:1.2rem;
  font-weight:700;
  color:#fff;
  margin-bottom:14px;
}

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

.footer-links ul li{
  margin-bottom:8px;
}

.footer-links ul li a:hover{
  color:#fff;
  padding-left:4px;
}

.social-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

.social-list a{
  width:42px;
  height:42px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background:rgba(255,255,255,.14);
  font-size:1.05rem;
}

.social-list a:hover{
  transform:translateY(-3px);
  background:rgba(255,255,255,.22);
}

.footer-bottom{
  padding-top:20px;
  text-align:center;
}

.footer-bottom p{
  margin:0;
  color:rgba(255,255,255,.82);
  font-size:.95rem;
}

/* =========================
   SECTION: RESPONSIVE
========================== */
@media (max-width: 1199.98px){
  .hero-title{
    font-size:2.8rem;
  }

  .footer-top{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 991.98px){
  .desktop-nav{
    display:none !important;
  }

  .custom-navbar{
    padding:16px 0;
  }

  .hero-section{
    padding:100px 0 110px;
  }

  .hero-row{
    min-height:auto;
  }

  .hero-title{
    font-size:2.45rem;
  }

  .login-card{
    margin:0 auto;
    max-width:100%;
  }

  .hero-content{
    text-align:center;
  }

  .hero-text{
    margin-left:auto;
    margin-right:auto;
  }

  .hero-chips,
  .hero-actions{
    justify-content:center;
  }

  .about-section{
    padding-top:50px;
  }

  .cta-banner{
    flex-direction:column;
    text-align:center;
  }
}

@media (min-width: 992px){
  .menu-toggle,
  .mobile-menu-overlay{
    display:none !important;
  }
}

@media (max-width: 767.98px){
  .brand-main{
    font-size:1.7rem;
  }

  .brand-sub{
    font-size:1.15rem;
  }

  .hero-section{
    padding:88px 0 96px;
  }

  .hero-title{
    font-size:2rem;
  }

  .section-title{
    font-size:1.65rem;
  }

  .hero-text,
  .section-text{
    font-size:.96rem;
  }

  .hero-chips span{
    font-size:.84rem;
  }

  .login-card{
    padding:24px 18px 18px;
    border-radius:24px;
  }

  .login-card-top h2{
    font-size:1.7rem;
  }

  .about-image{
    min-height:320px;
  }

  .footer-top{
    grid-template-columns:1fr;
    gap:22px;
  }

  .cta-banner h2{
    font-size:1.5rem;
  }
}

@media (max-width: 575.98px){
  .container{
    padding-left:16px;
    padding-right:16px;
  }

  .hero-chips{
    gap:8px;
  }

  .hero-chips span{
    width:100%;
    justify-content:center;
  }

  .hero-actions{
    flex-direction:column;
  }

  .btn-primary-custom,
  .btn-secondary-custom,
  .cta-btn{
    width:100%;
  }

  .mobile-menu-overlay{
    padding:16px 14px;
    border-bottom-left-radius:55% 10%;
    border-bottom-right-radius:55% 10%;
  }

  .mobile-link{
    padding:15px 16px;
  }
}

.brand-logo{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:10px 18px 10px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  box-shadow:0 10px 24px rgba(50, 18, 86, 0.18);
}

.brand-icon{
  width:46px;
  height:46px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, #ff2f92, #ff7a2f, #6b38ff);
  color:#fff;
  font-size:1.2rem;
  box-shadow:0 8px 18px rgba(255, 79, 166, 0.28);
  flex-shrink:0;
}

.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1;
}

.brand-main{
  font-size:1.85rem;
  font-weight:800;
  color:#ffffff;
  letter-spacing:.3px;
  text-shadow:0 2px 10px rgba(0,0,0,.10);
}

.brand-sub{
  font-size:1rem;
  font-weight:700;
  color:#ffe27d;
  margin-top:2px;
  letter-spacing:.6px;
  text-transform:uppercase;
}

@media (max-width: 767.98px){
  .brand-logo{
    padding:8px 14px 8px 10px;
    gap:10px;
  }

  .brand-icon{
    width:40px;
    height:40px;
    font-size:1rem;
  }

  .brand-main{
    font-size:1.45rem;
  }

  .brand-sub{
    font-size:.84rem;
  }
}