:root {
    /* Colors RGB 209 / 20 / 56 */
    --color-text1: #ffffff;
    --color-text2: #000000;
    --color-bg: #ffffff;

    /* Brand (měň podle projektu) */
    --color-primary: #2f7de1;
    --color-secondary: rgb(0, 0, 0);
    --color-tertiary: rgb( 86, 147, 152);

    /* Typography */
   --font-base: "Univers Next Pro", system-ui, -apple-system,
      BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;

    /* Layout */
    --max-white: 1200px;
    --padding: 1rem;

    /* Spacing scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;

    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    /* Transition */
    --transition-base: 0.2s ease;
}


/* =========================
   RESET & BASE
========================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
    font-family: var(--font-base);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-text);
    background-color: var(--color-bg);
}

/* =========================
   CONTAINER
========================= */

.container {
  width: 100%;
}

/* =========================
   HEADER
========================= */


.header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 1000;

   background: transparent; /* nebo rgba(...) */
     transition: transform 0.3s ease;
}

.header__container {
   display: flex;
   align-items: center;
   padding: 50px;
}


/* Logo */
.brand img {
  height: 50px;
  margin-left: 100px;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
  filter: drop-shadow(0 0 15px rgb(0, 0, 0))
        drop-shadow(0 0 0px rgba(0,0,0,0.8));
}

.brand img:hover {
  transform: scale(1.08);
    filter: drop-shadow(0 0 15px rgb(0, 0, 0))
        drop-shadow(0 0 0px rgba(0,0,0,0.8));
}


/* Menu */
.nav__menu {
   display: flex;
   gap: 40px;
   list-style: none;
   padding: 20;
   margin-left: 150px;

   margin-top: 0px;
   
}

.nav__menu a {
  position: relative;
  text-decoration: none;
  font-weight: 500;
  padding: 10px;
  color: #ffffff;
  border-radius: 50px;
  transition: color 0.3s ease;
  backdrop-filter: blur(2px);

    
}

.nav__menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--color-primary);;
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav__menu a:hover {
  color: var(--color-primary);
}

.nav__menu a:hover::after {
  width: 60%;
}


.header--hidden {
  transform: translateY(-20%);
}


  .menu-toggle {
    display: none;
  }

@media (max-width: 1300px) {

  .header--hidden {
    transform: translateY(-0%);
  }

  .nav__menu {
   gap: 80px;
  }

  .menu-toggle {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    margin: 20px;

  }

  /* schová checkbox */
  .menu-toggle input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .menu-btn {
    width: 46px;
    height: 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: transform 0.25s ease, ;
  }
  .menu-btn:hover {
    transform: scale(1.05);
  }

  .menu-btn span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
  }

  /* ANIMACE NA X */
  .menu-toggle input:checked + .menu-btn span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
        background: #000000;
  }

  .menu-toggle input:checked + .menu-btn span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle input:checked + .menu-btn span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: #000000;
  }

}


/* =========================
   HERO
========================= */

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2;
}

.hero__container {
  position: relative;
  z-index: 3;
  max-width: 900px;
}

.hero__title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero__text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.9);
}

.hero__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 15px;
  transition: 0.25s;
}

.btn--primary {
  background: #2f7de1;
  color: #fff;
  border: 2px solid #ffffff00;
}

.btn--primary:hover {
  background: #1f5fb3;
}

.btn--outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn--outline:hover {
  background: #fff;
  color: #111;
}

.btn--outline2 {
  border: 2px solid #000000;
  color: #000000;
}

.btn--outline2:hover {
  background: #000000;
  color: #ffffff;
}



/* =========================
   MOBILE HAMBURGER DESIGN
   (< 1000px) – reset + full width red panel
   ========================= */
@media (max-width: 1300px) {

  /* Logo */
.brand {
  position: relative;
}

.brand img {
  position: absolute;
  margin-left: -20px;
  margin-top: -30px;
  z-index: 50;

}

.brand img:hover {
  transform: scale(1.08);
filter: drop-shadow(0 0 10px rgba(0,0,0,1))
        drop-shadow(0 0 20px rgba(0,0,0,0.8));
}

  /* MENU PANEL */
  .nav__menu {

    list-style: none;
    margin: 0;
    padding: 0;
    padding-left: 20px;
    padding-right: 20px;
    position: fixed;
    inset: 0;                /* top, right, bottom, left = 0 */
    width: 100%;
    height: 100vh;
    padding-top: 120px;

    display: none;
    flex-direction: column;
    align-items: stretch;    /* ⬅️ DŮLEŽITÉ */
    justify-content: flex-start;
  }



  .nav__menu::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #ffffffdd;
    background-size: 500px 500px;
        backdrop-filter: blur(5px);
    background-repeat: repeat;
    opacity: 1;        /* ⬅️ TADY nastavíš průhlednost */
    z-index: -1;          /* pod obsahem */

  }

  /* ODKAZY – FULL WIDTH */
  .nav__menu a {
    display: flex;           /* aby šel centrovat text */
    align-items: center;
    justify-content: center;

    width: 100%;             /* ⬅️ přes celou šířku */
    height: 65px;            /* výška jednoho řádku */
    border-radius: 15px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: -60px; /* ⬅️ TADY měníš mezeru */
    background-color: #00000039;
    backdrop-filter: blur(5px);
  }

  /* hover / tap efekt */
  .nav__menu a:hover {
    color: #000000;
    transform: translateY(-2px);
  }

  /* zruš desktop underline */
  .nav__menu a::after {
    display: none;
  }
}

/* =========================
   MAIN SECTIONS
========================= */

.main {
  
}






.wedding-catering-section {
      padding: 150px 20px 0px 0px;
      color: #000000;
      overflow: hidden;
    }

.wedding-catering-section-pronajem{
  margin-top: 120px;
}

    .wedding-catering-section .wedding-catering-container {
      max-width: 1250px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 70px;
    }

    .wedding-catering-section .wedding-catering-content {
      flex: 1 1 52%;
      max-width: 580px;
      position: relative;
      z-index: 2;
    }

    .wedding-catering-section .wedding-catering-label {
      display: inline-block;
      margin-bottom: 18px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: var(--color-primary);
    }

    .wedding-catering-section .wedding-catering-title {
      margin: 0 0 22px;
      font-size: clamp(2.2rem, 4vw, 4.2rem);
      line-height: 1.02;
      font-weight: 800;
      letter-spacing: -1.5px;
      
    }

    .wedding-catering-section .wedding-catering-text {
      margin: 0 0 34px;
      font-size: 1.05rem;
      line-height: 1.8;

      max-width: 520px;
    }

    .wedding-catering-section .wedding-catering-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .wedding-catering-section .wedding-catering-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 26px;
      border-radius: 999px;
      text-decoration: none;
      font-size: 0.96rem;
      font-weight: 700;
      transition: all 0.25s ease;
    }

    .wedding-catering-section .wedding-catering-btn-primary {
      background: #b67c52;
      color: #ffffff;
      box-shadow: 0 12px 30px rgba(182, 124, 82, 0.22);
    }

    .wedding-catering-section .wedding-catering-btn-primary:hover {
      background: #9f6943;
      transform: translateY(-2px);
    }

    

    .wedding-catering-section .wedding-catering-image-wrap {
      flex: 1 1 48%;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 500px;
    }

    .wedding-catering-section .wedding-catering-image-bg {
      position: absolute;
      width: 430px;
      height: 430px;
      z-index: 1;
    }

    .wedding-catering-section .wedding-catering-image {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 520px;
      height: 520px;
      object-fit: cover;



    }

    @media (max-width: 991px) {
      .wedding-catering-section .wedding-catering-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
      }

      .wedding-catering-section .wedding-catering-content {
        max-width: 100%;
      }

      .wedding-catering-section .wedding-catering-text {
        max-width: 100%;
      }

      .wedding-catering-section .wedding-catering-buttons {
        justify-content: center;
      }

      .wedding-catering-section .wedding-catering-image-wrap {
        min-height: auto;
      }

      .wedding-catering-section .wedding-catering-image {
        max-width: 420px;
        height: 420px;
      }

      .wedding-catering-section .wedding-catering-image-bg {
        width: 360px;
        height: 360px;
      }
    }

    @media (max-width: 576px) {
      .wedding-catering-section {
        padding: 70px 16px;
      }

      .wedding-catering-section .wedding-catering-title {
        font-size: 2.3rem;
      }

      .wedding-catering-section .wedding-catering-text {
        font-size: 0.98rem;
        line-height: 1.7;
      }

      .wedding-catering-section .wedding-catering-btn {
        width: 100%;
      }

      .wedding-catering-section .wedding-catering-image {
        max-width: 300px;
        height: 300px;
      }

      .wedding-catering-section .wedding-catering-image-bg {
        width: 270px;
        height: 270px;
      }
    }

    









.services-section {
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.services-container {
  max-width: 1280px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 60px;
  text-align: center;
}

.services-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #2f80ed;
  margin-bottom: 18px;
}

.services-header h2 {
  font-size: 62px;
  line-height: 1.05;
  font-weight: 800;
  color: #111;
  margin-bottom: 24px;
}

.services-header p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.service-card {
  background: #fff;
  border-radius: 24px;
  padding: 34px 30px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
  transition: 0.35s ease;
  position: relative;
  border: 1px solid rgba(17, 17, 17, 0.05);
  width: calc((100% - 56px) / 3);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2f80ed, #1c5fc4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 25px;
  font-weight: 800;
  color: #111;
  margin-bottom: 16px;
  line-height: 1.25;
}

.service-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin: 0;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  padding: 14px 24px;
  border-radius: 14px;
  background: #2f80ed;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.service-btn:hover {
  background: #1f6fe0;
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .services-header h2 {
    font-size: 48px;
  }

  .service-card {
    width: calc((100% - 28px) / 2);
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 90px 20px;
  }

  .services-header h2 {
    font-size: 38px;
  }

  .services-header p {
    font-size: 16px;
  }

  .service-card {
    width: 100%;
  }

  .service-card {
    padding: 28px 24px;
  }

  .service-card h3 {
    font-size: 22px;
  }
}














.why-us-section {
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.why-us-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.why-us-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #2f80ed;
  margin-bottom: 18px;
}

.why-us-left h2 {
  font-size: 62px;
  line-height: 1.05;
  font-weight: 800;
  color: #111;
  margin-bottom: 24px;
}

.why-us-text {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  max-width: 720px;
  margin-bottom: 40px;
}

.why-us-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 28px;
  margin-bottom: 42px;
}

.why-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.05);
  border-radius: 22px;
  padding: 24px 22px;
  transition: 0.3s ease;
}

.why-point:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.why-point-icon {
  min-width: 46px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2f80ed, #1c5fc4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
}

.why-point h3 {
  font-size: 22px;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
  line-height: 1.2;
}

.why-point p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: #666;
}

.why-us-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}



.why-us-right {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.why-us-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 32px 28px;
  border: 1px solid rgba(17, 17, 17, 0.05);
  transition: 0.35s ease;
}

.why-us-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.08);
}

.why-us-card span {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  color: #2f80ed;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.why-us-card h3 {
  font-size: 28px;
  font-weight: 800;
  color: #111;
  margin-bottom: 14px;
  line-height: 1.2;
}

.why-us-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin: 0;
}



@media (max-width: 1100px) {
  .why-us-container {
    grid-template-columns: 1fr;
  }

  .why-us-left h2 {
    font-size: 48px;
  }

  .why-us-right {
  display: none;
}

}

@media (max-width: 768px) {
  .why-us-section {
    padding: 90px 20px;
  }

  .why-us-left h2 {
    font-size: 38px;
  }

  .why-us-text {
    font-size: 16px;
  }

  .why-us-points {
    grid-template-columns: 1fr;
  }

  .why-point {
    padding: 20px 18px;
  }

  .why-point h3 {
    font-size: 20px;
  }

  .why-us-card h3 {
    font-size: 24px;
  }
}












.projects-section {
  padding: 120px 20px;
}

.projects-container {
  max-width: 1280px;
  margin: 0 auto;
}

.projects-header {
  max-width: 700px;
  margin-bottom: 60px;
}

.projects-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #2f80ed;
  margin-bottom: 18px;
}

.projects-header h2 {
  font-size: 58px;
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
}

.projects-header p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.project-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  height: 260px;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.2)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: 0.4s ease;
}

.project-card:hover img {
  transform: scale(1.1);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.project-overlay p {
  color: #ddd;
  font-size: 14px;
  margin-bottom: 16px;
}

.project-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #2f80ed;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  width: fit-content;
  transition: 0.3s;
}

.project-btn:hover {
  background: #1f6fe0;
}

.projects-cta {
  margin-top: 60px;
  text-align: center;
}

.projects-main-btn {
  padding: 16px 32px;
  background: #111;
  color: #fff;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.projects-main-btn:hover {
  background: #2f80ed;
}

@media (max-width: 1100px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .projects-header h2 {
    font-size: 38px;
  }

  .projects-header p {
    font-size: 16px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    height: 220px;
  }
}
















.reviews-section {
  padding: 120px 20px;
  overflow: hidden;
  display: none;
}

.reviews-container {
  max-width: 1280px;
  margin: 0 auto;
}

.reviews-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.reviews-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #2f80ed;
  margin-bottom: 18px;
}

.reviews-header h2 {
  font-size: 56px;
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
}

.reviews-header p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}

.reviews-slider {
  overflow: hidden;
  width: 100%;
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.review-card {

  border-radius: 24px;
  padding: 34px 28px;

  border: 2px solid rgba(17, 17, 17, 0.338);
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  font-size: 18px;
  color: #2f80ed;
  margin-bottom: 18px;
  letter-spacing: 2px;
}

.review-card p {
  font-size: 16px;
  line-height: 1.85;
  color: #444;
  margin: 0 0 28px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.review-author img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: 16px;
  color: #111;
  margin-bottom: 4px;
}

.review-author span {
  font-size: 14px;
  color: #777;
}

.reviews-controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.reviews-arrow {
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

.reviews-arrow:hover {
  background: #2f80ed;
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .reviews-header h2 {
    font-size: 44px;
  }

  .reviews-track {
    grid-auto-columns: calc((100% - 24px) / 2);
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 90px 20px;
  }

  .reviews-header {
    margin-bottom: 40px;
  }

  .reviews-header h2 {
    font-size: 36px;
  }

  .reviews-header p {
    font-size: 16px;
  }

  .reviews-track {
    grid-auto-columns: 100%;
  }

  .review-card {
    padding: 28px 22px;
  }

  .review-card p {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 22px;
  }

  .review-author img {
    width: 52px;
    height: 52px;
  }

  .reviews-arrow {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }
}












.contact-section {
  padding: 120px 20px;
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: stretch;
}

.contact-info {
  background: linear-gradient(135deg, #111 0%, #1b1b1b 100%);
  border-radius: 30px;
  padding: 50px 40px;
  color: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.contact-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #63a4ff;
  margin-bottom: 18px;
}

.contact-info h2 {
  font-size: 56px;
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 24px;
  color: #fff;
}

.contact-info p {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 34px;
  max-width: 520px;
}

.contact-info-boxes {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.136);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 20px;
  border-radius: 18px;
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-info-icon-img{
  width: 40px;
}

.contact-info-box strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-info-box span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.contact-form-wrapper {
  background: #ffffff;
  border-radius: 30px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(17, 17, 17, 0.05);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #dfe5ee;
  background: #f8f9fc;
  border-radius: 16px;
  padding: 16px 18px;
  font-size: 15px;
  color: #111;
  outline: none;
  transition: 0.3s ease;
  font-family: inherit;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2f80ed;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(47, 128, 237, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8c96a3;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  cursor: pointer;
}

.checkbox-group input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: #2f80ed;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 30px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #2f80ed, #1c5fc4);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 14px 30px rgba(47, 128, 237, 0.28);
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(47, 128, 237, 0.35);
}

@media (max-width: 1100px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info h2 {
    font-size: 44px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 90px 20px;
  }

  .contact-info,
  .contact-form-wrapper {
    padding: 32px 22px;
    border-radius: 24px;
  }

  .contact-info h2 {
    font-size: 34px;
  }

  .contact-info p {
    font-size: 15px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 15px 16px;
    border-radius: 14px;
  }

  .contact-btn {
    width: 100%;
  }
}

/* =========================
   FOOTER
========================= */

/* ===== FOOTER ===== */
.footer{
  background:#000;
  color:#fff;
  padding: 80px 5% 25px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-wrap{
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  gap: 36px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr 1.3fr;
  align-items: start;
}

.footer h4{
  margin: 0 0 14px 0;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.footer-brand{
  display:flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo{
  width: 160px;
  height: auto;
  display:block;
}

.footer-desc{
  margin:0;
  line-height:1.6;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  max-width: 320px;
}

.footer-social{
  display:flex;
  display: none;
  gap: 10px;
  margin-top: 6px;
}

.footer-social a{
  width: 42px;
  height: 42px;
  display:grid;
  place-items:center;
  border-radius: 12px;
  text-decoration:none;
  color:#fff;
  background: rgba(255,255,255,0.04);

  transition: .22s ease;
  font-weight: 800;
}

.footer-social a img {
  width: 30px;
}

.footer-social a:hover{
  transform: translateY(-2px);

}

/* links */
.footer-links{
  display:flex;
  flex-direction: column;
  gap: 12px;
}

.footer a{
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: .2s ease;
  font-size: 14px;
}

.footer a:hover{
  color:#fff;
}

/* slash menu style */
.slash-links a{
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 13px;
  position: relative;
  padding-left: 14px;
}

.slash-links a::before{
  content:"/";
  position:absolute;
  left:0;
  color: var(--color-primary);
}

/* contact */
.footer-contact p{
  margin:0 0 10px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.footer-contact strong{
  color: rgba(255,255,255,0.9);
}

/* map */
.footer-map .map-frame{
  border-radius: 16px;
  overflow: hidden;

}

.footer-map iframe{
  width: 100%;
  height: 220px;
  border: 0;
  display:block;

}

/* bottom */
.footer-bottom{
  max-width: 1300px;
  margin: 40px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}

.footer-bottom-links{
  display:flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom-links a{
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.footer-bottom-links a:hover{
  color:#fff;
}

/* responsive */
@media (max-width: 1100px){
  .footer-wrap{
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-map{
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px){
  .footer{
    padding: 60px 4% 20px;
  }
  .footer-wrap{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-logo{ width: 140px; }
  .footer-map iframe{ height: 200px; }
}







#form-status {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 500;
}

.form-status-loading {
  color: #999;
}

.form-status-success {
  color: #22c55e;
}

.form-status-error {
  color: #ef4444;
}




