:root{
  --navy:#0c2638;
  --navy2:#06121e;
  --gold:#d7c99f;
  --white:#ffffff;

  --muted:rgba(12,38,56,0.65);
  --ease:cubic-bezier(.77,0,.175,1);
  --transition:all .45s var(--ease);
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'Montserrat',sans-serif;
  background:#fff;
  color:var(--navy);
  overflow-x:hidden;
  line-height:1.6;
}

/* =========================================================
   HEADER
   ========================================================= */
.main-header{
  background:var(--navy);
  position:fixed;
  width:100%;
  top:0;
  z-index:9999;
  height:90px;
  border-bottom:2px solid var(--gold);
}
.navbar{
  max-width:1400px;
  margin:0 auto;
  height:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 30px;
}

/* Logo */
.logo img{
  height:62px;
  width:auto;
  display:block;
}

/* Desktop nav */
.nav-links{
  display:flex;
  list-style:none;
  gap:22px;
}
.nav-links > li{
  position:relative;
  height:90px;
  display:flex;
  align-items:center;
}

/* LUXURY MENU TYPOGRAPHY (BÜYÜTÜLDÜ + LUX) */
.nav-links > li > a{
  color:var(--white);
  text-decoration:none;
  font-family:'Playfair Display',serif;
  font-size:14px;
  font-weight:500;
  letter-spacing:1.25px;
  text-transform:uppercase;
  transition:color .25s ease, opacity .25s ease;
}
.nav-links > li > a:hover{color:var(--gold);opacity:.95}

/* Dropdown arrow (minimal) */
.has-dropdown > a::after{
  content:"";
  width:6px;height:6px;
  border-right:1px solid rgba(215,201,159,.75);
  border-bottom:1px solid rgba(215,201,159,.75);
  transform:rotate(45deg);
  display:inline-block;
  margin-left:8px;
  margin-top:-2px;
  opacity:.75;
}

/* =========================================================
   DESKTOP DROPDOWN (SERVICES ALTINA HİZALI + BOŞLUK YOK)
   ========================================================= */
.has-dropdown{position:relative}

/* ÖNEMLİ: Hizalama -> "Services" linkinin başladığı hizadan aç */
.has-dropdown .dropdown-menu{
  position:absolute;
  top:calc(100% - 4px); /* header çizgisine yakın */
  left:0;               /* TAM "Services" altı */
  transform:translateY(12px);

  min-width:240px;
  display:block;

  background:linear-gradient(180deg, rgba(12,38,56,.98), rgba(6,18,30,.98));
  padding:10px 0;

  border:1px solid rgba(215,201,159,.35);
  border-radius:12px;
  box-shadow:0 18px 50px rgba(0,0,0,.35);
  overflow:hidden;

  opacity:0;
  visibility:hidden;
  pointer-events:none;

  transition:opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.has-dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateY(0);
}

/* Boşluk problemi: ana menü li height mirasını dropdown içinde kır */
.nav-links .dropdown-menu li{
  height:auto !important;
  display:block !important;
  align-items:initial !important;
  margin:0 !important;
  padding:0 !important;
  line-height:1 !important;
}
.nav-links .dropdown-menu a{
  display:flex;
  align-items:center;
  padding:10px 16px !important;
  line-height:1.2 !important;
  min-height:unset !important;

  text-decoration:none;
  font-family:'Playfair Display',serif;
  font-size:13px;
  font-weight:400;
  letter-spacing:.35px;
  color:rgba(255,255,255,.92);
  text-transform:none;

  transition:background .18s ease, color .18s ease, padding-left .18s ease;
}
.nav-links .dropdown-menu a:hover{
  color:var(--gold);
  background:rgba(215,201,159,.08);
  padding-left:18px !important;
}

/* =========================================================
   MOBILE TOGGLE
   ========================================================= */
.menu-toggle{
  display:none;
  cursor:pointer;
  z-index:10001;
  background:transparent;
  border:0;
  padding:10px;
}
.menu-toggle span{
  display:block;
  width:25px;
  height:2px;
  background:var(--gold);
  margin:5px 0;
}

/* =========================================================
   MOBILE OVERLAY MENU
   ========================================================= */
.mobile-nav-overlay{
  position:fixed;
  top:0;
  right:-100%;
  width:100%;
  height:100vh;
  background:var(--navy);
  z-index:10000;
  transition:var(--transition);
  display:flex;
  flex-direction:column;
}
.mobile-nav-overlay.active{right:0}

.mobile-header-img{
  width:100%;
  height:22%;
  background:url('../images/slider1.png') center/cover no-repeat;
  border-bottom:2px solid var(--gold);
}

.mobile-nav-links{
  list-style:none;
  padding:12px 18px 16px;
  overflow-y:auto;
}
.mobile-nav-links li{
  border-bottom:1px solid rgba(255,255,255,.10);
  padding:6px 0;
}

.mobile-nav-links a{
  color:var(--white);
  font-family:'Playfair Display',serif;
  font-size:18px;
  text-decoration:none;
  display:block;
  line-height:1.2;
  letter-spacing:1px;
}
.mobile-nav-links a:hover{color:var(--gold)}

.m-sub-toggle{
  width:100%;
  background:transparent;
  border:0;
  color:#fff;
  font-family:'Playfair Display',serif;
  font-size:18px;
  letter-spacing:1px;
  text-align:left;
  padding:6px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}
.m-arrow{opacity:.8}

.m-submenu{
  list-style:none;
  display:none;
  padding:8px 0 10px 14px;
}
.m-has-sub.open .m-submenu{display:block}
.m-submenu li{border-bottom:none;padding:4px 0}
.m-submenu a{font-size:16px;font-weight:400;letter-spacing:.6px;opacity:.92}

.close-btn{
  position:absolute;
  top:14px;
  right:14px;
  color:var(--gold);
  font-size:38px;
  cursor:pointer;
  z-index:10002;
  background:transparent;
  border:0;
}

/* =========================================================
   HERO (mobile bg fix + video option)
   ========================================================= */
.hero{
  min-height:100vh;
  height:100vh;
  margin-top:90px;
  position:relative;
  display:grid;
  place-items:center;
  text-align:center;

  background:
    radial-gradient(900px 500px at 50% 25%, rgba(215,201,159,.10), transparent 60%),
    url('photomea.jfif') center/cover no-repeat;
  background-color:var(--navy); /* mobilde görsel yüklenmezse boş kalmasın */
}

/* Video kullanırsan <video class="hero-bg-video"> */
.hero-bg-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(12,38,56,.60);
  z-index:1;
}

.hero-inner{
  position:relative;
  z-index:2;
  max-width:980px;
  padding:0 22px;
}
.hero-eyebrow{
  color:rgba(255,255,255,.75);
  letter-spacing:3px;
  font-size:12px;
  text-transform:uppercase;
  margin-bottom:14px;
}
.hero h1{
  font-family:'Playfair Display',serif;
  font-size:clamp(2.2rem,5vw,4rem);
  color:var(--gold);
  line-height:1.05;
}
.hero-sub{
  color:rgba(255,255,255,.82);
  max-width:720px;
  margin:18px auto 0;
  font-size:14px;
}

/* Buttons */
.hero-cta{
  margin-top:26px;
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:46px;
  padding:0 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  letter-spacing:.5px;
  font-size:12px;
  transition:var(--transition);
  border:1px solid transparent;
}
.btn-primary{background:var(--gold);color:var(--navy);border-color:var(--gold)}
.btn-primary:hover{transform:translateY(-1px);filter:brightness(.98)}
.btn-ghost{background:transparent;color:#fff;border-color:rgba(255,255,255,.35)}
.btn-ghost:hover{border-color:var(--gold);color:var(--gold)}

/* =========================================================
   IN NUMBERS (ELITE HEADING)
   ========================================================= */
.in-numbers{
  background:#f6f6f6;
  padding:90px 20px;
  text-align:center;
}
.in-numbers-inner{max-width:1200px;margin:0 auto}

/* Elite heading block */
.elite-heading{
  max-width:980px;
  margin:0 auto 46px;
  text-align:center;
  padding:0 10px;
}
.elite-kicker{
  font-size:12px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:rgba(12,38,56,.70);
  margin-bottom:18px;
}
.elite-title{
  font-family:'Playfair Display',serif;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:1.5px;
  color:var(--navy);
  font-size:clamp(26px,3.2vw,44px);
  line-height:1.18;
  margin:0 auto 14px;
}
.elite-script{
  font-family:'Playfair Display',serif;
  font-style:italic;
  font-weight:400;
  color:rgba(12,38,56,.55);
  font-size:clamp(18px,2.2vw,28px);
  line-height:1.35;
  margin-bottom:18px;
}
.elite-rule{
  display:block;
  width:160px;
  height:2px;
  margin:0 auto 18px;
  background:var(--gold);
  opacity:.95;
}
.elite-desc{
  max-width:760px;
  margin:0 auto;
  color:rgba(12,38,56,.70);
  font-size:14px;
  line-height:1.8;
}

.in-numbers-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:0;
  align-items:start;
}
.num-item{
  padding:0 18px;
  min-height:140px;
  position:relative;
}
.num-item:not(:first-child)::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  bottom:10px;
  width:1px;
  background:rgba(12,38,56,.12);
}
.num-value{
  font-size:40px;
  line-height:1;
  color:var(--navy);
  font-weight:500;
  letter-spacing:.5px;
  margin-bottom:12px;
}
.num-label{
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:rgba(12,38,56,.60);
  line-height:1.5;
}

/* =========================================================
   SLIDER / INTERACTIVE PANELS
   ========================================================= */
.interactive-panels{
  height:100vh;
  display:flex;
  overflow:hidden;
  background:var(--navy);
  position:relative;
  z-index:10;
}

.panel{
  flex:1;
  position:relative;
  background-size:cover;
  background-position:center;
  transition:.7s;
  cursor:pointer;
  text-decoration:none;
  color:#fff;
  outline:none;
}

/* İnce beyaz ayırıcı */
.panel:not(:last-child)::after{
  content:"";
  position:absolute;
  top:0;right:0;
  width:1px;height:100%;
  background:rgba(255,255,255,0.20);
  z-index:3;
  pointer-events:none;
}
.panel.active:not(:last-child)::after{
  background:rgba(255,255,255,0.16);
}

.panel.active{flex:10}

.panel-overlay{
  position:absolute;
  inset:0;
  background:rgba(12,38,56,.55);
  z-index:1;
}
.panel-content{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:10px;
  opacity:0;
  z-index:5;
  padding:0 18px;
  text-align:center;
}
.panel.active .panel-content{opacity:1;transition:.5s .25s}

.panel-kicker{
  font-size:12px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:rgba(255,255,255,.75);
}
.panel-title{
  font-family:'Playfair Display',serif;
  font-size:clamp(1.8rem,3.6vw,3rem);
  letter-spacing:1px;
  color:#fff;
}
.panel-cta{
  margin-top:6px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--gold);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  font-size:11px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(215,201,159,.45);
  background:rgba(12,38,56,.30);
  transition:var(--transition);
}
.panel:hover .panel-cta{
  border-color:var(--gold);
  transform:translateY(-1px);
}

/* =========================================================
   CARDS SECTION (3'LÜ KART - FONT UYUMU)
   ========================================================= */
.cards-section{
  background:#f6f6f6;
  padding:80px 20px 70px;
}
.cards-inner{max-width:1200px;margin:0 auto}

.cards-kicker{
  font-size:12px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:rgba(12,38,56,.75);
  margin-bottom:14px;
  text-align:center;
  font-family:'Montserrat',sans-serif;
  font-weight:500;
}

.cards-divider{display:flex;justify-content:center;margin-bottom:22px}
.cards-divider .line{height:3px;width:70px;display:inline-block}
.cards-divider .line-navy{background:var(--navy)}
.cards-divider .line-gold{background:var(--gold)}

.cards-title{
  font-family:'Playfair Display',serif;
  font-weight:600;
  letter-spacing:1.2px;
  text-transform:uppercase;
  color:var(--navy);
  font-size:clamp(22px,3.1vw,40px);
  margin-bottom:56px;
  text-align:center;
}

.cards-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.info-card{
  position:relative;
  display:block;
  height:460px;
  background-size:cover;
  background-position:center;
  text-decoration:none;
  overflow:hidden;
  transform:translateY(0);
  transition:var(--transition);
  border-radius:0;
}
.info-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(12,38,56,.84) 0%, rgba(12,38,56,0) 56%);
}
.info-card:hover{transform:translateY(-3px)}

.info-bar{
  position:absolute;
  left:0;right:0;bottom:0;
  padding:18px 18px 16px;
  background:rgba(6,20,32,.92);
  border-top:1px solid rgba(215,201,159,.25);
  display:flex;
  flex-direction:column;
  gap:6px;
  text-align:left;
}

.info-title{
  font-family:'Playfair Display',serif; /* UYUM */
  color:#fff;
  font-weight:600;
  letter-spacing:.7px;
  font-size:16px;
}

.info-link{
  font-family:'Montserrat',sans-serif; /* UYUM */
  color:var(--gold);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1.2px;
  font-size:11px;
  display:inline-flex;
  gap:6px;
  align-items:center;
  opacity:.95;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer{
  background:var(--navy);
  padding:60px 20px 0;
  color:#fff;
  border-top:2px solid var(--gold);
}
.footer-container{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:40px;
  align-items:flex-start;
  padding-bottom:40px;
}
.footer-brand img{
  height:52px;
  width:auto;
  display:block;
  margin-bottom:14px;
}
.footer-brand p{
  opacity:.78;
  font-size:13px;
  max-width:320px;
  font-family:'Montserrat',sans-serif;
  letter-spacing:.2px;
}

.footer-block h4{
  color:var(--gold);
  margin-bottom:12px;
  font-family:'Playfair Display',serif;
  font-weight:600;
  letter-spacing:.6px;
}

.footer a{color:rgba(255,255,255,.92);text-decoration:none}
.footer a:hover{color:var(--gold)}

.address, .phones, .email{
  font-family:'Montserrat',sans-serif;
  letter-spacing:.15px;
}
.address{
  opacity:.86;
  font-size:13px;
  line-height:1.7;
  margin-bottom:14px;
}
.phones{
  opacity:.86;
  font-size:13px;
  line-height:1.85;
  margin-bottom:14px;
}
.phones span{
  display:inline-block;
  width:18px;
  color:var(--gold);
  font-weight:700;
}
.email{font-size:13px}

/* Footer bottom bar */
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.14);
  padding:18px 20px;
}
.footer-bottom-inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}
.footer-bottom-left{
  display:flex;
  gap:26px;
  flex-wrap:wrap;
}
.footer-bottom-left a{
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:rgba(255,255,255,.80);
  font-family:'Montserrat',sans-serif;
}
.footer-bottom-right{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.follow{
  font-size:12px;
  letter-spacing:1.2px;
  text-transform:uppercase;
  color:rgba(255,255,255,.80);
  margin-right:6px;
  font-family:'Montserrat',sans-serif;
}
.social{
  width:28px;
  height:28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(215,201,159,.35);
  border-radius:999px;
  transition:var(--transition);
}
.social svg{
  width:16px;
  height:16px;
  fill:var(--gold);
}
.social:hover{
  border-color:var(--gold);
  transform:translateY(-1px);
  background:rgba(215,201,159,.06);
}
.copy{
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:rgba(255,255,255,.70);
  margin-left:8px;
  font-family:'Montserrat',sans-serif;
}

/* =========================================================
   BACK TO TOP (İSTEDİĞİN ŞEKİL)
   - Normal: daha koyu bg, ok gold
   - Hover: bg biraz açılır, ok belirginleşir
   ========================================================= */
.back-to-top{
  position:fixed;
  right:18px;
  bottom:18px;
  width:44px;
  height:44px;
  border-radius:12px;

  border:1px solid rgba(215,201,159,.38);
  background:rgba(12,38,56,.92); /* normal daha koyu */
  box-shadow:0 12px 28px rgba(0,0,0,.22);

  cursor:pointer;
  display:none;
  z-index:10050;

  transition:background .25s ease, transform .25s ease, border-color .25s ease;
}
.back-to-top.show{display:block}

/* OK (gold) */
.back-to-top::before{
  content:"";
  position:absolute;
  inset:0;
  background-repeat:no-repeat;
  background-position:center;
  background-size:18px;
  background-image:url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\
<path d='M12 6l-6 6h2.2L12 8.2 15.8 12H18z' fill='%23d7c99f'/>\
</svg>");
  opacity:.9;
  transition:opacity .25s ease, transform .25s ease, filter .25s ease;
}

/* Hover: senin istediğin over hali */
.back-to-top:hover{
  background:rgba(12,38,56,.78); /* biraz daha açık */
  border-color:rgba(215,201,159,.60);
  transform:translateY(-2px);
}
.back-to-top:hover::before{
  opacity:1;
  transform:translateY(-1px);
  filter:drop-shadow(0 0 10px rgba(215,201,159,.45));
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:1024px){
  .nav-links{display:none}
  .menu-toggle{display:block}
  .logo img{height:56px}

  .in-numbers-grid{grid-template-columns:repeat(2,1fr);gap:26px 0}
  .num-item{padding:0 14px;min-height:auto}
  .num-item::before{display:none}

  .cards-grid{grid-template-columns:1fr}
  .info-card{height:420px}
}

@media (max-width:768px){
  /* slider mobilde alt alta (kolay seçim) */
  .interactive-panels{
    height:auto;
    flex-direction:column;
  }
  .panel{
    flex:unset;
    min-height:250px;
  }
  .panel.active{flex:unset}

  /* mobilde içerik hep görünsün */
  .panel-content{opacity:1}

  /* dikeyde ayırıcı çizgi yatay olsun */
  .panel:not(:last-child)::after{
    width:100%;
    height:1px;
    right:auto;
    bottom:0;
    top:auto;
    left:0;
    background:rgba(255,255,255,0.22);
  }
  .panel.active:not(:last-child)::after{
    background:rgba(255,255,255,0.18);
  }

  .footer-bottom-inner{justify-content:center}
  .footer-bottom-right{justify-content:center}

  .back-to-top{
    right:16px;
    bottom:16px;
  }
}

@media (max-width:520px){
  .logo img{height:52px}
  .in-numbers-grid{grid-template-columns:1fr;gap:22px}
  .elite-rule{width:130px}
  .elite-desc{font-size:13px}
}
/* HERO video background */
.hero{
  position:relative;
  overflow:hidden;
  min-height:100vh;
  height:100vh;
  margin-top:90px;
  display:grid;
  place-items:center;

  /* video açılmazsa fallback görsel */
  background:
    radial-gradient(900px 500px at 50% 25%, rgba(215,201,159,.10), transparent 60%),
    url('photomea.jfif') center/cover no-repeat;
  background-color:var(--navy);
}

.hero-bg-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  z-index:0;
  transform:scale(1.02); /* kenar titremesini azaltır */
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(12,38,56,.60);
  z-index:1;
}

.hero-inner{
  position:relative;
  z-index:2;
}

/* Hareketi azalt tercih edenlerde video kapansın */
@media (prefers-reduced-motion: reduce){
  .hero-bg-video{ display:none; }
}
/* =========================================================
   INNER PAGES (Yacht Management vb.)
   ========================================================= */

/* page hero */
.page-hero{
  margin-top:90px;            /* fixed header offset */
  height: clamp(320px, 52vh, 520px);
  position:relative;
  background: center/cover no-repeat;
  background-color: var(--navy);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
}

/* soft vignette + readability */
.page-hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(12,38,56,.68), rgba(12,38,56,.45)),
    radial-gradient(900px 420px at 50% 50%, rgba(215,201,159,.14), transparent 60%);
}

/* inner */
.page-hero-inner{
  position:relative;
  z-index:2;
  width:min(1200px, 100%);
  padding: 0 22px;
}

/* breadcrumb */
.crumbs{
  display:inline-flex;
  gap:10px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  font-size:12px;
  letter-spacing:1.2px;
  text-transform:uppercase;
  color: rgba(255,255,255,.72);
  margin-bottom: 16px;
}
.crumbs a{
  color: rgba(255,255,255,.78);
  text-decoration:none;
}
.crumbs a:hover{ color: var(--gold); }

.page-hero-title{
  font-family: 'Playfair Display', serif;
  font-weight:600;
  letter-spacing: 5px;
  text-transform:uppercase;
  color: #fff;
  font-size: clamp(26px, 4.2vw, 56px);
  line-height:1.08;
}
.page-hero-sub{
  margin-top: 10px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(255,255,255,.78);
  font-size: clamp(14px, 1.7vw, 20px);
}

/* main wrapper + subtle contour-ish background */
.page-wrap{
  background:
    radial-gradient(1200px 600px at 50% 0%, rgba(215,201,159,.10), transparent 65%),
    linear-gradient(180deg, #f7f7f7, #ffffff 35%);
  position:relative;
}
.page-wrap::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.09;
  /* very light contour pattern (inline svg) */
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='900' height='600' viewBox='0 0 900 600'>\
<g fill='none' stroke='%230c2638' stroke-opacity='0.55' stroke-width='1'>\
<path d='M60 120c80-60 160-70 250-40 90 30 120 10 190-20 70-30 140-20 220 30'/>\
<path d='M40 210c120-80 240-90 330-40 90 50 160 40 240-10 80-50 160-60 250 10'/>\
<path d='M30 300c120-50 260-40 360 10 100 50 180 60 260 20 80-40 150-40 220 10'/>\
<path d='M50 390c110-60 230-70 330-30 100 40 180 40 270-10 90-50 160-50 230 10'/>\
<path d='M70 480c90-50 200-60 290-30 90 30 170 30 250 0 80-30 150-30 220 10'/>\
</g></svg>");
  background-repeat: repeat;
  background-size: 900px 600px;
}

.page-section{
  position:relative;
  z-index:1;
  width:min(1200px, 100%);
  margin: 0 auto;
  padding: 86px 20px 0;
}

/* tighter first section */
.page-intro{ padding-top: 72px; }

/* Elite heading - page variant */
.elite-heading--page{ margin-bottom: 50px; }
.elite-heading--page .elite-title{ letter-spacing: 2px; }
.elite-heading--page .elite-script{ opacity:.85; }

/* 2 column layout */
.page-columns{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items:start;
  padding-bottom: 10px;
}
.page-col p{
  color: rgba(12,38,56,.72);
  font-size: 14px;
  line-height: 1.95;
  margin-bottom: 16px;
}
.page-col strong{ color: rgba(12,38,56,.90); }

/* aside card */
.side-card{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(12,38,56,.10);
  box-shadow: 0 18px 50px rgba(0,0,0,.06);
  padding: 22px 22px 20px;
}
.side-card-kicker{
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(12,38,56,.70);
  margin-bottom: 10px;
}
.side-card-title{
  font-family:'Playfair Display',serif;
  font-weight:600;
  letter-spacing:.6px;
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 10px;
}
.side-card-text{
  color: rgba(12,38,56,.70);
  font-size: 13px;
  line-height: 1.8;

  margin-bottom: 14px;
}
.side-card-list{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}
.chip{
  border: 1px solid rgba(215,201,159,.55);
  color: rgba(12,38,56,.78);
  background: rgba(215,201,159,.10);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 10px;
  border-radius: 999px;
}

/* Feature card (framed + image overlap) */
.feature-card{
  position:relative;
  border: 1px solid rgba(12,38,56,.18);
  background: rgba(255,255,255,.78);
  padding: 34px 34px;
  min-height: 320px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  overflow: visible;
  margin-top: 8px;
}
.feature-content{
  padding-right: 10px;
}
.feature-title{
  font-family:'Playfair Display',serif;
  font-weight:600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  font-size: 26px;
  margin-bottom: 8px;
}
.feature-script{
  font-family:'Playfair Display',serif;
  font-style: italic;
  color: rgba(12,38,56,.58);
  font-size: 18px;
  margin-bottom: 12px;
}
.feature-rule{
  display:block;
  width: 150px;
  height: 2px;
  background: var(--gold);
  margin: 0 0 16px 0;
}
.feature-content p{
  color: rgba(12,38,56,.72);
  font-size: 14px;
  line-height: 1.95;
}

/* right image floats a bit */
.feature-media{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}
.feature-media img{
  width: 100%;
  max-width: 340px;
  height: auto;
  display:block;
  border-radius: 4px;
  box-shadow: 0 18px 50px rgba(0,0,0,.14);
  transform: translateY(-24px);
}

/* FAQ */
.page-faq{ padding-bottom: 86px; }
.section-head{
  text-align:center;
  margin-bottom: 24px;
}
.section-title{
  font-family:'Playfair Display',serif;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
  color: var(--navy);
  font-size: clamp(22px, 2.4vw, 34px);
  margin: 10px 0 14px;
}
.faq-a[hidden]{
  display:none !important;
}
.faq-a{
  display:block;
}
/* accordion wrapper */
.faq{
  width: min(980px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(12,38,56,.10);
  background: rgba(255,255,255,.76);
}
.faq-q{
  width:100%;
  text-align:left;
  padding: 18px 18px;
  background: transparent;
  border:0;
  border-top: 1px solid rgba(12,38,56,.10);
  cursor:pointer;

  font-family:'Playfair Display',serif;
  font-weight:600;
  letter-spacing:.3px;
  font-size: 18px;
  color: rgba(12,38,56,.92);

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}
.faq-q:first-child{ border-top:0; }

.faq-icon{
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border-right: 2px solid rgba(215,201,159,.90);
  border-bottom: 2px solid rgba(215,201,159,.90);
  transform: rotate(45deg);
  transition: transform .25s ease, opacity .25s ease;
  opacity: .85;
}
.faq-q[aria-expanded="true"] .faq-icon{
  transform: rotate(-135deg);
  opacity: 1;
}

.faq-a{
  padding: 0 18px 18px;
}
.faq-a p{
  margin-top: 10px;
  color: rgba(12,38,56,.72);
  font-size: 14px;
  line-height: 1.95;
}

/* =========================================================
   BACK TO TOP (SENİN İSTEDİĞİN GİBİ)
   - normal: gold ok + daha koyu bg
   - hover: ok daha parlak + drop shadow
   ========================================================= */
.back-to-top{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(12,38,56,.88);
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
  cursor: pointer;
  z-index: 9999;

  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background .25s ease, border-color .25s ease;
}
.back-to-top.show{
  opacity: 1;
  pointer-events: auto;
}

/* ok şekli (gold) */
.back-to-top::before{
  content:"";
  position:absolute;
  inset:0;
  background-repeat:no-repeat;
  background-position:center;
  background-size: 18px;
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\
<path d='M12 6l-6 6h3.6v6.8h4.8V12H18z' fill='%23d7c99f'/>\
</svg>");
  opacity: .92;
  transition: opacity .25s ease, transform .25s ease, filter .25s ease;
}

/* hover = senin istediğin “over” hali */
.back-to-top:hover{
  background: rgba(12,38,56,.96);
  border-color: rgba(215,201,159,.55);
  transform: translateY(-2px);
}
.back-to-top:hover::before{
  opacity: 1;
  transform: translateY(-2px);
  filter: drop-shadow(0 0 8px rgba(215,201,159,.55));
}

/* Responsive inner page */
@media (max-width: 1024px){
  .page-columns{ grid-template-columns: 1fr; }
  .feature-card{ grid-template-columns: 1fr; }
  .feature-media img{ transform: translateY(0); max-width: 520px; margin: 0 auto; }
}
@media (max-width: 768px){
  .page-hero{ height: 380px; }
  .crumbs{ justify-content:flex-start; }
  .page-hero-inner{ text-align:left; }
  .back-to-top{ right: 16px; bottom: 16px; width: 44px; height: 44px; }
}
/* =========================
   CONTACT FORM (MEA)
   ========================= */

.contact-panel{
  width: min(980px, 100%);
  margin: 26px auto 0;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(12,38,56,.08);
  padding: clamp(18px, 2.2vw, 26px);
}

.contact-form{ width:100%; }

.hp-field{
  position:absolute;
  left:-9999px;
  width:1px;height:1px;
  opacity:0;
}

.form-grid{
  display:grid;
  grid-template-columns: 160px 1fr 1fr;
  gap: 18px 18px;
  align-items:end;
}

.field{ display:flex; flex-direction:column; gap:8px; }
.field label{
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(12,38,56,.85);
}

.field input,
.field select,
.field textarea{
  width:100%;
  border: 0;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(12,38,56,.10);
  padding: 14px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: rgba(12,38,56,.92);
  outline: none;
}

.field textarea{ resize: vertical; min-height: 180px; }

.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: rgba(215,201,159,.7);
  box-shadow: 0 0 0 3px rgba(215,201,159,.18);
}

.help{
  margin-top: 6px;
  font-size: 12px;
  color: rgba(12,38,56,.55);
}

.field--full{ grid-column: 1 / -1; }
.field--phone{ grid-column: 1 / -1; }

.phone-wrap{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
}

.dial{
  display:flex;
  align-items:center;
  gap:10px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(12,38,56,.10);
  padding: 10px 12px;
}
.dial .flag{ font-size: 16px; }
.dial select{
  border:0;
  background: transparent;
  padding: 8px 0;
  font-size: 14px;
}

.phone-input label{ margin-bottom: 8px; }
.phone-input input{ padding: 14px 14px; }

.form-toggles{
  margin-top: 18px;
  display:flex;
  flex-direction:column;
  gap: 14px;
  background: rgba(0,0,0,.04);
  padding: 14px;
}

.toggle{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  cursor:pointer;
  user-select:none;
}

.toggle input{ position:absolute; opacity:0; pointer-events:none; }

.switch{
  width: 42px; height: 22px;
  border-radius: 999px;
  background: rgba(12,38,56,.22);
  position:relative;
  flex: 0 0 42px;
  margin-top: 2px;
  transition: background .2s ease;
}
.switch::after{
  content:"";
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  position:absolute;
  top: 2px; left: 2px;
  transition: transform .2s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}
.toggle input:checked + .switch{
  background: rgba(215,201,159,.95);
}
.toggle input:checked + .switch::after{
  transform: translateX(20px);
}

.toggle-text{
  font-size: 13px;
  line-height: 1.6;
  color: rgba(12,38,56,.72);
}
.toggle-text a{ color: rgba(12,38,56,.92); text-decoration: underline; }

.form-actions{
  margin-top: 18px;
  display:flex;
  justify-content:center;
}

.btn-submit{
  width: min(360px, 100%);
  padding: 16px 18px;
  border: 1px solid rgba(12,38,56,.55);
  background: rgba(12,38,56,.98);
  color: #fff;
  font-family:'Montserrat',sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor:pointer;
  transition: transform .15s ease, opacity .15s ease;
}
.btn-submit:hover{ transform: translateY(-1px); opacity: .95; }

/* Responsive */
@media (max-width: 920px){
  .form-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .form-grid{ grid-template-columns: 1fr; }
  .phone-wrap{ grid-template-columns: 1fr; }
}

