/*-----------------------------------*\
  #index.css
\*-----------------------------------*/

/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/
:root {

  /**
   * COLORS
   */

  --gold-crayola: hsl(192, 56.3%, 82.9%);            /* 227. 2.background*/
  --gold-crayola2: hsl(205.71, 51.85%, 89.41%);     /*service resmi 426*/
  --color-heineken:rgb(64, 162, 227);  

 
  --quick-silver: hsla(0, 0%, 65%, 1);
  --quick-silver:var(--black);                  /*navbar altı yazısı*/

  --davys-grey: hsla(30, 3%, 34%, 1);

 
 --smoky-black-1:rgb(64, 162, 227);

  --smoky-black-2: hsla(30, 8%, 5%, 1);
  --smoky-black-3: hsla(0, 3%, 7%, 1); 
  

 --eerie-black-1: hsla(0, 0%, 100%, 1);

 --eerie-black-2: hsla(210, 4%, 11%, 1);

  --eerie-black-3: hsla(180, 2%, 8%, 1); 
  

 
  --eerie-black-4: rgb(64, 162, 227);     /*header ustte geri gelince*/


  --white: hsla(0, 0%, 100%, 1);
  

  --white-alpha-20: hsla(0, 0%, 100%, 0.2);

  --white-alpha-10: hsla(0, 0%, 100%, 0.1);
  


  --black: hsla(0, 0%, 0%, 1);
  --black-alpha-80: hsla(0, 0%, 0%, 0.8);
  --black-alpha-15: hsla(0, 0%, 0%, 0.15);

  /**
   * GRADIENT COLOR
   */

   --loading-text-gradient: linear-gradient(90deg, transparent 0% 16.66%, var(--smoky-black-3) 33.33% 50%,  transparent 66.66% 75%);
   --gradient-1: linear-gradient(to top,hsla(0, 0%, 0%, 0.9),hsla(0, 0%, 0%, 0.7),transparent);
 
/**
   * TYPOGRAPHY
   */

  /* font-family */
  --fontFamily-forum: 'Forum', cursive;
  --fontFamily-dm_sans: 'DM Sans', sans-serif;

   /* font-size */
   --fontSize-display-1: calc(1.3rem + 6.7vw);
   --fontSize-headline-1: calc(2rem + 2.5vw);
   --fontSize-headline-2: calc(1.3rem + 2.4vw);
   --fontSize-title-1: calc(1.6rem + 1.2vw);
   --fontSize-title-2: 2.2rem;
   --fontSize-title-3: 2.1rem;
   --fontSize-title-4: calc(1.6rem + 1.2vw);
   --fontSize-body-1: 2.4rem;
   --fontSize-body-2: 1.6rem;
   --fontSize-body-3: 1.8rem;
   --fontSize-body-4: 1.6rem;
   --fontSize-label-1: 1.4rem;
   --fontSize-label-2: 1.2rem;
 
   /* font-weight */
   --weight-regular: 400;
   --weight-bold: 700;
 
   /* line-height */
   --lineHeight-1: 1em;
   --lineHeight-2: 1.2em;
   --lineHeight-3: 1.5em;
   --lineHeight-4: 1.6em;
   --lineHeight-5: 1.85em;
   --lineHeight-6: 1.4em;
 
   /* letter-spacing */
   --letterSpacing-1: 0.15em;
   --letterSpacing-2: 0.4em;
   --letterSpacing-3: 0.2em;
   --letterSpacing-4: 0.3em;
   --letterSpacing-5: 3px;
 
   /**
    * SPACING
    */
 
   --section-space: 70px;
 
   /**
    * SHADOW
    */
 
   --shadow-1: 0px 0px 25px 0px hsla(0, 0%, 0%, 0.25);
 
   /**
    * BORDER RADIUS
    */
 
   --radius-24: 24px;
   --radius-circle: 50%;
 
   /**
    * TRANSITION                                            
    */
 
   --transition-1: 250ms ease;
   --transition-2: 500ms ease;
   --transition-3: 1000ms ease;
 
 }



/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

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

li { list-style: none; }

a,
img,
data,
span,
input,
button,
select,
ion-icon,
textarea { display: block; }

a {
  color: inherit;
  text-decoration: none;
}

img { height: auto; }

input,
button,
select,
textarea {
  background: none;
  border: none;
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  outline: none;
}

button { cursor: pointer; }

address { font-style: normal; }

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--eerie-black-1);         
  color: var(--black);                            
  font-family: var(--fontFamily-dm_sans);
  font-size: var(--fontSize-body-4);
  font-weight: var(--weight-regular);
  line-height: var(--lineHeight-5);
  overflow-x: hidden;
  overflow-y: hidden;  /* Intro sırasında scroll'u engelle */
}

body.loaded { 
  overflow-x: hidden;
  overflow-y: auto;  /* Intro bittikten sonra scroll'u aç */
}

body.nav-active { overflow: hidden; }

::-webkit-scrollbar { width: 5px; }

::-webkit-scrollbar-track { background-color: transparent; }

::-webkit-scrollbar-thumb { background-color: var(--gold-crayola); }





/*-----------------------------------*\
  #TYPOGRAPHY
\*-----------------------------------*/

.display-1,
.headline-1,
.headline-2,
.title-1,
.title-2,
.title-3,
.title-4 {
  color: var(--black);                         
  font-family: var(--fontFamily-forum);
  font-weight: var(--weight-regular);
  line-height: var(--lineHeight-2);
}

.display-1 {
  font-size: var(--fontSize-display-1);
  line-height: var(--lineHeight-1);
}

.display-1v2{
  color: white;
}




.headline-1 { font-size: var(--fontSize-headline-1); }       

.headline-2 {
  font-size: var(--fontSize-headline-2);
  line-height: var(--lineHeight-6);
}

.title-1 { font-size: var(--fontSize-title-1); }

.title-2 { font-size: var(--fontSize-title-2); }

.title-3 { font-size: var(--fontSize-title-3); }

.title-4 { font-size: var(--fontSize-title-4); }

.body-1 {
  font-size: var(--fontSize-body-1);
  line-height: var(--lineHeight-6);
}

.body-2 {
  font-size: var(--fontSize-body-2);
  line-height: var(--lineHeight-4);
}

.body-3 { font-size: var(--fontSize-body-3); }

.body-4 { font-size: var(--fontSize-body-4); }

.label-1 { font-size: var(--fontSize-label-1); }

.label-2 { font-size: var(--fontSize-label-2); }



/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 16px; }

.separator {
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold-crayola);
  transform: rotate(45deg);
}

.contact-label { 
  font-weight: var(--weight-bold);
  margin-bottom: 10px;
}

.contact-number {
  color: var(--gold-crayola);
  max-width: max-content;
  margin-inline: auto;
  margin-bottom: 0;
}

.hover-underline {                      
  position: relative;
  max-width: max-content;
}

.hover-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  border-block: 1px solid var(--gold-crayola);
  transform: scaleX(0.2);                              
  opacity: 0;
  transition: var(--transition-2);
}


.hover-underline:is(:hover, :focus-visible)::after {        
  transform: scaleX(1);
  opacity: 1;
}

.contact-number::after { bottom: -5px; }                  


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



/*   ------------   HERO SECTION KISMI  ANA FOTOGRAF*/

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-subtitle {                               
  position: relative;
  color: var(--color-heineken);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-2);
  margin-block-end: 12px;
}

.section-subtitle::after {                  
  content: url('../images/separator.svg');
  display: block;
  width: 100px;
  margin-inline: auto;
  margin-block-start: 5px;
}

.btn {                                    
  position: relative;
  color: var(--gold-crayola);
  font-size: var(--fontSize-label-2);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-5);
  max-width: max-content;
  border: 2px solid var(--gold-crayola);
  padding: 12px 45px;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 200%;
  border-radius: var(--radius-circle);
  background-color: var(--gold-crayola);
  transition: var(--transition-2);
  z-index: -1;
}

.btn .text { transition: var(--transition-1); }

.btn .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: max-content;
  color: var(--smoky-black-1);
}

.btn:is(:hover, :focus-visible)::before { bottom: -50%; }       

.btn:is(:hover, :focus-visible) .text-1 { transform: translateY(-40px); }   

.btn:is(:hover, :focus-visible) .text-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}

.btn-secondary {                                      
  background-color: var(--gold-crayola);
  color: var(--black);
}

.btn-secondary::before { background-color: var(--smoky-black-1); }

.btn-secondary .text-2 { color: var(--white); }



.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

/* reused... service kismi*/
.section {
  position: relative;
  padding-block: var(--section-space);
  overflow: hidden;
  z-index: 1;
}

.bg-black-10 { background-color: var(--gold-crayola); }   


.grid-list {
  display: grid;
  gap: 40px;
}

.hover\:shine { position: relative; }

.hover\:shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: linear-gradient(to right, transparent 0%, #fff6 100%);
  transform: skewX(-0.08turn) translateX(-180%);
}

.hover\:shine:is(:hover, :focus-within)::after {        /*UZERINE GELINCE PARLAMASI*/
  transform: skewX(-0.08turn) translateX(275%);
  transition: var(--transition-3);
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  overflow: hidden;
  background-color: var(--eerie-black-4);
}

.btn-text {
  color: var(--gold-crayola);
  padding-block-end: 4px;
  margin-inline: auto;
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-3);
  font-weight: var(--weight-bold);
  transition: var(--transition-1);
}

.btn-text:is(:hover, :focus-visible) { color: var(--white); } /* BU KISIMDA ALTINI CIZME*/


.shape {
  display: none;
  position: absolute;
  max-width: max-content;
  z-index: -1;
}


/* BURDAN ALTTAKI SERVICE KISMINA GEC*/

/* ABOUT KISMINDAN ONCE*/

.w-100 { width: 100%; }

.w-50 { width: 70%; }



































/*-----------------------------------*\
  #PRELOAD
\*-----------------------------------*/

/*testimontials kismi ilk burasi*/

.has-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}




.preload {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--eerie-black-2);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preload.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Intro Background with Animated Gradient */
.intro-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.intro-gradient {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    var(--eerie-black-2) 0%,
    var(--eerie-black-3) 25%,
    var(--color-heineken) 50%,
    var(--eerie-black-3) 75%,
    var(--eerie-black-2) 100%
  );
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
  opacity: 0.3;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Intro Content Container */
.intro-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.circle {                                       /*YUKLENME DAIRE*/
  width: 112px;
  height: 112px;
  border-radius: var(--radius-circle);
  border: 3px solid var(--white);
  border-block-start-color: var(--gold-crayola);    /* Daıre ici rengi*/
  margin-block-end: 45px;
  animation: rotate360 1s linear infinite;
}

@keyframes rotate360 {                            
  0% { transform: rotate(0); }
  100% { transform: rotate(1turn); }
}

.preload .text {

  background-color:var(--gold-crayola) ;
  
  background-image: var(--loading-text-gradient);
  background-size: 500%;
  font-size: calc(2rem + 3vw);
  font-weight: var(--weight-bold);
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: 16px;
  padding-inline-start: 16px;
  -webkit-text-fill-color: transparent;
  background-clip: text; 
  -webkit-background-clip: text;
  -webkit-text-stroke: 0.5px var(--white);
    animation: loadingText linear 2s infinite;
}

@keyframes loadingText {
  0% { background-position: 100%; }
  100% { background-position: 0%; }
}

/* Intro Logo Styles */
.intro-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 30px;
  animation: logoEntrance 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.intro-logo {
  width: 220px;
  height: auto;
  max-width: 80vw;
  filter: drop-shadow(0 0 30px rgba(64, 162, 227, 0.5));
  animation: logoGlow 2s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.intro-logo-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(64, 162, 227, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: ripple 2s ease-out infinite;
  z-index: 1;
}

.intro-logo-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(64, 162, 227, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: ripple 2s ease-out 0.5s infinite;
  z-index: 1;
}

@keyframes logoEntrance {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-10deg);
  }
  60% {
    transform: scale(1.1) rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes logoGlow {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(64, 162, 227, 0.5)) drop-shadow(0 0 40px rgba(64, 162, 227, 0.3));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(64, 162, 227, 0.8)) drop-shadow(0 0 60px rgba(64, 162, 227, 0.5));
    transform: scale(1.02);
  }
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

/* Loading Bar */
.intro-loading-bar {
  width: 200px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-top: 20px;
}

.intro-loading-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--color-heineken) 50%, 
    transparent 100%);
  background-size: 200% 100%;
  border-radius: 10px;
  animation: loadingProgress 2s ease-out forwards, shimmer 1.5s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(64, 162, 227, 0.6);
}

@keyframes loadingProgress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

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

/*-----------------------------------*\
  #TOPBAR
\*-----------------------------------*/
.topbar { 
  display: none;
  background: linear-gradient(90deg, rgba(240, 245, 250, 0.95) 0%, rgba(30, 40, 50, 0.95) 50%);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 20px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-item .span {
  font-size: 1.2rem;
}

/* Sol taraftaki itemler için siyah renk (address, saat) */
.topbar-item:not(.link) .span {
  color: var(--black) !important;
}

.topbar-item:not(.link) ion-icon {
  color: var(--black) !important;
}

/* Sağ taraftaki linkler için beyaz renk (telefon, email) */
.topbar .link {
  color: rgba(255, 255, 255, 0.95) !important;
}

.topbar .link .span {
  color: rgba(255, 255, 255, 0.95) !important;
}

.topbar .link ion-icon {
  color: rgba(255, 255, 255, 0.95) !important;
}

.topbar .link:is(:hover, :focus-visible) {
  color: var(--gold-crayola) !important;
}

.topbar .link:is(:hover, :focus-visible) .span {
  color: var(--gold-crayola) !important;
}

.topbar .link:is(:hover, :focus-visible) ion-icon {
  color: var(--gold-crayola) !important;
}




/*  !!!!!! REUSED VE TYPOGRAPHY KSIMINI HEADER DAN ONCE DOLDUR.*/

/*-----------------------------------*\
  #HEADER     
\*-----------------------------------*/
                                        /*  !!!!!!! .navbar ,.overlay, .header ... YAZARAK BASLA*/
                                       
.overlay,                              
.header .btn { display: none; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;                                              /*transfer*/
  background: linear-gradient(180deg, rgb(214, 230, 242) 0%, rgb(185, 215, 234) 100%);
  padding-block: 14px;
  z-index: 10000;
  border-block-end: 1px solid rgba(118, 159, 205, 0.2);
  transition: var(--transition-1);
  box-shadow: 0 2px 20px rgba(118, 159, 205, 0.15);
  backdrop-filter: blur(10px);
}

.header.active {
  padding-block: 12px;
  background: linear-gradient(180deg, rgb(214, 230, 242) 0%, rgb(185, 215, 234) 100%);
  border-color: rgba(118, 159, 205, 0.25);
  box-shadow: 0 4px 30px rgba(118, 159, 205, 0.2);
}

.header.hide {
  transform: translateY(-100%);
  transition-delay: 250ms;
}

.header .container {
  padding-inline: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.header .logo {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

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

.header .logo img {
  filter: none;
  transition: transform 0.3s ease;
  height: auto;
  max-height: 65px;
  width: auto;
}

.header .logo:hover img {
  transform: scale(1.05);
}

.nav-open-btn {
  padding: 12px;
  padding-inline-end: 0;
  position: relative;
  z-index: 10001;
  cursor: pointer;
}

.nav-open-btn .line {
  width: 30px;
  height: 2px;
  background-color: rgb(118, 159, 205);
  margin-block: 4px;
  transform-origin: left;
  animation: menuBtn 400ms ease-in-out alternate infinite;
}

@keyframes menuBtn {                                        /* MENU UCLUSU HAREKETI*/
  0% { transform: scaleX(1); }
  100% { transform: scaleX(0.5); }
}

.nav-open-btn .line-2 { animation-delay: 150ms; }             /* MENU UCLUSU SIRALI TAKIP ETMESI*/

.nav-open-btn .line-3 { animation-delay: 300ms; }




.navbar {
  position: fixed;
  background: linear-gradient(180deg, rgb(214, 230, 242) 0%, rgb(185, 215, 234) 100%);
  backdrop-filter: blur(10px);
  top: 0;
  left: -360px;
  bottom: 0;
  max-width: 360px;
  width: 100%;
  padding-inline: 30px;
  padding-block-end: 50px;
  padding-block-start: 20px;
  overflow-y: auto;
  visibility: hidden;
  z-index: 9999;
  transition: var(--transition-2);
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
  will-change: transform;
}

.navbar.active {
  visibility: visible;
  transform: translateX(360px);
  z-index: 9999;
}

.navbar .close-btn {
  color: rgb(118, 159, 205);
  border: 1px solid currentColor;
  padding: 4px;
  border-radius: var(--radius-circle);
  margin-inline-start: auto;
  margin-block: 20px 20px;                         /*TAM ORTALAR*/
  background: rgba(255, 255, 255, 0.5);
}


.navbar .close-btn ion-icon { --ionicon-stroke-width: 40px; }

.navbar .close-btn:is(:hover, :focus-visible) { 
  color: rgb(64, 162, 227);
  background: rgba(255, 255, 255, 0.8);
}

.navbar .logo {                                           /*NAVBAR DAKI LOGO ICIN*/
  max-width: max-content;
  margin-inline: auto;
  margin-block-end: 60px;
}


.navbar-list {                                            /*VISITTEKI CIZGI*/
  border-block-end: 1px solid rgba(118, 159, 205, 0.2);
  margin-block-end: 100px;
}
                                                        /*NAVBAR DAKI HER ITEME CIZGI*/
.navbar-item { border-block-start: 1px solid rgba(118, 159, 205, 0.15); }


.navbar-link {                                        /*NAVBAR TEXT ICERIK*/
  position: relative;
  font-size: var(--fontSize-label-2);
  text-transform: uppercase;
  padding-block: 10px;
  max-width: unset;
}

.navbar-link::after { display: none; }

.navbar-link .span { 
  transition: var(--transition-1);
  color: rgba(0, 0, 0, 0.9);
  font-weight: 600;
}

.navbar-link:is(:hover, :focus-visible, .active) .span {
  color: rgb(118, 159, 205);
  transform: translateX(20px);
}

.navbar-link .separator {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0;
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus-visible, .active) .separator { opacity: 1; }     /*TIKLAYINCA KARE GOZUKMESI*/


.navbar-title { margin-block-end: 15px; }

.navbar-text { margin-block: 10px; }


.navbar .body-4 { color: var(--quick-silver); }                     /*  MAILIN FARKLI RENGI OLMASI */

.sidebar-link { transition: var(--transition-1); }

.sidebar-link:is(:hover, :focus-visible) { color: var(--gold-crayola); }

            
.navbar .text-center .separator {
  margin-block: 30px;
  margin-inline: auto;
}

.navbar .contact-label { margin-block-end: 10px; }                        /* CONTACT KISMI        */

.navbar .contact-number {
  color: var(--black) !important;
  font-weight: var(--weight-bold);
}

.navbar::-webkit-scrollbar-thumb { background-color: var(--white-alpha-10); }


.overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-2);
  z-index: 9998;
  backdrop-filter: blur(2px);
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}


/*-----------------------------------*\
  #HERO - MODERN
\*-----------------------------------*/

/* Modern Minimal Hero Section */
/* Modern Hero Section - UI/UX Optimized */
.hero-modern {
  position: relative;
  padding-block: 120px 80px;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  background: #ffffff;
  overflow: hidden;
  z-index: 1;
  margin-top: 0;
}

.hero-modern::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, rgba(64, 162, 227, 0.03) 0%, transparent 100%);
  pointer-events: none;
}

.hero-modern-container {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 40px;
  position: relative;
  z-index: 1;
}

.hero-modern-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-modern-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-block-end: 4px;
}

.badge-text {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px 20px;
  background: var(--color-heineken);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(64, 162, 227, 0.2);
}

.hero-title-modern {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
  margin: 0;
  letter-spacing: -0.5px;
  max-width: 90%;
}

.hero-description {
  font-size: 18px;
  line-height: 1.75;
  color: var(--black);
  opacity: 0.7;
  margin: 0;
  max-width: 580px;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-block-start: 4px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--color-heineken);
  color: white;
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(64, 162, 227, 0.3);
  border: none;
}

.btn-hero-primary:hover {
  background: #4a9cd8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(64, 162, 227, 0.4);
}

.btn-hero-primary ion-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.btn-hero-primary:hover ion-icon {
  transform: translateX(4px);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: transparent;
  color: var(--black);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.8;
}

.btn-hero-secondary:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
  transform: translateY(-2px);
}

.hero-stats-inline {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-block-start: 24px;
  padding-block-start: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-inline {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-number-inline {
  font-size: 42px;
  font-weight: 800;
  color: var(--color-heineken);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -1px;
}

.stat-label-inline {
  font-size: 13px;
  color: var(--black);
  opacity: 0.65;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(0, 0, 0, 0.12);
}

.hero-modern-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  aspect-ratio: 4/5;
  background: #f5f5f5;
  width: 100%;
  max-width: 500px;
}

.hero-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-wrapper:hover .hero-main-image {
  transform: scale(1.05);
}

.hero-image-accent {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--color-heineken) 0%, rgba(64, 162, 227, 0.2) 100%);
  border-radius: 50%;
  opacity: 0.2;
  z-index: -1;
  filter: blur(50px);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.15;
  }
}

/* Hero Responsive */
@media (max-width: 992px) {
  .hero-modern {
    padding-block: 100px 60px;
    min-height: auto;
  }

  .hero-modern-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-modern-text {
    align-items: center;
    gap: 24px;
  }

  .hero-badge {
    margin-inline: auto;
  }

  .hero-title-modern {
    max-width: 100%;
    text-align: center;
  }

  .hero-description {
    max-width: 100%;
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats-inline {
    justify-content: center;
  }

  .hero-modern-image {
    order: -1;
  }

  .hero-image-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .header {
    z-index: 10000 !important;
  }

  .nav-open-btn {
    z-index: 10001 !important;
    position: relative !important;
  }

  .navbar {
    z-index: 9999 !important;
    position: fixed !important;
    padding-block-start: 60px !important;
    padding-block-end: 80px !important;
    padding-inline: 40px !important;
    min-height: 100vh !important;
  }

  .navbar.active {
    z-index: 9999 !important;
    visibility: visible !important;
    transform: translateX(360px) !important;
    display: block !important;
  }

  .navbar .close-btn {
    margin-block: 40px 40px !important;
    padding: 10px !important;
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .navbar .logo {
    margin-block-end: 100px !important;
  }

  .navbar .logo img {
    max-height: 100px !important;
    width: auto !important;
  }

  .navbar-list {
    margin-block-end: 150px !important;
  }

  .navbar-link {
    padding-block: 20px !important;
    min-height: 60px !important;
    display: flex !important;
    align-items: center !important;
  }

  .navbar-link .span {
    font-size: 1.2rem !important;
    line-height: 1.5 !important;
  }

  .overlay {
    z-index: 9998 !important;
  }

  .hero {
    z-index: 0 !important;
  }

  .hero .slider-item {
    z-index: 0 !important;
  }

  .hero .slider-bg {
    z-index: 0 !important;
  }

  /* Mobil görünümde hero başlığında satır kırılması */
  .hero-title {
    white-space: pre-line;
  }

  .hero-modern {
    padding-block: 80px 50px;
  }

  .hero-modern-container {
    padding-inline: 20px;
  }

  .hero-modern-content {
    gap: 40px;
  }

  .hero-title-modern {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-description {
    font-size: 16px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 14px 24px;
    font-size: 14px;
  }

  .stat-number-inline {
    font-size: 36px;
  }

  .stat-label-inline {
    font-size: 11px;
  }

  .hero-stats-inline {
    gap: 24px;
  }

  .navbar .contact-number {
    color: var(--black) !important;
    font-weight: var(--weight-bold) !important;
  }

  /* Mobil görünümde hero başlığında satır kırılması */
  .hero-title {
    white-space: pre-line;
  }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--black);
  opacity: 0.4;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: opacity 0.3s ease;
  text-decoration: none;
}

.hero-scroll-indicator:hover {
  opacity: 0.7;
}

.hero-scroll-indicator ion-icon {
  font-size: 18px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Responsive Hero Modern */
@media (max-width: 992px) {
  .hero-modern {
    padding-block: 160px 0;
  }

  .hero-modern-container {
    padding-inline: 30px;
  }

  .hero-modern-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-modern-image {
    order: 1;
  }

  .hero-modern-text {
    order: 2;
    text-align: center;
    align-items: center;
  }

  .hero-description {
    max-width: 100%;
    margin-inline: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats-inline {
    justify-content: center;
  }

  .hero-image-wrapper {
    aspect-ratio: 16/10;
  }
}

@media (max-width: 768px) {
  .hero-modern {
    padding-block: 140px 0;
    min-height: auto;
  }

  .hero-modern-container {
    padding-inline: 20px;
  }

  .hero-modern-content {
    gap: 50px;
  }

  .hero-modern-text {
    gap: 24px;
  }

  .hero-title-modern {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-stats-inline {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .stat-number-inline {
    font-size: 32px;
  }
}

.hero .slider-btn { 
  display: none;
}

.hero {
  position: relative;
  padding-block: 120px;
  min-height: 100vh;
  overflow: hidden;
  z-index: 0;
}

.hero .slider-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  padding-block-start: 100px;
  padding-block-end: 80px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-3);
  z-index: 0;
}

.hero .slider-item.active {
  opacity: 1;
  visibility: visible;
} 

.hero .slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.15);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero .slider-item.active .slider-bg {
  animation: smoothScale 7s linear forwards;
}

@keyframes smoothScale {                      /*ANA FOTOGRAFIN HAREKETLI GIBI*/
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block-end: 20px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.hero-logo-img {
  width: auto;
  height: 120px;
  max-width: 280px;
  object-fit: contain;
  border-radius: 12px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .hero-logo-img {
    height: 150px;
    max-width: 350px;
  }
}

@media (min-width: 992px) {
  .hero-logo-img {
    height: 180px;
    max-width: 420px;
  }
}

.hero .section-subtitle {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  font-weight: 300;
  letter-spacing: 2px;
  font-size: 1.8rem;
}

@media (min-width: 768px) {
  .hero .section-subtitle {
    font-size: 2.2rem;
  }
}

@media (min-width: 992px) {
  .hero .section-subtitle {
    font-size: 2.5rem;
  }
}

.hero .section-subtitle::after { margin-block: 14px 20px; }

.hero-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-block: 40px 40px;
  margin-block-start: 60px;
}

.hero-text { 
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero .hero-title,
.hero .display-1 {
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  font-weight: 400;
  letter-spacing: -0.3px;
  line-height: 1.3;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-top: 40px;
}

/* Typewriter cursor effect */
.hero-title[data-typewriter-text]:not(.typewriter-complete)::after {
  content: '|';
  color: rgba(255, 255, 255, 0.98);
  animation: blink 1s infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hero-scroll-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 24px;
  animation: bounceDown 2s ease-in-out infinite;
  cursor: pointer;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  opacity: 1;
  visibility: visible;
}

.hero .slider-item.active .hero-scroll-indicator {
  animation: bounceDown 2s ease-in-out infinite;
  animation-delay: 0s;
  opacity: 1;
  visibility: visible;
}

.hero-scroll-indicator ion-icon {
  width: 24px;
  height: 24px;
}

@keyframes bounceDown {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.9;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

.hero .btn { margin-inline: auto; }

.hero-btn {                                             /* SAG ALT KOSE LOGOMSU*/
  position: absolute;
  bottom: 40px;
  right: 15px;
  z-index: 2;
  background-color: var(--gold-crayola);
  width: 110px;
  height: 110px;
  padding: 12px;
  transform: scale(0.6);
}

/*  REFUSED E DONDUM*/

.hero-btn img {
  margin-inline: auto;
  margin-block-end: 6px;
}

.hero-btn .span {
  color: var(--black);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-1);
  line-height: var(--lineHeight-3);
}

.hero-btn::after {
  inset: 0;
  border: 1px solid var(--gold-crayola);
  animation: rotate360 15s linear infinite;           /*  SAG ALT KOSE LOGO ARKAPLAN DONGUSU*/
}

.slider-reveal {
  transform: translateY(30px);
  opacity: 0;
}

.hero .slider-item.active .slider-reveal {
  animation: sliderReveal 1s ease forwards;
}

@keyframes sliderReveal {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

      /*            YAZI ONCELIKLERI SIRALI GELMESEI HEADER1 DE*/

.hero .slider-item.active .hero-logo { animation-delay: 500ms; }

.hero .slider-item.active .section-subtitle { animation-delay: 500ms; }

.hero .slider-item.active .hero-title { animation-delay: 1000ms; }

.hero .slider-item.active .hero-text { animation-delay: 1.5s; }

.hero .slider-item.active .btn { animation-delay: 2s; }



/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

.service .section-title { margin-block-end: 16px; }

.service .section-text { margin-block-end: 40px; }

.service-card { overflow: hidden; }

.service-card .has-before {
  padding-block: 30px;
  margin-block-end: 26px;
  z-index: 1;
}

.service-card .has-before::before {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 100%;
  background-image: url('../images/img-pattern.svg');         /* PATTERN DEGISEBILIR*/
  background-position: center;
  background-size: cover;
  background-repeat: repeat;
  transition: var(--transition-2);
  transition-delay: 0;
  z-index: -1;
  will-change: transform;
}

.service-card:is(:hover, :focus-within) .has-before::before {
  transform: rotateY(0.5turn) translateX(50%);
  transition-delay: 300ms;
}

.service-card .card-banner { transition: var(--transition-2); }

.service-card:is(:hover, :focus-within) .card-banner { transform: scale(1.05); }

.service .card-title { 
  margin-block-end: 12px;
  line-height: 1.4;
  word-wrap: break-word;
  hyphens: auto;
}

.service .card-title a {
  display: block;
  padding: 0 10px;
  text-align: center;
}




/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

#id-vision {
  padding-top: 10px;
  text-align: center;
}

#id-visions{
  padding-left: 30px;
}

#p{
  text-align: center;
}


.about .section-text { margin-block: 15px 30px 60px; }


.about .btn {
  margin-inline: auto;
  margin-block-start: 26px;
}

.about .container {
  display: grid;
  gap: 120px;
}

.about-content-fullwidth {
  width: 100%;
  max-width: 100%;
}

.section-text-fullwidth {
  width: 100%;
  max-width: 100%;
  text-align: justify;
  text-align-last: left;
  line-height: 1.8;
  margin-block: 30px;
  padding: 0;
}

/* About Modern Styles - Minimalist */
.about-modern {
  padding-top: 0;
}

.about-modern-header {
  text-align: center;
  margin-bottom: 50px;
}

.about-modern-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1400px;
  margin-inline: auto;
}

.about-intro {
  font-size: 22px;
  line-height: 1.7;
  color: var(--black);
  font-weight: 300;
  letter-spacing: -0.3px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px;
}

.about-content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 400px;
}

.about-block-left {
  grid-template-columns: 1fr 1.2fr;
}

.about-block-right {
  grid-template-columns: 1.2fr 1fr;
}

.about-block-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  aspect-ratio: 4/3;
  width: 100%;
  background: linear-gradient(135deg, rgba(214, 230, 242, 0.1) 0%, rgba(185, 215, 234, 0.1) 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-block-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.about-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-block-image:hover img {
  transform: scale(1.05);
}

.about-block-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
}

.about-block-text p {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 400;
  letter-spacing: 0.1px;
  margin: 0;
}

.about-quote {
  text-align: center;
  padding: 60px 20px;
  margin-top: 40px;
  position: relative;
}

.about-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgb(118, 159, 205), transparent);
}

.quote-text {
  font-size: 28px;
  font-style: italic;
  color: rgb(118, 159, 205);
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: -0.5px;
  margin: 0;
  max-width: 900px;
  margin-inline: auto;
}


/* Responsive */
@media (max-width: 992px) {
  .about-modern-content {
    gap: 50px;
  }

  .about-content-block {
    grid-template-columns: 1fr !important;
    gap: 40px;
    min-height: auto;
  }

  .about-block-image {
    order: 1;
    aspect-ratio: 16/9;
  }

  .about-block-text {
    order: 2;
  }

  .about-intro {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .about-modern {
    padding-top: 0;
    padding-bottom: 0;
  }

  .about-modern-header {
    margin-bottom: 0;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
  }

  .about-modern-header .section-subtitle {
    margin-bottom: 0;
    margin-top: 0;
    text-align: center;
  }

  .about-modern-header .section-subtitle::after {
    margin-block: 10px 0;
    margin-inline: auto;
  }

  .about-modern-content {
    gap: 40px;
    margin-top: 0;
    padding-top: 0;
  }

  .about-intro {
    font-size: 18px;
    padding: 0 20px;
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
  }

  .about .container {
    gap: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .about-content-block {
    gap: 30px;
  }

  .about-block-text p {
    font-size: 15px;
  }

  .quote-text {
    font-size: 22px;
    padding: 0 20px;
  }

  .about-quote {
    padding: 40px 20px;
  }

  .timeline-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 18px;
  }

  .timeline-title {
    font-size: 16px;
  }

  .timeline-text {
    font-size: 14px;
  }

  .about-quote {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }

  .quote-icon {
    font-size: 28px;
  }

  .quote-text {
    font-size: 16px;
  }

  .about-intro {
    font-size: 16px;
  }
}

.about-banner {
  position: relative;
  margin-block-end: 120px;
}

.about-banner > .w-100 { padding-inline-start: 0px; }

.aboutv2-banner > .w-100 { padding-inline-start: 0px;
padding-top: 0px; }

#aboutv2 {
  padding-top: 0;
}

/* Vision Mission Modern Design */
.vision-mission-modern {
  padding-block: 80px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
}

.vision-mission-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 60px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  background-color: var(--white);
  transition: var(--transition-2);
}

.vision-mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.vision-mission-card.vision-card {
  grid-template-columns: 1fr 1fr;
}

.vision-mission-card.vision-card .vm-content-wrapper {
  order: 1;
}

.vision-mission-card.vision-card .vm-image-wrapper {
  order: 2;
}

.vm-image-wrapper {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

/* Misyon kartı görsel yüksekliği - ekrandan taşmaması için ayarlandı */
.vision-mission-card.mission-card .vm-image-wrapper {
  min-height: 320px;
  max-height: 360px;
  display: flex;
  align-items: center;
}

.vm-background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-2);
}

.vision-mission-card:hover .vm-background-image {
  transform: scale(1.1);
}

.vm-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(64, 162, 227, 0.8) 0%, rgba(64, 162, 227, 0.4) 100%);
  z-index: 1;
}

.vm-icon-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 120px;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition-2);
}

.vision-mission-card:hover .vm-icon-wrapper {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: var(--white);
}

.vm-icon {
  font-size: 60px;
  color: var(--color-heineken);
}

.vm-content-wrapper {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.vm-number {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 8rem;
  font-weight: var(--weight-bold);
  font-family: var(--fontFamily-forum);
  color: rgba(64, 162, 227, 0.1);
  line-height: 1;
  z-index: 0;
  transition: color 0.3s ease;
}

.vision-mission-card.mission-card:hover .vm-number {
  color: var(--color-heineken);
}

.vision-mission-card.vision-card:hover .vm-number {
  color: var(--color-heineken);
}

.vm-title {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  color: var(--black);
}

.vm-separator {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-heineken) 0%, transparent 100%);
  margin-bottom: 30px;
  border-radius: 2px;
}

.vm-text {
  position: relative;
  z-index: 1;
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--black);
  text-align: justify;
  margin: 0;
}



.about .abs-img { position: absolute; }

.about .abs-img::before { z-index: -1; }

.about .abs-img-1 {
  bottom: 0;
  left: 140%;
  width: 150px;
  padding-block: 30px;     
}



/*
.about .abs-img-2 {
  top: -65px;
  left: 20px;
  right: 0;
  overflow: hidden;
}

*/

.aboutv2 .abs-img-1::before {
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  /*background-image: url('../images/img-pattern.svg'); // */
  background-repeat: repeat;
}





.about .abs-img-1::before {
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  background-image: url('../images/img-pattern.svg');
  background-repeat: repeat;
}

.about .abs-img-2::before {
  inset: 0;
  background-image: url('../images/badge-2-bg.png');
  background-repeat: no-repeat;
  background-size: contain;
  animation: rotate360 15s linear infinite;
}

/*-----------------------------------*\
  #REFERENCES
\*-----------------------------------*/

.references {
  padding-block: 80px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.references::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(64, 162, 227, 0.2), transparent);
}

.references .section-title {
  color: #1e293b;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.references-slider-wrapper {
  overflow: hidden;
  width: 100%;
  margin-top: 60px;
  position: relative;
  padding: 30px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.references-slider {
  display: flex;
  gap: 24px;
  animation: scroll-horizontal 35s linear infinite;
  width: max-content;
}

.references-slider:hover {
  animation-play-state: paused;
}

.reference-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 300px;
  min-height: 240px;
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  overflow: hidden;
}

.reference-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(64, 162, 227, 0.3), rgba(64, 162, 227, 0.1));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.reference-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: rgba(64, 162, 227, 0.3);
}

.reference-item:hover::before {
  transform: scaleX(1);
}

.reference-logo {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: #f8fafc;
  border-radius: 16px;
  padding: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.reference-logo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(64, 162, 227, 0.1), rgba(64, 162, 227, 0.05));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.reference-item:hover .reference-logo {
  background: #ffffff;
  transform: scale(1.02);
}

.reference-item:hover .reference-logo::after {
  opacity: 1;
}

.logo-placeholder {
  font-size: 1.3rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: color 0.3s ease;
}

.reference-item:hover .logo-placeholder {
  color: #40a2e3;
}

.reference-logo-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(20%) opacity(0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.reference-item:hover .reference-logo-img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

.reference-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: #334155;
  text-align: center;
  line-height: 1.5;
  margin-top: auto;
  letter-spacing: -0.2px;
  transition: color 0.3s ease;
}

.reference-item:hover .reference-name {
  color: #1e293b;
}

@keyframes scroll-horizontal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Duplicate items for seamless loop */
.references-slider::after {
  content: '';
  display: none;
}

/*-----------------------------------*\
  #SPECIAL DISH
\*-----------------------------------*/

.special-dish-content { padding-block: 70px; }

.special-dish .abs-img {
  margin-inline: auto;
  margin-block-end: 12px;
}

.special-dish .section-text { margin-block: 16px 40px; }

.special-dish-content .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-block-end: 40px;
}

.special-dish-content .del {
  text-decoration: none;
  color: var(--davys-grey);
}

.special-dish-content .span { color: var(--gold-crayola); }

.special-dish .btn { margin-inline: auto; }
















/*-----------------------------------*\
  #TESTIMONIALS
\*-----------------------------------*/


/*-----------------------------------*\
  #TESTIMONIALS
\*-----------------------------------*/

#id-testi{
  height: 30%;
  width: 100%;
}

#id-name{
  color: white;
}

.testi {
  padding-block: 80px;
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

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

.testi-text-modern {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-family: var(--fontFamily-forum);
  font-weight: var(--weight-regular);
  line-height: 1.3;
  color: var(--white);
  max-width: 900px;
  margin-inline: auto;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.02em;
  padding: 0 20px;
}

.testi .quote {
  font-size: 7rem;
  font-family: var(--fontFamily-forum);
  line-height: 0.7em;
}

.testi .wrapper {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-block: 40px 50px;
}

.testi .separator { animation: rotate360 15s linear infinite; }

.profile .img {
  margin-inline: auto;
  border-radius: var(--radius-circle);
  margin-block-end: 15px;
}

.testi .profile-name {
  color: var(--gold-crayola);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-3);
}





/*-----------------------------------*\
  #RESERVATION
\*-----------------------------------*/

/* //BU KISMI SILDIK 


.reservation-form { margin-block-start: -270px; }

.form-text { margin-block-end: 40px; }

.form-text .link {
  display: inline;
  color: var(--gold-crayola);
}

.form-right .headline-1 { margin-block-end: 40px; }

.form-right .contact-label { margin-block-end: 5px; }

.form-right .separator { margin: 20px auto; }

.form-right .body-4 {
  color: var(--quick-silver);
  line-height: var(--lineHeight-3);
}

.form-right .body-4:not(:last-child) { margin-block-end: 25px; }

.form-left,
.form-right { padding: 40px 20px 30px; }

.input-field[type="date"] {
  text-transform: uppercase;
  padding-inline-end: 10px;
}

.input-field[type="date"]::-webkit-calendar-picker-indicator { opacity: 0; }

textarea.input-field {
  resize: none;
  height: 140px;
  padding-block: 20px;
  line-height: var(--lineHeight-1);
}

.form-left .btn {
  max-width: 100%;
  width: 100%;
}

.form-right {
  background-repeat: repeat;
  background-position: top left;
}

/*


/*-----------------------------------*\
  #FEATURES
\*-----------------------------------*/
.features {
  background-color: rgb(247, 251, 252);
  position: relative;
  overflow: hidden;
}

/* Modern Decorative Elements for Projects Section */
.projects-decorative-top,
.projects-decorative-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  position: relative;
}

.projects-decorative-top {
  margin-top: 0;
  margin-bottom: 30px;
}

.projects-decorative-bottom {
  margin-top: 30px;
  margin-bottom: 0;
}

.decorative-line {
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(64, 162, 227, 0.3) 20%, 
    rgba(64, 162, 227, 0.5) 50%, 
    rgba(64, 162, 227, 0.3) 80%, 
    transparent 100%);
  flex: 1;
  max-width: 150px;
  position: relative;
}

.decorative-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--color-heineken);
  border-radius: 50%;
  opacity: 0.6;
}

.decorative-line::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--color-heineken);
  border-radius: 50%;
  opacity: 0.6;
}

.decorative-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-heineken);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 10px rgba(64, 162, 227, 0.4);
}

.decorative-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border: 1px solid rgba(64, 162, 227, 0.3);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.2;
  }
}

/* Subtle background pattern */
.features#featuresv2 {
  position: relative;
}

.features#featuresv2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(64, 162, 227, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(64, 162, 227, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.features#featuresv2 > .container {
  position: relative;
  z-index: 1;
}

.features .section-title { 
  margin-block-end: 40px;
  position: relative;
}

.features .section-title::before,
.features .section-title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(64, 162, 227, 0.3));
  opacity: 0;
  transition: var(--transition-2);
}

.features .section-title::before {
  left: -60px;
  transform: translateY(-50%);
}

.features .section-title::after {
  right: -60px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(64, 162, 227, 0.3), transparent);
}

@media (min-width: 768px) {
  .features .section-title::before,
  .features .section-title::after {
    opacity: 1;
  }
}

/* Projects Slider */
.projects-slider-wrapper {
  position: relative;
  margin-top: 50px;
  padding: 40px 50px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  border: 1px solid rgba(64, 162, 227, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(10px);
  transition: var(--transition-2);
}

.projects-slider-wrapper:hover {
  box-shadow: 0 8px 30px rgba(64, 162, 227, 0.08);
  border-color: rgba(64, 162, 227, 0.2);
}

@media (max-width: 768px) {
  .projects-decorative-top,
  .projects-decorative-bottom {
    gap: 15px;
    margin: 20px 0;
  }
  
  .decorative-line {
    max-width: 100px;
  }
  
  .decorative-line::before,
  .decorative-line::after {
    width: 6px;
    height: 6px;
  }
  
  .decorative-dot {
    width: 5px;
    height: 5px;
  }
  
  .projects-slider-wrapper {
    padding: 30px 40px;
    border-radius: 15px;
  }
  
  .projects-slider-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .project-slide {
    width: calc(100vw - 120px);
    max-width: 280px;
    min-width: 250px;
  }
  
  .projects-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  
  .projects-slider {
    gap: 20px;
  }
  
  .projects-slider-wrapper {
    padding: 30px 20px;
  }
  
  .project-modal {
    padding: 15px;
    padding-top: 100px;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .project-modal-content {
    max-width: 95%;
    width: 95%;
    max-height: calc(90vh - 120px);
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }
  
  .project-modal-header {
    padding: 20px;
    padding-top: 20px;
    flex-shrink: 0;
  }

  .project-modal-body {
    padding: 20px;
    padding-bottom: 40px;
    flex: 1;
    overflow-y: auto;
    min-height: 0;
  }

  .project-modal-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .project-modal-images-wrapper {
    margin-bottom: 20px;
  }
  
  .project-modal-images {
    grid-template-columns: 1fr;
  }
  
  /**
   * VISION MISSION
   */
  
  .vision-mission-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
  }
  
  /* Mobil görünümde her iki kart için de: fotoğraf üstte, yazı altta */
  /* Web görünümündeki order ayarlarını override et */
  .vision-mission-card.mission-card .vm-image-wrapper,
  .vision-mission-card.vision-card .vm-image-wrapper {
    order: 1 !important;
    width: 100%;
    flex-shrink: 0;
  }
  
  .vision-mission-card.mission-card .vm-content-wrapper,
  .vision-mission-card.vision-card .vm-content-wrapper {
    order: 2 !important;
    width: 100%;
    flex-shrink: 0;
  }
  
  .vm-content-wrapper {
    padding: 30px 25px;
  }
  
  .vm-image-wrapper {
    min-height: 250px;
    max-height: 300px;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
  }
  
  .vm-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .vm-icon-wrapper {
    width: 80px;
    height: 80px;
  }
  
  .vm-icon {
    font-size: 40px;
  }
  
  .vm-number {
    font-size: 5rem;
    top: 15px;
    right: 15px;
  }
  
  .vm-title {
    font-size: 2.4rem;
  }
  
  .vm-text {
    font-size: 1.4rem;
  }
}

.projects-slider-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

@media (max-width: 768px) {
  .projects-slider-container {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
  }
}

.projects-slider {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
  width: max-content;
}

.project-slide {
  flex-shrink: 0;
  width: 285px;
}

.projects-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--color-heineken);
  color: var(--color-heineken);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: var(--transition-1);
  font-size: 24px;
}

.projects-slider-btn:hover {
  background-color: var(--color-heineken);
  color: var(--white);
}

.projects-slider-btn.prev {
  left: 0;
}

.projects-slider-btn.next {
  right: 0;
}

/* Project Modal */
.project-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  padding-top: 100px;
  overflow-y: auto;
  overflow-x: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.project-modal.active {
  display: flex;
}

.project-modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  z-index: 10001;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.project-modal-content {
  position: relative;
  background-color: var(--white);
  border-radius: 16px;
  max-width: 700px;
  width: 90%;
  max-height: calc(90vh - 120px);
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 10002;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.project-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-heineken);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10003;
  font-size: 24px;
  transition: var(--transition-1);
}

.project-modal-close:hover {
  background-color: var(--black);
  transform: rotate(90deg);
}

.project-modal-header {
  padding: 30px 30px 20px;
  padding-top: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.project-modal-title {
  font-size: 2rem;
  font-family: var(--fontFamily-forum);
  color: var(--black);
  margin: 0;
  line-height: 1.3;
}

.project-modal-body {
  padding: 25px 30px 40px;
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  padding-bottom: 50px;
}

.project-modal-images-wrapper {
  position: relative;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5;
}

.project-modal-images-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.project-modal-images {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.project-modal-image-slide {
  min-width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.project-modal-image-slide.active {
  opacity: 1;
  position: relative;
  z-index: 1;
}

.project-modal-image-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  display: block;
}

.project-modal-image-slide video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  display: block;
}

.project-modal-image-prev,
.project-modal-image-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-size: 20px;
  color: rgb(118, 159, 205);
}

.project-modal-image-prev:hover,
.project-modal-image-next:hover {
  background: rgb(118, 159, 205);
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 15px rgba(118, 159, 205, 0.3);
}

.project-modal-image-prev {
  left: 15px;
}

.project-modal-image-next {
  right: 15px;
}

.project-modal-image-counter {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  z-index: 10;
}

@media (max-width: 768px) {
  .project-modal-images-slider {
    aspect-ratio: 4/3;
  }

  .project-modal-image-prev,
  .project-modal-image-next {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .project-modal-image-prev {
    left: 10px;
  }

  .project-modal-image-next {
    right: 10px;
  }

  .project-modal-image-counter {
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    padding: 4px 10px;
  }
}

.project-modal-description {
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--black);
  text-align: justify;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.feature-card { padding: 30px 20px 40px; }

.feature-item:nth-child(2n+1) .feature-card { background-color: var(--eerie-black-3); }

.feature-item:nth-child(2n) .feature-card { background-color: var(--smoky-black-3); }

.feature-card .card-icon {
  max-width: max-content;
  margin-inline: auto;
  transition: var(--transition-2);
}

.feature-card:hover .card-icon { transform: scale(-1) rotate(180deg); }



.feature-card .card-title { margin-block: 20px; }

.feature-card .card-text {
  color: var(--quick-silver);
  line-height: var(--lineHeight-6);
}




/*-----------------------------------*\
  #EVENT
\*-----------------------------------*/

.event {
  background-color: rgb(185, 215, 234);
}

.event .section-title { margin-block-end: 40px; }

.current-project-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 285px;
  margin-inline: auto;
  width: 100%;
  margin-top: 50px;
}

.event-card {
  position: relative;
  overflow: hidden;
}

.event-card .card-content {
  /*background-image: var(--gradient-1); */
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 35px 35px 25px;
}

.event-card .publish-date {
  position: absolute;
  top: 30px;
  left: 25px;
  padding: 5px 10px;
  color: var(--gold-crayola);
  background-color: var(--black);
  font-weight: var(--weight-bold);
  letter-spacing: var(--letterSpacing-1);
  line-height: 14px;
}

.event-card .card-subtitle {
  color: var(--gold-crayola);
  text-transform: uppercase;
  font-weight: var(--weight-bold);
  letter-spacing: var(--letterSpacing-2);
  margin-block-end: 5px;
}

.event-card .card-banner .img-cover { transition: var(--transition-2); }

.event-card:is(:hover, :focus-within) .img-cover { transform: scale(1.05); }

.event .btn {
  margin-inline: auto;
  margin-block-start: 40px;
}




/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

/* Modern Footer Styles */
.footer {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  padding-block: 60px 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

/* Modal açıkken footer'ın altında kalmasını önle */
body:has(.project-modal.active) .footer {
  z-index: 0;
}

.footer-top {
  margin-block-end: 40px;
  display: grid;
  gap: 40px;
  text-align: left;
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    align-items: start;
  }
}

/* Footer Brand Section */
.footer-brand {
  position: relative;
  padding: 0;
}

.footer-logo {
  display: inline-block;
  margin-block-end: 30px;
  transition: transform 0.3s ease;
}

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

.footer-logo img {
  filter: brightness(0.9);
  background-color: #ffffff;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-block-end: 30px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--black);
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.footer-contact-item:hover {
  opacity: 1;
}

.footer-contact-item ion-icon {
  font-size: 20px;
  color: var(--color-heineken);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item address,
.footer-contact-item .body-4 {
  margin: 0;
  line-height: 1.6;
  color: var(--black);
  opacity: 0.8;
}

.footer-contact-item .contact-link {
  color: var(--black);
  opacity: 0.8;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.footer-contact-item .contact-link:hover {
  color: var(--color-heineken);
  opacity: 1;
}

.footer-brand-name {
  margin-block-start: 30px;
  padding-block-start: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-brand-name .title-1 {
  color: var(--color-heineken);
  font-size: 2.5rem;
  margin: 0;
  font-weight: 700;
  letter-spacing: 2px;
}

/* Footer Navigation Section */
.footer-nav-section,
.footer-social-section {
  padding: 0;
}

.footer-section-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-block-end: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-block-end: 12px;
}

.footer-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-heineken);
}

.footer-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.footer-link {
  color: var(--black);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 13px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  opacity: 0.75;
}

.footer-link::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--color-heineken);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  color: var(--color-heineken);
  opacity: 1;
  transform: translateX(8px);
}

.footer-link:hover::before {
  opacity: 1;
}

/* Footer Social Section */
.footer-social-list {
  gap: 16px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(64, 162, 227, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.footer-social-link:hover {
  background: rgba(64, 162, 227, 0.1);
  border-color: rgba(64, 162, 227, 0.2);
  transform: translateX(4px);
}

.footer-social-icon-wrapper {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.footer-social-link:hover .footer-social-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.footer-social-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer-social-link .label-2 {
  color: var(--black);
  font-weight: 600;
  opacity: 0.85;
  transition: color 0.3s ease;
}

.footer-social-link:hover .label-2 {
  color: var(--color-heineken);
  opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
  padding-block-start: 30px;
  text-align: center;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
  margin-block-end: 25px;
}

.copyright {
  color: var(--black);
  line-height: 1.6;
  opacity: 0.6;
  font-size: 14px;
}

.copyright .link {
  display: inline;
  color: var(--color-heineken);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.copyright .link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 767px) {
  .footer {
    padding-block: 50px 25px;
  }

  .footer-top {
    gap: 35px;
    text-align: center;
  }

  .footer-section-title {
    text-align: center;
  }

  .footer-section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-contact-item {
    justify-content: center;
    text-align: center;
  }

  .footer-link:hover {
    transform: none;
  }

  .footer-social-link {
    justify-content: center;
  }

  .footer-social-link:hover {
    transform: none;
  }
}



/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/
.back-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--gold-crayola);
  color: var(--smoky-black-1);
  font-size: 22px;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-circle);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-1);
  transition: var(--transition-1);
  opacity: 0;
  visibility: hidden;
  z-index: 4;
}

.back-top-btn:is(:hover, :focus-visible) {
  background-color: var(--white);
  color: var(--gold-crayola);
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible; 
}




/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 575px screen
 */
@media(max-width:960px){
  :root {

    /**
     * typography
     */

    --fontSize-body-2: 2rem;

  }
  .aboutv2-banner{
    display: flex;
    justify-content: center;
    align-items: center;
    
  }
}
 @media (min-width: 575px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fontSize-body-2: 2rem;

  }

.aboutv2-banner .denge {
  display: none;
}

  /**
   * REUSED STYLE
   */

  :is(.service, .about) .section-text {
    max-width: 420px;
    margin-inline: auto;
  }

  .contact-number { --fontSize-body-1: 3rem; }



  /**
   * TOPBAR
   */

  .topbar {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-block: 10px;
    border-block-end: 1px solid var(--white-alpha-20);
    z-index: 4;
    transition: var(--transition-1);
    background: linear-gradient(90deg, rgba(240, 245, 250, 0.95) 0%, rgba(30, 40, 50, 0.95) 50%);
  }

  .topbar:has(~ .header.active) { transform: translateY(-100%); }

  .topbar-item:not(.link),
  .topbar .separator { display: none; }

  .topbar .container,
  .topbar-item {
    display: flex;
    align-items: center;
  }

  .topbar .container {
    justify-content: center;
    gap: 30px;
  }

  .topbar-item { gap: 6px; }

  .topbar-item ion-icon { --ionicon-stroke-width: 60px; }

  .topbar-item .span { font-size: var(--fontSize-label-1); }

  /* Sol taraftaki itemler için siyah renk */
  .topbar-item:not(.link) .span {
    color: var(--black);
  }

  .topbar-item:not(.link) ion-icon {
    color: var(--black);
  }

  /* Sağ taraftaki linkler için beyaz renk */
  .topbar .link { 
    transition: var(--transition-1);
    color: rgba(255, 255, 255, 0.95) !important;
  }

  .topbar .link .span {
    color: rgba(255, 255, 255, 0.95) !important;
  }

  .topbar .link ion-icon {
    color: rgba(255, 255, 255, 0.95) !important;
  }

  .topbar .link:is(:hover, :focus-visible) { 
    color: var(--gold-crayola) !important; 
  }

  .topbar .link:is(:hover, :focus-visible) .span {
    color: var(--gold-crayola) !important;
  }



/**
   * HEADER
   */

   .header { top: 51px; }

   .header.active { top: 0; }
 
   .header .btn {
     display: block;
     margin-inline-start: auto;
   }

   /**
   * HERO
   */

  .hero-btn { transform: scale(0.7); }

   /**
   * SERVICE
   */

   .service .container {
    max-width: 420px;
    margin-inline: auto;
  }


  /**
   * ABOUT
   */

   .about .container { gap: 80px; }

   .about-banner > .w-100 { padding-inline-start: 0px;
  padding-top: 50px; }
 
   .about .abs-img-1 { width: 285px; }
 
   .about .contact-number { --fontSize-body-1: 2.4rem; }
 
  /**
   * REFERENCES
   */
  
  .references {
    padding-block: 60px;
  }
  
  .references-slider-wrapper {
    margin-top: 40px;
    padding: 20px 0;
  }
  
  .references-slider {
    gap: 20px;
  }
  
  .reference-item {
    width: 260px;
    min-height: 200px;
    padding: 30px 20px;
    border-radius: 16px;
  }
  
  .reference-logo {
    height: 100px;
    margin-bottom: 20px;
    border-radius: 12px;
    padding: 15px;
  }
  
  .logo-placeholder {
    font-size: 1.1rem;
  }
  
  .reference-name {
    font-size: 1.2rem;
  }

 /**
   * MENU    //BU KISMI SILDIK
   */
/*
   .menu-card .title-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
  }

  .menu-card .badge { margin-block-start: 0; }

  .menu-card .span {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
  }

  .menu-card .span::before {
    content: "";
    height: 6px;
    flex-grow: 1;
    border-block: 1px solid var(--white-alpha-20);
  }

  */


    /**
   * EVENT
   */

   .event .container {
    max-width: 420px;
    margin-inline: auto;
  }

  /**
   * FOOTER
   */

   .footer-brand > * {
    max-width: 460px;
    margin-inline: auto;
  }

  .footer .input-wrapper { position: relative; }

  .footer .input-field {
    margin-block-end: 0;
    padding-inline-end: 205px;
  }

  .footer-brand .btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    min-width: max-content;
  }

}


/**
 * responsive for larger than 768px screen
 */

 @media (min-width: 768px) {

  /**
   * REUSED STYLE
   */

  .grid-list { grid-template-columns: 1fr 1fr; }

  :is(.service, .event) .container { max-width: 820px; }

  :is(.service, .event) .grid-list li:last-child {
    grid-column: 1 / 3;
    width: calc(50% - 20px);
    margin-inline: auto;
  }

  /**
   * HEADER
   */

   .navbar-list { margin-inline: 30px; }

    /**
   * HERO
   */

  .hero .slider-btn {
    display: grid;
    position: absolute;
    z-index: 1;
    color: var(--gold-crayola);
    font-size: 2.4rem;
    border: 1px solid var(--gold-crayola);
    width: 45px;
    height: 45px;
    place-items: center;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    transition: var(--transition-1);
  }

  .hero .slider-btn ion-icon { transform: rotate(-45deg); }

  .hero .slider-btn.prev { left: 30px; }

  .hero .slider-btn.next { right: 30px; }

  .hero .slider-btn:is(:hover, :focus-visible) {
    background-color: var(--gold-crayola);
    color: var(--black);
  }


  /**
   * RESERVATION     //DELETE
   */


   /*

   .reservation .input-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
  }

  .reservation .input-wrapper:nth-child(4) {
    grid-template-columns: repeat(3, 1fr);
  }
*/


  /**
   * FOOTER
   */

   .footer-brand { grid-column: 1 / 3; }

  








 }


/**
 * responsive for larger than 992px screen
 */

 @media (min-width: 992px) {
  .project-modal {
    padding: 30px;
    padding-top: 100px;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .project-modal-content {
    max-width: 650px;
    width: 85%;
    max-height: calc(90vh - 120px);
    margin: 0 auto;
    position: relative;
  }

  .project-modal-header {
    padding: 25px 30px 20px;
    padding-top: 30px;
    flex-shrink: 0;
  }

  .project-modal-body {
    padding: 20px 30px 30px;
    flex: 1;
    overflow-y: auto;
    min-height: 0;
  }

  .project-modal-title {
    font-size: 1.9rem;
    line-height: 1.3;
  }

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * spacing
     */

    --section-space: 100px;

  }



  /**
   * REUSED STYLE
   */

  :is(.service, .event) .container { max-width: unset; }

  :is(.service, .event) .grid-list { grid-template-columns: repeat(3, 1fr); }

  :is(.service, .event) .grid-list li:last-child {
    grid-column: auto;
    width: 100%;
  }
  
  .features .grid-list {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /**
   * VISION MISSION
   */
  
  .vision-mission-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  
  /* Web görünümünde vizyon kartı: yazı solda, fotoğraf sağda */
  .vision-mission-card.vision-card .vm-content-wrapper {
    order: 1;
  }
  
  .vision-mission-card.vision-card .vm-image-wrapper {
    order: 2;
  }
  
  .vm-image-wrapper {
    min-height: 400px;
    max-height: none;
    height: auto;
  }
  
  /* Misyon kartı görsel yüksekliği - ekrandan taşmaması için ayarlandı */
  .vision-mission-card.mission-card .vm-image-wrapper {
    min-height: 320px;
    max-height: 360px;
  }
  
  .vm-content-wrapper {
    padding: 40px 30px;
  }
  
  .vm-number {
    font-size: 6rem;
    top: 20px;
    right: 20px;
  }

/**
   * TOPBAR
   */

   .topbar-item:not(.link) { display: flex; }

   .topbar .item-2 { margin-inline-end: auto; }

/**
   * SERVICE
   */

   .service .shape { display: block; }

   .service .shape-1 {
     bottom: 0;
     left: 0;
   }
 
   .service .shape-2 {
     top: 0;
     right: 0;
   }


   /**
   * ABOUT
   */

  .about .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-content-fullwidth {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  
  .section-text-fullwidth {
    width: 100%;
    max-width: 100%;
    text-align: justify;
    text-align-last: left;
    line-height: 1.8;
    margin-block: 30px;
  }

    /**
   * SPECIAL DISH
   */

   .special-dish {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .special-dish-content { padding-inline: 50px 25px; }

  .special-dish-content .container { position: relative; }

  .special-dish .section-subtitle::after,
  .special-dish .btn { margin-inline: 0; }

  .special-dish-content .wrapper { justify-content: flex-start; }

  .special-dish .abs-img {
    position: absolute;
    top: 10px;
    left: -40px;
    animation: move 5s linear infinite;
  }
 

    /**
   * MENU         //DELETE 
   */

/*

   .menu .grid-list {
    position: relative;
    column-gap: 90px;
  }

  .menu .grid-list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    border-inline-start: 1px solid var(--white-alpha-20);
  }
*/

  /**
   * TESTIMONIALS
   */

   .testi-text {
    max-width: 910px;
    margin-inline: auto;
  }
  
  .testi-text-modern {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    padding: 0 40px;
  }
  
  .testi {
    min-height: 400px;
    padding-block: 100px;
  }


    /**
   * RESERVATION    //DELETE
   */
/*
   .reservation-form {
    display: grid;
    grid-template-columns: 1fr 0.5fr;
  }
*/

  /**
   * FOOTER
   */

   .footer .grid-list {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
    gap: 40px;
  }

  .footer-brand {
    grid-column: auto;
    order: 1;
  }

  .footer-list:last-child { order: 2; }

}

/**
 * responsive for larger than 1200px screen
 */

 @media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fontSize-title-2: 2.5rem;

  }



  /**
   * REUSED STYLE
   */

  .container,
  :is(.service, .event) .container {
    max-width: 1200px;
    width: 100%;
    margin-inline: auto;
  }

   /**
   * TOPBAR
   */

   .topbar .container { max-width: unset; }

   .topbar .separator { display: block; }


/**
   * HEADER
   */

   .nav-open-btn,
   .navbar > *:not(.navbar-list),
   .header .overlay { display: none; }
 
   .header .container { max-width: unset; }
 
   .navbar,
   .navbar.active,
   .navbar-list { all: unset; }
 
   .navbar,
   .navbar.active { margin-inline: auto 20px; }
 
   .navbar-list {
     display: flex;
     gap: 30px;
   }
 
   .navbar-item { border-block-start: none; }
 
   .navbar .separator { display: none; }
 
   .navbar-link:is(:hover, :focus-visible, .active) .span {
     transform: unset;
   }
 
   .navbar-link {
     font-weight: var(--weight-bold);
     letter-spacing: var(--letterSpacing-1);
   }
 
   .navbar-link::after { display: block; }
 
   .navbar-link.active::after {
     transform: scaleX(1);
     opacity: 1;
   }
 
   .header .btn { margin-inline-start: 0; }
 
   /**
    * HERO
    */
 
   .hero { height: 880px; }
 
   .hero-btn {
     bottom: 50px;
     right: 50px;
     transform: scale(1);
   }
 
 
 
   /**
    * SERVICE
    */
 
   .service .grid-list { gap: 150px; }
 
   .service .grid-list li:nth-child(2n+1) { transform: translateY(-160px); }
 
   .service .section-text { margin-block-end: 75px; }
 
 
 
   /**
    * ABOUT
    */
 
   .about { padding-block: 170px 100px; }
 
 
 
   /**
    * SPECIAL DISH
    */
 
   .special-dish-content {
     padding: 225px 120px;
     padding-inline-end: 0;
   }
 
   .special-dish-content .container {
     max-width: 460px;
     margin-inline: 0;
   }
 
 
 
   /**
    * MENU  //DELETE
    */
 /*
   .menu .grid-list {
     gap: 55px 200px;
     margin-block-end: 55px;
   }
 /*
 
 
   /**
    * TESTIMONIALS
    */
 
   .form-left,
   .form-right { padding: 75px 60px; }
 
 
 
 
   /**
    * FEATURES
    */
 
   .features .grid-list { grid-template-columns: repeat(3, 1fr); }
   
   /**
    * VISION MISSION
    */
   
   .vision-mission-card {
     display: grid;
     grid-template-columns: 1fr 1fr;
   }
   
   /* Web görünümünde vizyon kartı: yazı solda, fotoğraf sağda */
   .vision-mission-card.vision-card .vm-content-wrapper {
     order: 1;
   }
   
   .vision-mission-card.vision-card .vm-image-wrapper {
     order: 2;
   }
   
   .vm-image-wrapper {
     min-height: 400px;
     max-height: none;
     height: auto;
   }
   
   /* Misyon kartı görsel yüksekliği - ekrandan taşmaması için ayarlandı */
   .vision-mission-card.mission-card .vm-image-wrapper {
     min-height: 320px;
     max-height: 360px;
   }
   
   .vm-content-wrapper {
     padding: 60px 50px;
   }
   
   .vm-number {
     font-size: 8rem;
   }

 }
 

 /**
 * responsive for larger than 1400px screen
 */

@media (min-width: 1400px) {

  /**
   * HEADER
   */

  .navbar { margin-inline: auto; }



  /**
   * ABOUT
   */

  .about-content { padding-inline-end: 90px; }
  
  .about-content-fullwidth {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  
  .section-text-fullwidth {
    width: 100%;
    max-width: 100%;
    text-align: justify;
    text-align-last: left;
    line-height: 1.8;
    margin-block: 30px;
  }
  
  /**
   * REFERENCES
   */
  
  .references {
    padding-block: 70px;
  }
  
  .references-slider-wrapper {
    margin-top: 50px;
    padding: 25px 0;
  }
  
  .references-slider {
    gap: 22px;
  }
  
  .reference-item {
    width: 280px;
    min-height: 220px;
    padding: 35px 25px;
  }
  
  .reference-logo {
    height: 110px;
    margin-bottom: 22px;
  }
  
  .logo-placeholder {
    font-size: 1.4rem;
  }
  
  .reference-name {
    font-size: 1.35rem;
  }

  .about .shape {
    display: block;
    top: 46%;
    left: 0;
  }



  /**
   * SPECIAL DISH
   */

  .special-dish {
    overflow: visible;
    position: relative;
  }

  .special-dish .shape {
    display: block;
    right: 0;
    z-index: 1;
  }

  .special-dish .shape-1 { top: 45%; }

  .special-dish .shape-2 {
    bottom: 0;
    transform: translateY(50%);
    width: max-content;
  }



  /**
   * FEATURES
   */

  .features { overflow: visible; }

  .features .shape { display: block; }

  .features .shape-1 {
    top: -100px;
    right: 0;
  }

  .features .shape-2 {
    bottom: 80px;
    left: 0;
  }
  

}












 
























