@font-face {
  font-family: "GilroyMedium";
  src: url("../font/Gilroy-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "GilroyLight";
  src: url("../font/Gilroy-Light.ttf") format("truetype");
}
@font-face {
  font-family: "GilroyBold";
  src: url("../font/Gilroy-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "GilroyRegular";
  src: url("../font/Gilroy-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "GilroySemiBold";
  src: url("../font/Gilroy-SemiBold.ttf") format("truetype");
}

/* All Page css start */

/* Variables */
:root {
  --primary-color: orange;
  --secondary-color: #575781;
  --white: #ffffff;
  --text-light: rgba(255, 255, 255, 0.9);
  --text-hover: rgba(255, 255, 255, 1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--white);
  width: 100%;
}

.container {
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
.mobile-only {
  display: none;
}
.top-contact .icon-fontawesome {
  font-size: 22px;
  color: var(--text-light);
  transition: var(--transition);
}

/* General Navbar */
.general-navbar {
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 0px 52px;
  background: #57578118;
  top: 0;
}

/* Top Bar */
.top-bar {
  z-index: 10;
  padding: 0;
  width: 100%;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #575781;
  padding: 18px 50px;
  border-radius: 0px 0px 30px 30px;
  flex-wrap: wrap;
  gap: 10px;
}

.top-nav {
  display: flex;
  gap: 35px;
  align-items: center;
  flex-wrap: nowrap;
}

.top-nav .nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1.8px;
  transition: var(--transition);
  font-weight: 300;
  white-space: nowrap;
  font-family: "GilroyMedium", sans-serif;
  position: relative;
  text-transform: uppercase;
}

.top-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--white);
  transition: var(--transition);
}

.top-nav .nav-link:hover {
  color: var(--text-hover);
}

.top-nav .nav-link:hover::after {
  width: 100%;
}

.top-contact {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-shrink: 0;
}

.top-contact .contact-item {
  color: var(--text-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  transition: var(--transition);
  padding: 2px;
  white-space: nowrap;
}

.top-contact .contact-item:hover {
  color: var(--text-hover);
  transform: translateY(-2px);
}

.top-contact .contact-item .icon {
  width: 22px;
  height: 22px;
}

/* Main Header */
.main-header {
  padding: 12px 0px;
  top: 0;
  z-index: 10;
  font-size: 15px;
  width: 100%;
}

.general-navbar.scrolled {
  background-color: #575781;
}

.main-header .container {
  padding: 0 40px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  width: 100%;
  flex-wrap: wrap;
}

.logo {
  flex-shrink: 0;
}

.logo a {
  display: block;
  transition: var(--transition);
}

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

.logo img {
  height: 56px;
  width: auto;
  display: block;
}

/* Desktop Navigation */
.main-nav {
  display: flex;
  gap: 40px;
  flex: 1;
  justify-content: center;
  align-items: center;
  font-family: "GilroyBold", sans-serif;
  flex-wrap: nowrap;
}

.main-nav .nav-item {
  color: var(--text-light);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2.25px;
  transition: var(--transition);
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  padding: 8px 0;
}

.main-nav .nav-item:hover {
  color: var(--text-hover);
}

.main-nav .nav-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition);
}

.main-nav .nav-item:hover::before {
  width: 100%;
}

.main-nav .nav-item.active {
  color: var(--text-hover);
}

.main-nav .nav-item.active::before {
  width: 100%;
}

/* Language Selector */
.language-selector {
  position: relative;
  flex-shrink: 0;
}

.lang-btn {
  background-color: var(--white);
  color: #d32f2f;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.lang-btn:hover {
  background-color: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.lang-btn .flag-icon {
  width: 26px;
  height: 20px;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.lang-btn .chevron {
  width: 18px;
  height: 18px;
  stroke-width: 2.5px;
  transition: var(--transition);
  flex-shrink: 0;
}

.language-selector:hover .lang-btn .chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  overflow: hidden;
  z-index: 1000;
}

.language-selector:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown .lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: #2d3748;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  white-space: nowrap;
}

.lang-dropdown .lang-option:hover {
  background-color: rgba(87, 87, 129, 0.08);
}

.lang-dropdown .lang-option .flag-icon {
  width: 26px;
  height: 20px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  padding: 12px;
  transition: var(--transition);
  flex-shrink: 0;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.mobile-menu-btn span {
  width: 30px;
  height: 3px;
  background-color: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #2d3748;
}

::-webkit-scrollbar-thumb {
  background: #575781;
  border-radius: 6px;
  border: 2px solid #2d3748;
}

::-webkit-scrollbar-thumb:hover {
  background: #6b6b9f;
}

/* ============================================ */
/* RESPONSIVE DESIGN */
/* ============================================ */

/* Large Desktop (1400px and below) */
@media (max-width: 1400px) {
  .general-navbar {
    padding: 0px 30px;
  }

  .top-bar .container {
    padding: 16px 40px;
  }

  .top-nav {
    gap: 28px;
  }

  .top-nav .nav-link {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .main-nav {
    gap: 32px;
  }

  .main-nav .nav-item {
    font-size: 14px;
    letter-spacing: 2px;
  }
}

/* Desktop (1200px and below) */
@media (max-width: 1200px) {
  .general-navbar {
    padding: 0px 20px;
  }

  .top-bar .container {
    padding: 14px 30px;
  }

  .top-nav {
    gap: 22px;
  }

  .top-nav .nav-link {
    font-size: 10px;
    letter-spacing: 1.2px;
  }

  .top-contact {
    gap: 15px;
  }

  .top-contact .contact-item {
    font-size: 13px;
  }

  .top-contact .contact-item .icon {
    width: 20px;
    height: 20px;
  }

  .main-header .container {
    padding: 0 30px;
  }

  .header-content {
    gap: 30px;
  }

  .logo img {
    height: 65px;
  }

  .main-nav {
    gap: 25px;
  }

  .main-nav .nav-item {
    font-size: 13px;
    letter-spacing: 1.8px;
  }

  .lang-btn {
    padding: 9px 16px;
    font-size: 14px;
  }

  .lang-btn .flag-icon {
    width: 24px;
    height: 18px;
  }
}

/* Tablet Large (992px and below) */
@media (max-width: 992px) {
  .general-navbar {
    padding: 0px 15px;
  }

  .top-bar .container {
    padding: 12px 20px;
    border-radius: 0px 0px 20px 20px;
  }

  .top-nav {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .top-nav .nav-link {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .top-contact {
    gap: 12px;
  }

  .top-contact .contact-item span {
    display: none;
  }

  .top-contact .contact-item .icon {
    width: 22px;
    height: 22px;
  }

  .main-header .container {
    padding: 0 20px;
  }

  .logo img {
    height: 60px;
  }

  .main-nav {
    gap: 20px;
  }

  .main-nav .nav-item {
    font-size: 12px;
    letter-spacing: 1.5px;
  }
}

/* Tablet Medium (768px and below) - MOBILE NAVIGATION */
@media (max-width: 768px) {
  .general-navbar {
    padding: 0px 10px;
  }

  .top-bar {
    display: none;
  }

  .main-header {
    padding: 10px 0;
  }

  .main-header .container {
    padding: 0 15px;
  }

  .header-content {
    gap: 15px;
    position: relative;
  }

  .logo {
    order: 1;
  }

  .logo img {
    height: 50px;
  }

  .mobile-menu-btn {
    display: flex;
    order: 3;
    z-index: 6;
  }

  .language-selector {
    order: 2;
  }

  .lang-btn {
    padding: 8px 12px;
    font-size: 13px;
  }

  .lang-btn .flag-icon {
    width: 22px;
    height: 16px;
  }

  .lang-btn .chevron {
    width: 16px;
    height: 16px;
  }

  /* Show mobile-only elements */
  .mobile-only {
    display: block;
  }

  /* Mobile Navigation Menu */
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: linear-gradient(180deg, #575781 0%, #6b6b9f 100%);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 80px 25px 30px;
    gap: 0;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.4);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 5;
  }

  .main-nav.active {
    right: 0;
  }

  /* Overlay */
  .main-nav::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: -1;
  }

  .main-nav.active::after {
    opacity: 1;
    visibility: visible;
  }

  /* Nav Items */
  .main-nav .nav-item {
    width: 100%;
    padding: 15px 0;
    font-size: 14px;
    letter-spacing: 1.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
  }

  .main-nav .nav-item:hover {
    padding-left: 10px;
  }

  .main-nav .nav-item::before {
    left: 0;
    transform: none;
    height: 2px;
  }

  .main-nav .nav-item:hover::before {
    width: 40px;
  }

  /* Mobile Divider */
  .mobile-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 20px 0;
  }

  /* Mobile Social */
  .mobile-social {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    gap: 10px;
  }

  .mobile-social .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    transition: var(--transition);
    text-decoration: none;
  }
  .mobile-social .social-link i {
    font-size: 24px;
  }

  .mobile-social .social-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
  }

  /* Mobile Languages */
  .mobile-languages {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
  }

  .mobile-languages .lang-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    border: 2px solid transparent;
  }

  .mobile-languages .lang-item img {
    width: 28px;
    height: 20px;
    object-fit: cover;
    border-radius: 3px;
  }

  .mobile-languages .lang-item:hover {
    background: rgba(255, 255, 255, 0.15);
  }

  .mobile-languages .lang-item.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
  }
}

/* Mobile Large (576px and below) */
@media (max-width: 576px) {
  .logo img {
    height: 45px;
  }

  .mobile-menu-btn {
    padding: 10px;
  }

  .mobile-menu-btn span {
    width: 25px;
    height: 2.5px;
  }

  .main-nav {
    width: 280px;
    padding: 70px 20px 25px;
  }

  .main-nav .nav-item {
    padding: 13px 0;
    font-size: 13px;
  }
}

/* Mobile Small (480px and below) */
@media (max-width: 480px) {
  .logo img {
    height: 40px;
  }

  .main-nav {
    width: 260px;
  }

  .main-nav .nav-item {
    font-size: 12px;
  }

  .mobile-social .social-link {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

/* Container */
#home-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  overflow: hidden;
  background-size: cover;
  background-image: url("../image/header-image.jpg");
  background-position: center;
  background-size: cover;
  border: 1px solid #0f172a;
  height: 90vh;
}
/* #main-header{
  min-height: 100vh;

} */
.naaaaa {
  height: 100vh !important;
}

.home-header-text {
  width: 100%;
}
.alls-headers-text {
  display: flex;
  gap: 10px;
  align-items: center;
  height: 30px;
}
.alls-headers-text p {
  margin: 0 !important;
}
.alls-headers-text p:first-child {
  color: #ababd9 !important;
}
.alls-headers-text i {
  color: #ababd9;
}
.home-header-inner {
  padding: 240px 60px 0px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: #292d5cf2;
  background: linear-gradient(90deg, rgba(41, 45, 92, 1) 10%, rgba(3, 0, 0, 0.13) 100%);
  height: 100vh;
}

#home-header h1 {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: "GilroyBold";
}

#home-header p {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  font-family: "GilroyLight";
  line-height: 29px; /* 161.111% */
}

.checkbox {
  display: flex;
  /* width: 915px; */
  width: 1070px;
  
  padding: 12px 25px;
  justify-content: center;
  align-items: center;
  border-radius: 30px 30px 0 0;
  background: #fff;
}

.left-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 32px;
  font-family: "GilroyMedium", sans-serif;
}

.field,
.field2 {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 16px;
  position: relative; /* Input-un düzgün yerləşməsi üçün vacibdir */
}

.text-group.touch {
  /* background: red; <-- Bunu test bitdikdən sonra silə bilərsiniz */
  cursor: pointer;
  padding: 5px; /* Toxunma sahəsini artırmaq üçün */
  transition: opacity 0.3s;
}

.text-group.touch:hover {
  opacity: 0.7;
}

/* Inputu gizlətmək üçün xüsusi sinif */
.date-input-hidden {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: -1; /* Mətnin altında qalması üçün */
}

.field2 {
  /* display: flex;
  align-items: center;
  gap: 0.9rem; */
  margin-left: 8px;
}

.icon {
  width: 34px;
  height: 34px;
  background: rgba(90, 111, 163, 0.14);
  position: relative;
}

.icon::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 4px;
  border: 2px solid rgba(90, 111, 163, 0.9);
}

.text-group {
  display: flex;
  gap: 0.15rem;
}

.label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: #6b7280;
  font-weight: 600;
  display: flex;
  align-items: center;
  font-family: "GilroyMedium";
  justify-content: center;
}

.value {
  font-size: 0.95rem;
  font-weight: 500;
  color: #111827;
}

.checkbox .divider {
  width: 1px;
  height: 48px;
  background: rgba(17, 24, 39, 0.12);
}

.right-checkbox {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-left: 30px;
}

.guest-counter {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.2rem;
  margin-left: 8px;
}

.counter-btn {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  transition: all 0.2s ease;
  font-family: "GilroyMedium";
}

.counter-btn:hover {
  background: #4b5563;
  color: #fff;
}

.guest-value {
  min-width: 20px;
  text-align: center;
  font-weight: 600;
  color: #111827;
}

.search-btn {
  border-radius: 98px;
  border: 1px solid #9c9c9c;
  background: #575781;
  display: flex;
  padding: 5px 25px;
  justify-content: center;
  align-items: center;
  gap: 9px;
  color: #f3ecdc;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 27.9px;
  font-family: "GilroyBold";
}

.search-btn:hover {
  transform: translateY(-1px);
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Əsas CSS (sənin verdiyin) dəyişməz qalır */

/* Mobile / Small screens */
@media (max-width: 768px) {
  .home-header-inner {
    padding: 120px 20px 0px; /* padding azaltıldı */
    flex-direction: column;
    /* justify-content: flex-start; */
    align-items: flex-start;
    height: 100vh !important;
    height: auto; /* hündürlüyü avtomatik */
  }

  #home-header h1 {
    font-size: clamp(2rem, 6vw, 2.5rem);
    text-align: center;
  }

  #home-header p {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    max-width: 100%;
  }

  .checkbox {
    flex-direction: column;
    width: 100%;
    padding: 15px;
    border-radius: 20px;
    gap: 15px;
  }

  .left-checkbox,
  .right-checkbox {
    margin: 0;
    justify-content: space-between;
    width: 100%;
  }

  .right-checkbox {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .guest-counter {
    margin-left: 0;
    margin-top: 5px;
  }

  .search-btn {
    width: 100%;
    padding: 10px 0;
  }

  .divider {
    display: none;
  }
}

/* Tablet screens */
@media (min-width: 769px) and (max-width: 1024px) {
  .home-header-inner {
    padding: 180px 40px 0px;
    height: 100vh !important;
    flex-direction: column;
    align-items: center;
    height: auto;
  }

  #home-header h1 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    text-align: center;
  }

  #home-header p {
    font-size: 17px;
    line-height: 26px;
    text-align: center;
    max-width: 90%;
  }

  .checkbox {
    flex-wrap: wrap;
    width: 100%;
    padding: 12px;
    gap: 10px;
  }

  .left-checkbox,
  .right-checkbox {
    width: 100%;
    justify-content: space-between;
  }

  .divider {
    display: none;
  }
}

/* =========================================
   LARGE SCREENS & DESKTOP (1440px və yuxarı)
   ========================================= */
@media (min-width: 2272px) {
  /* 1. Konteyneri mərkəzləşdiririk və genişliyi məhdudlaşdırırıq */
  .home-header-inner {
    padding: 40vh 10vh 11vh;
    gap: 80px; /* Mətn və Search bar arasında ideal məsafə */
    transform: scale(1.3);
  }
  .home-header-text {
    width: 80%;
  }
  /* 2. Mətnləri böyüdürük ki, ekran dolu görünsün */

  #home-header p {
    font-size: 20px;
    max-width: 900px; /* Mətn sətrinin uzunluğunu artırırıq */
    line-height: 1.8;
  }

  /* 3. Axtarış panelini (Checkbox) böyüdürük */
  .checkbox {
    width: 1268px; /* Genişliyi artırırıq */
    padding: 20px 40px; /* Daxili boşluğu artırırıq */
    border-radius: 40px 40px 0 0;
  }

  /* Daxili elementləri (ikon və yazıları) böyüdürük */
  .field,
  .field2 {
    gap: 1.2rem;
  }

  .icon {
    width: 44px;
    height: 44px; /* İkon qutusu böyüyür */
  }

  .icon::before {
    inset: 12px; /* İkonun içindəki çərçivə qalınlaşır */
  }

  .label {
    font-size: 0.9rem; /* Check-in/out yazıları böyüyür */
  }

  .value,
  .guest-value {
    font-size: 1.1rem; /* Rəqəmlər böyüyür */
  }

  /* 4. Rezervasiya düyməsini daha cəlbedici edirik */
  .search-btn {
    padding: 15px 50px;
    font-size: 18px;
    border-radius: 100px;
    height: auto; /* Fixed height problem yarada bilər deyə auto */
  }
}

/* =========================================
   ULTRA WIDE / 4K SCREENS (2000px və yuxarı)
   ========================================= */

#social-media-section {
  position: relative;
  min-height: 300px;
  /* background-image: url("../image/Social-media.png"); */
  background-size:cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 30px;
   /* background-size: 150%; */
  margin: 100px 60px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgb(91, 90, 142) 0%, rgba(117, 112, 168, 0.682) 50%, rgba(140, 135, 180, 0.169) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.content-wrapper {
  text-align: center;
  color: white;
  z-index: 2;
  max-width: 800px;
}

.content-wrapper h1 {
  color: #fff;
  text-align: center;
  font-family: "GilroyBold";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
  /* width: 90%; */
}

.content-wrapper p {
  color: var(--White-Transparent, rgba(255, 255, 255, 0.75));
  text-align: center;
  font-family: "GilroyMedium";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 29px; /* 161.111% */
}

.social-box {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon i {
  font-size: 40px;
  color: #5b5a8e;
  color: white;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
}

/* Decorative Dots - Left */
.decorative-dots-left {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 1;
}

/* Decorative Dots - Right */
.decorative-dots-right {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  z-index: 1;
}

.dot-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.dot-grid span {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: block;
}

/* Tablet - Large (1200px and below) */
@media (max-width: 1200px) {
  #social-media-section {
    min-height: 450px;
  }

  .content-wrapper h1 {
    font-size: 42px;
  }

  .decorative-dots-left,
  .decorative-dots-right {
    left: 3%;
  }

  .decorative-dots-right {
    right: 3%;
    left: auto;
  }
}

/* Tablet - Medium (992px and below) */
@media (max-width: 992px) {
  #social-media-section {
    min-height: 400px;
    border-radius: 25px;
  }

  .content-wrapper h1 {
    font-size: 38px;
    letter-spacing: 2px;
  }

  .content-wrapper p {
    font-size: 15px;
    margin-bottom: 35px;
  }

  .social-icon {
    width: 65px;
    height: 65px;
  }

  .social-icon i {
    font-size: 32px;
  }

  .decorative-dots-left,
  .decorative-dots-right {
    display: none;
  }
}

/* Tablet - Small (768px and below) */
@media (max-width: 768px) {
  #social-media-section {
    min-height: 380px;
    border-radius: 20px;
    margin: 15px;
  }

  .overlay {
    padding: 30px 15px;
  }

  .content-wrapper h1 {
    font-size: 32px;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
  }

  .content-wrapper p {
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
  }

  .social-box {
    gap: 25px;
  }

  .social-icon {
    width: 60px;
    height: 60px;
  }

  .social-icon i {
    font-size: 30px;
  }
}

/* Mobile - Large (576px and below) */
@media (max-width: 576px) {
  #social-media-section {
    min-height: 350px;
    border-radius: 18px;
    margin: 12px;
  }

  .content-wrapper h1 {
    font-size: 28px;
    letter-spacing: 1px;
  }

  .content-wrapper p {
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 25px;
  }

  .social-box {
    gap: 20px;
  }

  .social-icon {
    width: 55px;
    height: 55px;
  }

  .social-icon i {
    font-size: 28px;
  }
}

/* Mobile - Small (480px and below) */
@media (max-width: 480px) {
  #social-media-section {
    min-height: 320px;
    border-radius: 15px;
    margin: 10px;
  }

  .overlay {
    padding: 25px 12px;
  }

  .content-wrapper h1 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .content-wrapper p {
    font-size: 12px;
    margin-bottom: 22px;
  }

  .social-box {
    gap: 18px;
  }

  .social-icon {
    width: 50px;
    height: 50px;
  }

  .social-icon i {
    font-size: 25px;
  }
}

/* Mobile - Extra Small (360px and below) */
@media (max-width: 360px) {
  #social-media-section {
    min-height: 300px;
  }

  .content-wrapper h1 {
    font-size: 20px;
  }

  .content-wrapper p {
    font-size: 11px;
  }

  .social-box {
    gap: 15px;
  }

  .social-icon {
    width: 45px;
    height: 45px;
  }

  .social-icon i {
    font-size: 22px;
  }
}

/* Responsive Design */
#main-footer {
  /* background: linear-gradient(135deg, #5b5a8e 0%, #6b678f 50%, #7570a8 100%); */
  background-color: #575781;
  color: white;
  padding: 80px 0 0 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 60px;
}

/* Footer About Section */
.footer-about {
  padding-right: 30px;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  max-width: 200px;
  height: auto;
}

.footer-description {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  text-align: start;
  font-family: "GilroyMedium";
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ababd9;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  transform: translateY(-1px);
}

/* Footer Column Headings */
.footer-column h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 25px;
  color: #ababd9;
  font-family: "GilroyMedium";
}

/* Footer Links */
.footer-links ul {
  list-style: none;
}

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

.footer-links ul li a {
  color: #ffffffbf;
  text-decoration: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-family: "GilroyMedium";
  /* text-transform: uppercase; */
}

.footer-links ul li a i {
  font-size: 10px;
  opacity: 0.7;
}

.footer-links ul li a:hover {
  color: white;
  padding-left: 5px;
}

/* Footer Contact */
.footer-contact ul {
  list-style: none;
}

.footer-contact ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.footer-contact ul li i {
  font-size: 18px;
  margin-top: 3px;
  color: #ababd9;
  flex-shrink: 0;
}

.footer-contact ul li span,
.footer-contact ul li a {
  color: #ffffffbf;
  font-size: 15px;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: "GilroyMedium";
}

.footer-contact ul li a:hover {
  color: white;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 25px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  letter-spacing: 1px;
  color: #ababd9;
  font-family: "GilroyMedium";
  font-weight: 300;
}
.footer-bottom p span {
  color: white;
  text-decoration: none;
  font-family: "GilroyMedium";
  font-weight: 500;
}
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
    gap: 40px;
  }

  .footer-about {
    padding-right: 20px;
  }
}

/* Tablet - Medium (992px and below) */
@media (max-width: 992px) {
  #main-footer {
    padding: 60px 0 0 0;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
  }

  .footer-about {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .footer-description {
    max-width: 800px;
  }
}

/* Tablet - Small (768px and below) */
@media (max-width: 768px) {
  #main-footer {
    padding: 50px 0 0 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 40px;
  }

  .footer-about {
    grid-column: 1;
  }

  .footer-logo img {
    max-width: 180px;
  }

  .footer-column h3 {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .footer-description {
    font-size: 14px;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .footer-links ul li a,
  .footer-contact ul li span,
  .footer-contact ul li a {
    font-size: 14px;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}

/* Mobile - Large (576px and below) */
@media (max-width: 576px) {
  #main-footer {
    padding: 40px 0 0 0;
  }

  .footer-container {
    padding: 0 15px;
  }

  .footer-content {
    gap: 30px;
    padding-bottom: 35px;
  }

  .footer-logo {
    margin-bottom: 25px;
  }

  .footer-logo img {
    max-width: 160px;
  }

  .footer-column h3 {
    font-size: 15px;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
  }

  .footer-description {
    font-size: 13px;
    margin-bottom: 25px;
  }

  .footer-social {
    gap: 12px;
  }

  .footer-social a {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

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

  .footer-links ul li a {
    font-size: 13px;
  }

  .footer-contact ul li {
    margin-bottom: 18px;
    gap: 12px;
  }

  .footer-contact ul li i {
    font-size: 16px;
  }

  .footer-contact ul li span,
  .footer-contact ul li a {
    font-size: 13px;
  }

  .footer-bottom {
    padding: 20px 0;
  }

  .footer-bottom p {
    font-size: 11px;
    line-height: 1.5;
  }
}

/* Mobile - Small (480px and below) */
@media (max-width: 480px) {
  #main-footer {
    padding: 35px 0 0 0;
  }

  .footer-logo img {
    max-width: 140px;
  }

  .footer-column h3 {
    font-size: 14px;
  }

  .footer-description {
    font-size: 12px;
  }

  .footer-links ul li a,
  .footer-contact ul li span,
  .footer-contact ul li a {
    font-size: 12px;
  }

  .footer-bottom p {
    font-size: 10px;
  }
}

/* Mobile - Extra Small (360px and below) */
@media (max-width: 360px) {
  .footer-logo img {
    max-width: 130px;
  }

  .footer-social a {
    width: 35px;
    height: 35px;
    font-size: 15px;
  }
}

/* All Page css end */

/* Home Page css start */

#choose-room-section {
  /* Responsive padding with clamp */
  padding: clamp(20px, 4vw, 40px) clamp(16px, 6vw, 80px);
  border-bottom: 1px solid #0f172a;
  background-image: url("assets/Image/location-home.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 1px solid #575781;
}

#choose-room-section span {
  color: #0f172a;
  font-family: "GilroyMedium";
  /* Responsive font size */
  font-size: clamp(13px, 1.2vw, 15.413px);
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}

#choose-room-section > p {
  color: #0f172a;
  font-family: "GilroyBold";
  /* Responsive heading */
  font-size: clamp(24px, 5vw, 40px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: clamp(1px, 0.2vw, 2px);
  margin: 10px 0px clamp(30px, 5vw, 60px);
}

.room-section {
  display: grid;
  /* Mobile first: single column */
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 40px);
  height: auto;
  min-height: 400px;
}

.left-card {
  display: flex;
  flex-direction: column;
  gap: clamp(15px, 2vw, 20px);
  /* Mobile: minimum height for visibility */
  min-height: 400px;
}

.left-up-card,
.left-down-card,
.middle-card,
.right-card {
  border-radius: clamp(20px, 3vw, 30px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-position: center;
  background-size: cover;
  /* Minimum height for mobile */
  min-height: 250px;
}

.left-up-card {
  flex: 1;
  /* background-image: url("https://images.unsplash.com/photo-1611892440504-42a792e24d32?w=800"); */
  align-items: flex-end;
  display: flex;
  overflow: hidden;
}
.left-up-card:hover .left-card-text {
  transition: all 0.6s;
  transform: translateY(0%);
}
.left-down-card {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background-image: url("https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?w=800");
}
.left-down-card:hover .left-card-text {
  transition: all 0.6s;
  transform: translateY(0%);
}
.middle-card {
  background-image: url("https://images.unsplash.com/photo-1590490360182-c33d57733427?w=800");
  border-radius: clamp(20px, 3vw, 30px);
  position: relative;
  display: flex;
  overflow: hidden;
  transition: all 0.6s;
  align-items: flex-end;
}
.middle-card:hover .middle-card-text {
  transition: all 0.6s;
  transform: translateY(0%);
}

.middle-card-text,
.right-card-text,
.left-card-text {
  background: #575781cc;
  color: white;
  padding: clamp(20px, 3vw, 30px);
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 640;
  width: 100%;
  align-items: flex-end;
  transform: translateY(100%);
  line-height: 1.4;
}
.right-card-text,
.left-card-text {
  font-size: 20px;
}

.right-card {
  overflow: hidden;
  display: flex;
  align-items: flex-end;

  background-image: url("https://images.unsplash.com/photo-1578683010236-d716f9a3f461?w=800");
}
.right-card:hover .right-card-text {
  transition: all 0.6s;
  transform: translateY(0%);
}
#home-location-section {
  padding: clamp(30px, 5vw, 60px) clamp(20px, 6vw, 80px);
  background-color: #f5f5f5;
}

#home-location-section > span {
  color: #0f172a;
  font-family: "GilroyMedium";
  font-size: clamp(13px, 1.2vw, 15.413px);
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(30px, 4vw, 50px);
  flex-wrap: wrap;
  gap: 20px;
}

.section-header p {
  color: #0f172a;
  font-family: "GilroyBold";
  font-size: clamp(24px, 5vw, 40px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: clamp(1px, 0.2vw, 2px);
  margin: 10px 0px;
}

.scroll-buttons {
  display: flex;
  gap: 12px;
}

.scroll-left,
.scroll-right {
  width: clamp(40px, 5vw, 48px);
  height: clamp(40px, 5vw, 48px);
  border-radius: 50%;
  background-color: #5b5b7e;
  border: none;
  color: white;
  font-size: clamp(14px, 1.5vw, 16px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.scroll-left:hover,
.scroll-right:hover {
  background-color: #4a4a66;
  transform: scale(1.05);
}

.scroll-left:active,
.scroll-right:active {
  transform: scale(0.95);
}

.location-card-box {
  display: flex;
  width: 100%;
  gap: clamp(15px, 2vw, 20px);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  padding-bottom: 10px; /* Shadow üçün yer */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.location-card-box::-webkit-scrollbar {
  display: none;
}

.card {
  position: relative;
  border-radius: clamp(16px, 2.5vw, 24px);
  overflow: hidden;
  height: clamp(350px, 50vw, 460px);
  /* min-width: clamp(260px, 35vw, 320px); */
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 300px;
}

.card:hover {
  transform: translateY(-4px);
}
.card:hover .location-card-text {
  transform: translateY(0%);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.location-card-text {
  position: absolute;
  transform: translateY(100%);
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(70, 70, 100, 0.85);
  backdrop-filter: blur(8px);
  color: white;
  font-family: "GilroyBold", sans-serif;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 600;
  padding: clamp(15px, 2.5vw, 30px);
  text-align: center;
  letter-spacing: 1px;
  transition: all 0.6s ease;
}

/* Mobile (< 576px) */
@media (max-width: 575px) {
  #home-location-section {
    padding: 30px 20px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .scroll-buttons {
    align-self: flex-end;
  }

  .card {
    /* min-width: 280px; */
    height: 380px;
  }

  .location-card-box {
    gap: 15px;
    /* Touch swipe için snap scroll */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .card {
    scroll-snap-align: start;
  }
}

/* Small Tablet (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .card {
    /* min-width: 300px; */
    height: 400px;
  }

  .location-card-box {
    gap: 18px;
  }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  #home-location-section {
    padding: 45px 40px;
  }

  .card {
    min-width: 310px;
    height: 430px;
  }

  .scroll-left,
  .scroll-right {
    width: 44px;
    height: 44px;
  }
}

/* Desktop (1024px - 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
  #home-location-section {
    padding: 50px 60px;
  }

  .card {
    /* min-width: 320px; */
    height: 450px;
  }
}

/* Large Desktop (>= 1280px) */
@media (min-width: 1280px) {
  #home-location-section {
    padding: 60px 80px;
  }

  .card {
    /* min-width: 320px; */
    height: 460px;
  }

  .scroll-left,
  .scroll-right {
    width: 48px;
    height: 48px;
  }
}

/* Extra Small Mobile (< 375px) */
@media (max-width: 374px) {
  .card {
    min-width: 260px;
    height: 350px;
  }

  .section-header p {
    font-size: 24px;
  }

  .location-card-text {
    font-size: 18px;
    padding: 15px;
  }
}

/* Landscape Mode for Mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .card {
    height: 300px;
  }

  #home-location-section {
    padding: 20px;
  }
}

/* Responsive breakpoints */
@media (min-width: 768px) {
  .location-card-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .location-card-box {
    grid-template-columns: repeat(4, 1fr);
  }

  .scroll-buttons {
    display: flex;
  }
}

@media (max-width: 767px) {
  .scroll-buttons {
    display: none;
  }

  .location-card-box {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .card {
    width: 240px;
    scroll-snap-align: start;
  }
}

/* Scrollbar styling */
.location-card-box::-webkit-scrollbar {
  height: 6px;
}

.location-card-box::-webkit-scrollbar-track {
  background: #e2e8f0;
  border-radius: 10px;
}

.location-card-box::-webkit-scrollbar-thumb {
  background: #5b5b7e;
  border-radius: 10px;
}

.location-card-box::-webkit-scrollbar-thumb:hover {
  background: #4a4a66;
}
#home-sertificate-section {
  padding: clamp(40px, 6vw, 80px) clamp(20px, 6vw, 80px);
  background-color: #ffffff;
  overflow: hidden; /* Negative margin üçün */
}

#home-sertificate-section > span {
  color: #0f172a;
  font-family: "GilroyMedium";
  /* Responsive font size */
  font-size: clamp(13px, 1.2vw, 15.413px);
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}

#home-sertificate-section > p {
  color: #0f172a;
  font-family: "GilroyBold";
  /* Responsive heading */
  font-size: clamp(24px, 5vw, 40px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: clamp(1px, 0.2vw, 2px);
  margin: 10px 0px clamp(30px, 5vw, 60px);
}

.sertificate-card-box {
  display: flex;
  gap: clamp(15px, 2vw, 20px);
  align-items: center;
}

/* Testimonial Card - Purple Background */
.sertificate-text-card {
  background: #575781;
  border-radius: clamp(16px, 2.5vw, 24px);
  padding: clamp(30px, 4vw, 50px) clamp(40px, 15vw, 200px) clamp(20px, 2vw, 20px) clamp(30px, 4vw, 50px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  min-height: clamp(280px, 35vw, 320px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 32%;
  flex-shrink: 0;
}

.quote-icon {
  margin-bottom: clamp(15px, 2vw, 20px);
}

.sertificate-all-card-box {
  display: flex;
  margin-left: clamp(-100px, -12vw, -150px);
  z-index: 5;
  gap: clamp(20px, 3vw, 30px);
  padding: clamp(15px, 2vw, 20px) 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sertificate-all-card-box::-webkit-scrollbar {
  display: none;
}

.quote-icon svg {
  width: clamp(30px, 4vw, 40px);
  height: clamp(30px, 4vw, 40px);
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.95);
  font-family: "GilroyMedium", sans-serif;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 auto 0;
  font-style: italic;
}

.testimonial-author {
  color: white;
  font-family: "GilroyBold", sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  margin-top: clamp(15px, 2vw, 20px);
  display: block;
}

/* Certificate Cards */
.sertificate-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: clamp(16px, 2.5vw, 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* width: clamp(260px, 35vw, 320px);
  min-width: clamp(260px, 35vw, 320px);
  height: clamp(280px, 35vw, 320px); */
  width: 300px;
  height: 300px;
  overflow: hidden;
  border: clamp(8px, 1vw, 10px) solid #575781df;
  flex-shrink: 0;
  transform: translateY(-4px);
}

.sertificate-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.sertificate-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sertificate-card:hover img {
  transform: scale(1.05);
}
/* Base Styles */
#home-about-comment {
  background: linear-gradient(135deg, #5b5a8e 0%, #7570a8 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin-bottom: 60px; */
  flex-wrap: wrap;
  gap: 30px;
}

.title-section {
  color: white;
}

.subtitle {
  color: #fff;
  font-family: "GilroyMedium";
  /* Responsive font size */
  font-size: clamp(13px, 1.2vw, 15.413px);
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}

.main-title {
  color: #fff;
  font-family: "GilroyBold";
  /* Responsive heading */
  font-size: clamp(24px, 5vw, 40px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: clamp(1px, 0.2vw, 2px);
}

.all-comment-box {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.all-comment-box span {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 500;
}

.all-comment-box i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.all-comment-box:hover i {
  transform: translateX(5px);
}

.comments-box {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.comment-card {
  background: #f3ecdc;
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 25px;
  height: max-content;
}

.comment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.star-line {
  display: flex;
  gap: 8px;
}

.star-line i {
  color: #f5a623;
  font-size: 20px;
}

.comment-text {
  font-size: 26px;
  line-height: 1.7;
  color: #666;
  font-style: italic;
  min-height: 90px;
  font-weight: 600;
}

.people-card {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: auto;
  height: max-content;
}

.card-image-people {
  width: 70px;
  height: 70px;
  border-radius: 40%;
  overflow: hidden;
  flex-shrink: 0;
}

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

.card-text-people h3 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
  font-family: "GilroyBold";
}

.card-text-people h5 {
  font-size: 13px;
  font-weight: 500;
  color: #999;
  font-family: "GilroyMedium";
  letter-spacing: 1px;
}

.decorative-dots {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}

.dot-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.dot-grid span {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: block;
}

/* Responsive Design */

/* Tablet - Large (1200px and below) */

/* Tablet - Large (1200px and below) */
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }

  .decorative-dots {
    right: 2%;
  }

  .comments-box {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

/* Tablet - Medium (992px and below) */
@media (max-width: 992px) {
  #home-about-comment {
    padding: 60px 20px;
  }

  .main-title {
    font-size: 40px;
    letter-spacing: 2px;
  }

  .subtitle {
    font-size: 13px;
  }

  .header-content {
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .decorative-dots {
    display: none;
  }

  .comments-box {
    gap: 25px;
  }

  .comment-card {
    padding: 35px 30px;
  }

  .comment-text {
    font-size: 18px;
    min-height: 80px;
  }
}

/* Tablet - Small (768px and below) */
@media (max-width: 768px) {
  #home-about-comment {
    padding: 50px 20px;
  }

  .main-title {
    font-size: 32px;
    letter-spacing: 1.5px;
  }

  .subtitle {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .header-content {
    margin-bottom: 40px;
    gap: 20px;
  }

  .all-comment-box span {
    font-size: 13px;
  }

  .comments-box {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .comment-card {
    padding: 30px 25px;
    gap: 20px;
  }

  .comment-text {
    font-size: 17px;
    min-height: auto;
  }

  .star-line i {
    font-size: 18px;
  }

  .card-image-people {
    width: 60px;
    height: 60px;
  }

  .card-text-people h3 {
    font-size: 16px;
  }

  .card-text-people h5 {
    font-size: 12px;
  }
}

/* Mobile - Large (576px and below) */
@media (max-width: 576px) {
  #home-about-comment {
    padding: 40px 15px;
  }
  #home-about-comment .container {
    padding: 0 0px;
  }
  .main-title {
    font-size: 28px;
    letter-spacing: 1px;
  }

  .subtitle {
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 12px;
  }

  .header-content {
    margin-bottom: 35px;
    gap: 15px;
  }

  .all-comment-box {
    gap: 12px;
  }

  .all-comment-box span {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .all-comment-box i {
    font-size: 16px;
  }

  .comments-box {
    gap: 18px;
    margin-top: 25px;
  }

  .comment-card {
    padding: 25px 20px;
    gap: 18px;
    border-radius: 15px;
  }

  .star-line {
    gap: 6px;
  }

  .star-line i {
    font-size: 16px;
  }

  .comment-text {
    font-size: 16px;
    line-height: 1.6;
  }

  .people-card {
    gap: 15px;
  }

  .card-image-people {
    width: 55px;
    height: 55px;
  }

  .card-text-people h3 {
    font-size: 15px;
  }

  .card-text-people h5 {
    font-size: 11px;
  }
}

/* Mobile - Small (480px and below) */
@media (max-width: 480px) {
  #home-about-comment {
    padding: 35px 12px;
  }

  .main-title {
    font-size: 24px;
  }

  .subtitle {
    font-size: 10px;
  }

  .all-comment-box span {
    font-size: 11px;
  }

  .comment-card {
    padding: 22px 18px;
  }

  .comment-text {
    font-size: 15px;
  }

  .star-line i {
    font-size: 15px;
  }

  .card-image-people {
    width: 50px;
    height: 50px;
  }

  .card-text-people h3 {
    font-size: 14px;
  }

  .card-text-people h5 {
    font-size: 10px;
  }
}

/* Mobile - Extra Small (360px and below) */
@media (max-width: 360px) {
  #home-about-comment {
    padding: 30px 10px;
  }

  .main-title {
    font-size: 22px;
  }

  .comment-card {
    padding: 20px 15px;
  }

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

  .people-card {
    gap: 12px;
  }
}

@media (max-width: 1200px) {
  .decorative-dots {
    display: none;
  }
}

@media (max-width: 768px) {
  .main-title {
    font-size: 32px;
  }

  .comments-box {
    grid-template-columns: 1fr;
  }

  .header-content {
    justify-content: space-between;
  }

  #home-about-comment {
    padding: 50px 20px;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 24px;
  }

  .subtitle {
    font-size: 11px;
  }

  .comment-card {
    padding: 30px 25px;
  }

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

/* Tablet Landscape (1024px - 1279px) */
@media (max-width: 1279px) {
  .sertificate-text-card {
    width: 35%;
    padding-right: clamp(50px, 10vw, 120px);
  }

  .sertificate-all-card-box {
    margin-left: -80px;
  }

  .sertificate-card {
    /* width: 280px;
    min-width: 280px;
    height: 280px; */
    width: 200px;
    height: 200px;
  }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
  .sertificate-card-box {
    flex-direction: column;
    gap: 30px;
  }

  .sertificate-text-card {
    width: 100%;
    padding: 40px;
    min-height: 250px;
  }

  .sertificate-all-card-box {
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .sertificate-card {
    scroll-snap-align: start;
    /* width: 300px;
      min-width: 300px;
      height: 300px; */
    border-width: 10px;
  }
}

/* Mobile (576px - 767px) */
@media (max-width: 767px) {
  #home-sertificate-section {
    padding: 40px 20px;
  }

  .sertificate-text-card {
    padding: 30px;
    min-height: 220px;
  }

  .sertificate-all-card-box {
    gap: 20px;
  }

  .sertificate-card {
    width: 260px;
    min-width: 260px;
    height: 260px;
    border-width: 8px;
  }

  .quote-icon svg {
    width: 32px;
    height: 32px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .testimonial-author {
    font-size: 20px;
  }
}

/* Small Mobile (< 576px) */
@media (max-width: 575px) {
  #home-sertificate-section > p {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .sertificate-text-card {
    padding: 25px;
    min-height: 200px;
  }

  .sertificate-card {
    width: 240px;
    min-width: 240px;
    height: 240px;
    border-width: 8px;
    border-radius: 20px;
  }

  .sertificate-all-card-box {
    gap: 15px;
    padding: 15px 0;
  }

  .quote-icon svg {
    width: 28px;
    height: 28px;
  }

  .testimonial-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .testimonial-author {
    font-size: 18px;
    margin-top: 15px;
  }
}

/* Extra Small Mobile (< 375px) */
@media (max-width: 374px) {
  .sertificate-card {
    width: 220px;
    min-width: 220px;
    height: 220px;
    border-width: 6px;
  }

  .sertificate-text-card {
    padding: 20px;
    min-height: 180px;
  }

  #home-sertificate-section > p {
    font-size: 22px;
  }
}

/* Large Desktop (>= 1440px) */
@media (min-width: 1440px) {
  .sertificate-card-box {
    max-width: 1400px;
    margin: 0 auto;
  }

  .sertificate-text-card {
    width: 30%;
    padding: 50px 150px 20px 50px;
  }

  .sertificate-all-card-box {
    margin-left: -150px;
    gap: 30px;
  }

  .sertificate-card {
    /* width: 320px;
    min-width: 320px;
    height: 320px; */
  }
}

/* Landscape Mode for Tablets */
@media (max-height: 600px) and (orientation: landscape) {
  .sertificate-card {
    height: 200px;
  }

  .sertificate-text-card {
    min-height: 200px;
    padding: 25px;
  }
}

/* Tablet: 2 columns layout */
@media (min-width: 768px) {
  .room-section {
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
  }

  .left-card {
    min-height: 500px;
  }

  .middle-card {
    /* Tablet: grid spans 2 rows */
    grid-row: span 2;
  }

  .left-up-card,
  .left-down-card,
  .middle-card,
  .right-card {
    min-height: 240px;
  }
}

/* Desktop: 3 columns layout */
@media (min-width: 1024px) {
  .room-section {
    grid-template-columns: 1fr 1.5fr 1fr;
    height: 600px;
  }

  .left-card {
    min-height: 600px;
  }

  .middle-card {
    /* Desktop: unique border radius */
    border-radius: 0 141px 0 0;
    grid-row: auto;
  }

  .left-up-card,
  .left-down-card,
  .middle-card,
  .right-card {
    min-height: initial;
  }
}

/* Large Desktop: increased spacing */
@media (min-width: 1280px) {
  #choose-room-section {
    padding: 40px 80px;
  }

  .room-section {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .home-header-inner {
    padding: 180px 40px 0px;
  }

  #home-header h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
  }

  #home-header p {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  .checkbox {
    width: 100%;
    max-width: 818px;
    flex-direction: column;
    padding: 20px;
    gap: 16px;
  }

  .left-checkbox {
    margin-right: 0;
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }

  .field,
  .field2 {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }

  .checkbox .divider {
    width: 100%;
    height: 1px;
  }

  .right-checkbox {
    margin-left: 0;
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }

  .field {
    width: 100%;
  }

  .search-btn {
    width: 100%;
    padding: 12px 25px;
  }
}

/* Mobile (576px və aşağı) */
@media (max-width: 576px) {
  .home-header-inner {
    padding: 140px 20px 0px;
    height: auto;
    min-height: 100vh;
  }

  #home-header h1 {
    font-size: clamp(1.8rem, 6vw, 2rem);
    margin-bottom: 0.8rem;
    text-align: center;
  }

  #home-header p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .checkbox {
    padding: 16px;
    border-radius: 20px 20px 0 0;
  }

  .field img,
  .field2 img {
    width: 24px;
    height: 24px;
  }

  .label {
    font-size: 0.7rem;
  }

  .guest-counter {
    gap: 0.4rem;
    margin-left: 4px;
  }

  .counter-btn {
    width: 24px;
    height: 24px;
    font-size: 0.9rem;
  }

  .search-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

/* Extra Small Mobile (400px və aşağı) */
@media (max-width: 400px) {
  .home-header-inner {
    padding: 120px 15px 0px;
  }

  #home-header h1 {
    font-size: 1.5rem;
  }

  #home-header p {
    font-size: 0.8rem;
  }

  .checkbox {
    padding: 12px;
  }

  .field,
  .field2 {
    gap: 0.6rem;
  }

  .label {
    font-size: 0.65rem;
  }

  .search-btn {
    font-size: 13px;
    padding: 8px 16px;
  }
}
/* Responsiv düzəlişlər */
@media (max-width: 992px) {
  #home-header {
    /* padding: 6rem 1.5rem 3rem; */
  }
  .checkbox {
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
  }

  .checkbox .divider {
    width: 100%;
    height: 1px;
  }

  .right-checkbox {
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  .left-checkbox {
    flex-direction: column;
    gap: 1rem;
  }

  .checkbox {
    padding: 1.2rem 1.4rem;
  }

  .search-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .main-header .container {
    padding: 0 15px;
  }

  .header-content {
    gap: 15px;
  }

  .logo img {
    height: 55px;
  }

  .main-header {
    padding: 15px 0;
  }

  .lang-btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  .lang-btn .flag-icon {
    width: 22px;
    height: 17px;
  }

  .hero {
    height: 400px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 10px;
  }

  .main-header .container {
    padding: 0 10px;
  }

  .logo img {
    height: 48px;
  }

  .lang-btn {
    padding: 7px 12px;
    font-size: 13px;
    gap: 6px;
  }

  .lang-btn .flag-icon {
    width: 20px;
    height: 15px;
  }

  .lang-btn .chevron {
    width: 16px;
    height: 16px;
  }

  .main-nav {
    width: 290px;
    padding: 80px 20px 20px;
  }

  .hero {
    height: 350px;
  }

  .hero-title {
    font-size: 32px;
  }

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

/* Home Page css end */

/* About Page css start */

#about-us-section {
  padding: clamp(50px, 8vw, 100px) clamp(20px, 6vw, 80px);
  background-color: #f8f8f8;
}

#about-us-section > span {
  color: #6b7280;
  font-family: "GilroyMedium", sans-serif;
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

#about-us-section > p {
  color: #0f172a;
  font-family: "GilroyBold", sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 clamp(40px, 6vw, 70px) 0;
}

/* Comment Box Container */
.comment-box-for-about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(25px, 4vw, 50px);
  align-items: start;
}

/* Individual Comment Cards */
.comment-box-card {
  background: #ffffff;
  padding: clamp(30px, 4vw, 50px);
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: clamp(15px, 2vw, 20px);
  height: 100%;
}

.comment-box-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Card Title (Quote) */
.comment-box-card > p {
  color: #0f172a;
  font-family: "GilroyBold", sans-serif;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  font-style: italic;
  position: relative;
  padding-left: 25px;
}

.comment-box-card > p::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -5px;
  font-size: clamp(30px, 3vw, 40px);
  color: #575781;
  font-family: Georgia, serif;
  line-height: 1;
}

/* Card Description Text */
.comment-box-card > span {
  color: #4b5563;
  font-family: "GilroyRegular", sans-serif;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400;
  line-height: 1.8;
  text-align: justify;
}

/* ============================================ */
/* RESPONSIVE DESIGN */
/* ============================================ */

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
  .comment-box-for-about {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet (768px - 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
  #about-us-section {
    padding: 70px 50px;
  }

  .comment-box-for-about {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .comment-box-card {
    padding: 35px;
  }
}

/* Tablet Small (768px and below) */
@media (max-width: 767px) {
  #about-us-section {
    padding: 50px 30px;
  }

  #about-us-section > span {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  #about-us-section > p {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .comment-box-for-about {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .comment-box-card {
    padding: 30px 25px;
  }

  .comment-box-card > p {
    font-size: 20px;
    padding-left: 20px;
  }

  .comment-box-card > span {
    font-size: 15px;
    line-height: 1.7;
    text-align: left;
  }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
  #about-us-section {
    padding: 40px 20px;
  }

  #about-us-section > span {
    font-size: 11px;
    letter-spacing: 1.2px;
  }

  #about-us-section > p {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .comment-box-for-about {
    gap: 25px;
  }

  .comment-box-card {
    padding: 25px 20px;
    border-radius: 10px;
  }

  .comment-box-card > p {
    font-size: 18px;
    padding-left: 18px;
  }

  .comment-box-card > p::before {
    font-size: 32px;
    top: -3px;
  }

  .comment-box-card > span {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* Mobile Small (480px and below) */
@media (max-width: 480px) {
  #about-us-section {
    padding: 35px 15px;
  }

  #about-us-section > p {
    font-size: 24px;
  }

  .comment-box-card {
    padding: 20px 15px;
  }

  .comment-box-card > p {
    font-size: 16px;
    padding-left: 15px;
  }

  .comment-box-card > p::before {
    font-size: 28px;
  }

  .comment-box-card > span {
    font-size: 13px;
  }
}

/* Extra Small (360px and below) */
@media (max-width: 360px) {
  #about-us-section {
    padding: 30px 12px;
  }

  .comment-box-card {
    padding: 18px 12px;
  }

  .comment-box-card > p {
    font-size: 15px;
  }

  .comment-box-card > span {
    font-size: 12px;
  }
}

/* About Page Second Section */
#about-page-second-section {
  background: linear-gradient(135deg, #5b5a8e 0%, #6b678f 50%, #7570a8 100%);
  padding: clamp(60px, 10vw, 60px) 0;
  position: relative;
  overflow: hidden;
}

/* Decorative Dots - Center */
.decorative-dots-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.3;
}

.dot-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(12px, 1.5vw, 15px);
}

.dot-grid span {
  width: clamp(6px, 1vw, 8px);
  height: clamp(6px, 1vw, 8px);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: block;
}

/* Container */
.about-section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 8vw, 100px);
  align-items: start;
  position: relative;
  z-index: 2;
}

/* Left Side */
.left-side-about-paage-second-section {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 30px);
}

.subtitle-about {
  color: rgba(255, 255, 255, 0.75);
  font-family: "GilroyMedium", sans-serif;
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
}

.title-about {
  color: #ffffff;
  font-family: "GilroyBold", sans-serif;
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  font-style: italic;
}

/* All Left Box Section */
.all-leftbox-section {
  display: flex;
  gap: clamp(20px, 3vw, 30px);
  flex-wrap: wrap;
}

/* Video Card */
.about-paage-second-section-image-box {
  width: 100%;
  max-width: 360px;
  flex: 1;
  min-width: 280px;
}

.img-card-about-second {
  position: relative;
  border-radius: clamp(18px, 2.5vw, 25px);
  overflow: hidden;
  border: clamp(6px, 1vw, 10px) solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  aspect-ratio: 1/1;
  height: 100%;
  max-height: 360px;
}

.img-card-about-second:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.img-card-about-second img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Play Button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(70px, 9vw, 90px);
  height: clamp(70px, 9vw, 90px);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.play-btn:hover {
  background: #ffffff;
  transform: translate(-50%, -50%) scale(1.02);
}

.play-btn svg {
  width: clamp(20px, 2.5vw, 30px);
  height: auto;
  margin-left: 3px;
}

/* Info List */
.about-paage-second-section-text-box {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.2vw, 22px);
  flex: 1;
  min-width: 280px;
  justify-content: center;
}

.icon-about-section {
  display: flex;
  align-items: flex-start;
  gap: clamp(14px, 1.8vw, 20px);
}

.icon-box {
  width: clamp(22px, 2.8vw, 28px);
  height: clamp(22px, 2.8vw, 28px);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box svg {
  width: clamp(16px, 2vw, 20px);
  height: auto;
}
.icon-box i {
  color: #d1d0dd;
}

.text-box {
  display: flex;
  flex-wrap: wrap; /* ƏSAS KOD: Sığmayanda aşağı salır */
  gap: 4px;
  flex: 1;
  max-width: 200px;
}

.text-box strong {
  color: #ffffff;
  font-family: "GilroyBold", sans-serif;
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 600;
  line-height: 1.3;
}

.text-box span {
  color: rgba(255, 255, 255, 0.8);
  font-family: "GilroyRegular", sans-serif;
  font-size: clamp(13px, 1.4vw, 15px);
  line-height: 1.4;
}

/* Right Side - Quote Card */
.right-side-about-paage-second-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 3vw, 40px) 0;
}

.quote-card-wrapper {
  background: rgba(76, 76, 112, 0.6);
  backdrop-filter: blur(12px);
  border-radius: clamp(20px, 3vw, 35px);
  padding: clamp(40px, 5vw, 65px) clamp(35px, 4.5vw, 55px);
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.5vw, 25px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
  max-width: 420px;
}

.quote-icon-large {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(50px, 6vw, 70px);
  font-family: Georgia, serif;
  line-height: 0.8;
  margin-bottom: clamp(-5px, -1vw, 0px);
}

.quote-title-text {
  color: #ffffff;
  font-family: "GilroyBold", sans-serif;
  font-size: clamp(19px, 2.3vw, 25px);
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  font-style: italic;
}

.quote-description-text {
  color: rgba(255, 255, 255, 0.88);
  font-family: "GilroyRegular", sans-serif;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.7;
  display: block;
}

/* Features List */
.features-list-about {
  list-style: none;
  padding: 0;
  margin: clamp(5px, 1vw, 10px) 0 0 0;
  display: flex;
  flex-direction: column;
  gap: clamp(13px, 1.6vw, 16px);
}

.features-list-about li {
  display: flex;
  align-items: center;
  gap: clamp(11px, 1.4vw, 14px);
}

.icon-right-box-about {
  width: clamp(20px, 2.2vw, 24px);
  height: clamp(20px, 2.2vw, 24px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #f3ecdc;
}

.icon-right-box-about i {
  width: clamp(12px, 1.5vw, 14px);
  height: auto;
  color: #454574;
}

.features-list-about li p {
  color: #ffffff;
  font-family: "GilroyMedium", sans-serif;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
}

/* ============================================ */
/* RESPONSIVE DESIGN */
/* ============================================ */

/* Extra Large Desktop (1400px and above) */
@media (min-width: 1400px) {
  .about-section-container {
    max-width: 1500px;
  }
}

/* Large Desktop (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
  .about-section-container {
    gap: 70px;
  }

  .about-paage-second-section-image-box {
    max-width: 340px;
  }
}

/* Desktop (1024px - 1199px) */
@media (max-width: 1199px) and (min-width: 1024px) {
  .about-section-container {
    gap: 60px;
  }

  .about-paage-second-section-image-box {
    max-width: 320px;
  }

  .decorative-dots-center {
    opacity: 0.25;
  }
}

/* Tablet Large (992px - 1023px) */
@media (max-width: 1023px) and (min-width: 992px) {
  .about-section-container {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .all-leftbox-section {
    flex-direction: row;
    justify-content: center;
  }

  .about-paage-second-section-image-box {
    max-width: 350px;
  }

  .about-paage-second-section-text-box {
    max-width: 100%;
  }

  .quote-card-wrapper {
    max-width: 700px;
    margin: 0 auto;
  }

  .decorative-dots-center {
    opacity: 0.2;
  }
}

/* Tablet Medium (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  #about-page-second-section {
    padding: clamp(55px, 8vw, 70px) 0;
  }

  .about-section-container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 clamp(30px, 5vw, 50px);
  }

  .subtitle-about,
  .title-about {
    text-align: center;
  }

  .all-leftbox-section {
    flex-direction: column;
    align-items: center;
  }

  .about-paage-second-section-image-box {
    max-width: 100%;
    width: 100%;
  }

  .img-card-about-second {
    max-width: 500px;
    margin: 0 auto;
  }

  .about-paage-second-section-text-box {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .quote-card-wrapper {
    max-width: 650px;
    margin: 0 auto;
    padding: 45px 35px;
  }

  .decorative-dots-center {
    opacity: 0.15;
  }
}

/* Tablet Small (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
  #about-page-second-section {
    padding: 55px 0;
  }

  .about-section-container {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 0 25px;
  }

  .subtitle-about,
  .title-about {
    text-align: center;
  }

  .title-about {
    font-size: clamp(24px, 5vw, 32px);
  }

  .all-leftbox-section {
    flex-direction: column;
    gap: 25px;
  }

  .about-paage-second-section-image-box {
    max-width: 100%;
    width: 100%;
  }

  .img-card-about-second {
    max-width: 450px;
    margin: 0 auto;
    border-width: 8px;
  }

  .play-btn {
    width: 70px;
    height: 70px;
  }

  .about-paage-second-section-text-box {
    max-width: 100%;
    gap: 18px;
  }

  .quote-card-wrapper {
    max-width: 100%;
    padding: 40px 30px;
    gap: 22px;
  }

  .decorative-dots-center {
    display: none;
  }
}

/* Mobile Large (480px - 575px) */
/* Mobile Large (480px - 575px) */
@media (max-width: 575px) and (min-width: 480px) {
  #about-page-second-section {
    padding: 50px 0;
  }

  .about-section-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 40px;
  }

  .subtitle-about,
  .title-about {
    text-align: center;
  }

  .subtitle-about {
    font-size: 11px;
    letter-spacing: 2.5px;
  }

  .title-about {
    font-size: 26px;
    line-height: 1.3;
  }

  .all-leftbox-section {
    flex-direction: column;
    gap: 22px;
  }

  .about-paage-second-section-image-box {
    min-width: 100%;
    max-width: 100%;
  }

  .img-card-about-second {
    border-width: 7px;
    max-height: 320px;
  }

  .play-btn {
    width: 65px;
    height: 65px;
  }

  .play-btn svg {
    width: 20px;
  }

  .about-paage-second-section-text-box {
    gap: 16px;
    min-width: 100%;
  }

  .icon-about-section {
    gap: 12px;
  }

  .icon-box {
    width: 24px;
    height: 24px;
  }

  .text-box strong {
    font-size: 15px;
  }

  .text-box span {
    font-size: 13px;
    line-height: 1.5;
  }

  .quote-card-wrapper {
    padding: 35px 25px;
    gap: 20px;
  }

  .quote-icon-large {
    font-size: 55px;
    opacity: 0.12;
  }

  .quote-title-text {
    font-size: 19px;
  }

  .quote-description-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .features-list-about {
    gap: 13px;
  }

  .icon-right-box-about {
    width: 20px;
    height: 20px;
  }

  .features-list-about li p {
    font-size: 14px;
  }

  .decorative-dots-center,
  .decorative-dots-left,
  .decorative-dots-right {
    display: none;
  }
}

/* Mobile Medium (375px - 479px) */
@media (max-width: 479px) and (min-width: 375px) {
  #about-page-second-section {
    padding: 45px 0;
  }

  .about-section-container {
    padding: 0 18px;
    gap: 35px;
    grid-template-columns: 1fr;
  }

  .subtitle-about {
    font-size: 10px;
    letter-spacing: 2.2px;
    margin-bottom: 8px;
  }

  .title-about {
    font-size: 24px;
    line-height: 1.3;
  }

  .all-leftbox-section {
    flex-direction: column;
    gap: 20px;
  }

  .about-paage-second-section-image-box {
    min-width: 100%;
  }

  .img-card-about-second {
    border-width: 6px;
    max-height: 280px;
  }

  .play-btn {
    width: 60px;
    height: 60px;
  }

  .play-btn svg {
    width: 18px;
  }

  .about-paage-second-section-text-box {
    gap: 14px;
    min-width: 100%;
  }

  .icon-about-section {
    gap: 10px;
  }

  .icon-box {
    width: 22px;
    height: 22px;
  }

  .text-box strong {
    font-size: 14px;
  }

  .text-box span {
    font-size: 13px;
    line-height: 1.5;
  }

  .quote-card-wrapper {
    padding: 30px 22px;
    gap: 18px;
    border-radius: 10px;
  }

  .quote-icon-large {
    font-size: 50px;
    opacity: 0.12;
  }

  .quote-title-text {
    font-size: 18px;
    line-height: 1.4;
  }

  .quote-description-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .features-list-about {
    gap: 12px;
  }

  .icon-right-box-about {
    width: 19px;
    height: 19px;
  }

  .features-list-about li {
    align-items: flex-start;
  }

  .features-list-about li p {
    font-size: 14px;
    line-height: 1.5;
  }

  .decorative-dots-center,
  .decorative-dots-left,
  .decorative-dots-right {
    display: none;
  }
}

/* Mobile Small (320px - 374px) */
@media (max-width: 374px) {
  #about-page-second-section {
    padding: 40px 0;
  }

  .about-section-container {
    padding: 0 15px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .subtitle-about {
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 6px;
  }

  .title-about {
    font-size: 22px;
    line-height: 1.3;
  }

  .all-leftbox-section {
    gap: 18px;
    flex-direction: column;
  }

  .about-paage-second-section-image-box {
    min-width: 100%;
  }

  .img-card-about-second {
    border-width: 5px;
    border-radius: 8px;
    max-height: 250px;
  }

  .play-btn {
    width: 55px;
    height: 55px;
  }

  .play-btn svg {
    width: 16px;
  }

  .about-paage-second-section-text-box {
    gap: 13px;
    min-width: 100%;
  }

  .icon-about-section {
    gap: 9px;
  }

  .icon-box {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }

  .text-box strong {
    font-size: 13px;
  }

  .text-box span {
    font-size: 12px;
    line-height: 1.5;
  }

  .quote-card-wrapper {
    padding: 28px 18px;
    gap: 16px;
    border-radius: 8px;
  }

  .quote-icon-large {
    font-size: 45px;
    opacity: 0.1;
  }

  .quote-title-text {
    font-size: 17px;
    line-height: 1.4;
  }

  .quote-description-text {
    font-size: 13px;
    line-height: 1.6;
  }

  .features-list-about {
    gap: 11px;
  }

  .icon-right-box-about {
    width: 18px;
    height: 18px;
    min-width: 18px;
  }

  .features-list-about li {
    align-items: flex-start;
  }

  .features-list-about li p {
    font-size: 13px;
    line-height: 1.5;
  }

  .decorative-dots-center,
  .decorative-dots-left,
  .decorative-dots-right {
    display: none;
  }
}

/* Extra Small Mobile (280px - 319px) */
@media (max-width: 319px) {
  #about-page-second-section {
    padding: 35px 0;
  }

  .about-section-container {
    padding: 0 12px;
    gap: 25px;
  }

  .subtitle-about {
    font-size: 9px;
    letter-spacing: 1.8px;
  }

  .title-about {
    font-size: 20px;
    line-height: 1.3;
  }

  .all-leftbox-section {
    gap: 16px;
  }

  .img-card-about-second {
    border-width: 4px;
    max-height: 220px;
  }

  .play-btn {
    width: 50px;
    height: 50px;
  }

  .play-btn svg {
    width: 14px;
  }

  .about-paage-second-section-text-box {
    gap: 12px;
  }

  .icon-box {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }

  .text-box strong {
    font-size: 12px;
  }

  .text-box span {
    font-size: 11px;
  }

  .quote-card-wrapper {
    padding: 25px 15px;
    gap: 14px;
  }

  .quote-icon-large {
    font-size: 40px;
  }

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

  .quote-description-text {
    font-size: 12px;
  }

  .features-list-about {
    gap: 10px;
  }

  .icon-right-box-about {
    width: 16px;
    height: 16px;
    min-width: 16px;
  }

  .features-list-about li p {
    font-size: 12px;
  }
}

/* Landscape Mode - Mobile (height ≤ 600px) */
@media (max-height: 600px) and (orientation: landscape) {
  #about-page-second-section {
    padding: 40px 0;
  }

  .about-section-container {
    gap: 30px;
  }

  .img-card-about-second {
    max-height: 280px;
  }

  .play-btn {
    width: 55px;
    height: 55px;
  }

  .quote-card-wrapper {
    padding: 25px 20px;
  }
}

/* Landscape Mode - Tablet (height ≤ 800px) */
@media (max-height: 800px) and (min-width: 768px) and (orientation: landscape) {
  #about-page-second-section {
    padding: 50px 0;
  }

  .about-section-container {
    gap: 35px;
  }

  .img-card-about-second {
    max-height: 350px;
  }
}

/* Ultra Wide Screens (aspect ratio) */
@media (min-aspect-ratio: 21/9) {
  .about-section-container {
    max-width: 1600px;
    margin: 0 auto;
  }
}

/* Tablet Portrait Optimization (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .about-section-container {
    gap: 40px;
  }

  .img-card-about-second {
    max-height: 400px;
  }

  .title-about {
    font-size: 32px;
  }

  .features-list-about li p {
    font-size: 15px;
  }
}

#about-page-third-section {
  margin: 0 auto;
  padding: clamp(50px, 8vw, 100px) clamp(20px, 6vw, 80px);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* --- Left Side: Image Composition --- */
.third-section-left-box {
  position: relative;
  width: 50%;
  height: 550px;
}

/* Background Image (Left/Back) */
.image-box-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 360px;
  height: 460px;
  background-image: url("https://images.unsplash.com/photo-1590490360182-c33d57733427?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  z-index: 1;
}
.image-box-1.snow {
  background-image: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTnIjgQ8RSy0BcatlxQYZJn2oTbO_xX34jJYA&s");
}

/* Foreground Image (Right/Front) */
.image-box-2 {
  position: absolute;
  top: 140px;
  left: 180px;
  width: 360px;
  height: 460px;
  background-image: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQulSsB9PHjqMHW1KABzS8UqjxWWvr59S0T3A&s");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  border: 8px solid #fff; /* White border for separation */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.image-box-2.snow {
  background-image: url("https://www.sno.co.uk/blog/wp-content/uploads/2021/09/skier-skiing-down-steep-edge-of-mountain_unsplash-760x1013.jpg");
}

/* 100% Satisfaction Badge */
.image-card {
  position: absolute;
  bottom: 60px;
  left: 60px;
  width: 200px;
  background-color: #5c5b88; /* Matching the purple tone */
  padding: 25px 20px;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  z-index: 3;
  box-shadow: 0 10px 25px rgba(92, 91, 136, 0.4);
}

.image-card p {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  font-family: serif; /* For the classic '100' look */
  margin-bottom: 5px;
  position: relative;
  display: inline-block;
}

/* The '%' symbol positioning */
.image-card p::after {
  content: "%";
  font-size: 20px;
  font-weight: 400;
  font-family: sans-serif;
  position: absolute;
  top: 5px;
  right: -20px;
}

.image-card span {
  display: block;
  font-size: 18px;
  line-height: 1.4;
  opacity: 0.9;
  font-family: "GilroyMedium", sans-serif;
}

/* --- Right Side: Content --- */
.third-section-right-box {
  width: 55%;
  padding-top: 40px;
}

/* Small uppercase subtitle */
.third-section-right-box > span:first-child {
  display: block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* Main Heading */
.third-section-right-box > p {
  font-size: 38px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  line-height: 1.2;
  font-family: "GilroyBold", sans-serif;
}

/* Description text */
.third-section-right-box > span:nth-of-type(2) {
  display: block;
  font-size: 20px;
  color: #666;
  margin-bottom: 30px;
  font-family: "GirloyMedium", sans-serif;
}

/* Info List */
.third-section-right-box ul {
  list-style: none;
  padding: 0;
}

.third-section-right-box li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 15px;
}

/* Icons */
.third-section-right-box li i {
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9c9bbf; /* Light purple icon color */
  margin-right: 20px;
}
.third-section-right-box li {
  font-size: 20px;
  font-family: "GilroyMedium", sans-serif, sans-serif;
}
.third-section-right-box li p {
  font-weight: "GilroyBold";
}
/* Using FontAwesome for icons based on the image context */
/* You can replace these classes with SVGs if preferred */
.third-section-right-box li:nth-child(1) .icon::before {
  content: "\f0a3";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
} /* Certificate */
.third-section-right-box li:nth-child(2) .icon::before {
  content: "\f1ad";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
} /* Building */
.third-section-right-box li:nth-child(3) .icon::before {
  content: "\f19c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
} /* Bank/Tax */
.third-section-right-box li:nth-child(4) .icon::before {
  content: "\f53d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
} /* Receipt/Number */
.third-section-right-box li:nth-child(5) .icon::before {
  content: "\f236";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
} /* Bed */
.third-section-right-box li:nth-child(6) .icon::before {
  content: "\f133";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
} /* Calendar */

/* Label (e.g., "Zincir Tipi:") */
.third-section-right-box li p {
  font-weight: 700;
  color: #333;
  margin-right: 6px;
}

/* Value (e.g., "Bağımsız") */
.third-section-right-box li span {
  color: #444;
  font-weight: 400;
}

/* Decorative dots in background (Optional based on image) */
.third-section-right-box {
  position: relative;
}
.third-section-right-box::before {
  content: "";
  position: absolute;
  top: -20px;
  right: 0;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(#e0e0e0 1.5px, transparent 1.5px);
  background-size: 15px 15px;
  opacity: 0.5;
  z-index: -1;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1300px) {
  #about-page-third-section {
    flex-direction: column; /* Alt-alta düzülüş */
    align-items: center;
    gap: 40px; /* Şəkillər və Mətn arasında boşluq */
    padding: 40px 20px;
  }

  /* 1. Sol Qutunun Hündürlüyünü Sabitləyirik */
  /* Əgər bunu verməsək, mətnlər şəkillərin altına girər! */
  .third-section-left-box {
    width: 100%;
    max-width: 500px; /* Çox genəlməsin */
    height: 520px; /* Şəkillərin yerləşməsi üçün MƏCBURİ yer */
    margin-bottom: 20px; /* Mətnlərdən əlavə ara məsafəsi */
  }

  /* Şəkilləri konteynerə uyğunlaşdırırıq */
  .image-box-1 {
    left: 50%;
    transform: translateX(-60%); /* Mərkəzləşdirməyə kömək edir */
  }

  .image-box-2 {
    left: 50%;
    transform: translateX(-40%); /* Bir az sağa sürüşdürürük */
    top: 120px; /* Bir az yuxarı qaldırırıq */
  }

  /* Sağ tərəf (Mətnlər) */
  .third-section-right-box {
    width: 100%;
    padding-top: 0;
    text-align: center; /* Tabletdə mərkəzli daha yaxşı görünür */
  }

  /* İkonları və siyahını mərkəzləşdiririk */
  .third-section-right-box ul {
    display: inline-block;
    text-align: left; /* Siyahı içi sola yaslı qalsın */
  }
}

/* --- Mobil Telefonlar (Max: 600px) --- */
@media (max-width: 600px) {
  /* 1. Sol Qutunun hündürlüyünü mobila görə azaldırıq */
  .third-section-left-box {
    height: 380px; /* Mobil üçün ayrılan yer */
    max-width: 100%;
  }

  /* 2. Şəkilləri daha kiçik və proporsional edirik */
  .image-box-1 {
    width: 220px;
    height: 280px;
    left: 50%;
    transform: translateX(-65%); /* Sola doğru */
    top: 0;
  }

  .image-box-2 {
    width: 220px;
    height: 280px;
    left: 50%;
    transform: translateX(-35%); /* Sağa doğru */
    top: 60px; /* Üst-üstə düşmə məsafəsi */
    border-width: 5px;
  }

  /* 3. "100% Memnuniyet" Kartı */
  .image-card {
    width: 140px;
    padding: 15px;
    left: 50%;
    transform: translateX(-50%); /* Tam mərkəzdə */
    bottom: 0; /* Ən aşağıda */
  }

  .image-card p {
    font-size: 32px;
  }

  /* 4. Mətnlərin ölçüləri */
  .third-section-right-box > p {
    font-size: 26px;
  }

  .third-section-right-box > span:nth-of-type(2) {
    font-size: 16px;
  }

  /* Siyahı elementləri */
  .third-section-right-box li {
    font-size: 14px;
    flex-direction: column; /* Mobil üçün alt-alta */
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 15px;
  }

  .third-section-right-box li i {
    margin-bottom: 5px;
  }

  .third-section-right-box li p {
    margin-right: 0;
    display: inline-block;
  }
}

/* --- Çox Kiçik Ekranlar (Max: 380px) --- */
@media (max-width: 380px) {
  .third-section-left-box {
    height: 320px; /* Daha az yer */
  }

  .image-box-1,
  .image-box-2 {
    width: 180px;
    height: 230px;
  }

  .image-box-2 {
    top: 50px;
  }
}

/* About Page css end */

/* Room Page css start */
/* ========================================
   ƏSAS KONTEYNER
   ======================================== */

#room-page-first-section {
  margin: 0 auto;
  padding: clamp(42px, 8vw, 100px) clamp(16px, 6vw, 80px) clamp(40px, 6vw, 80px);
  text-align: center;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

#room-page-first-section > span {
  display: inline-block;
  font-size: clamp(11px, 1.2vw, 12px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a8f98;
  margin-bottom: clamp(8px, 1vw, 10px);
  font-family: "GilroyLight", sans-serif;
}

#room-page-first-section > p {
  margin: 0 0 clamp(24px, 3vw, 40px);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  color: #1c1f25;
  font-family: "GilroyBold", sans-serif;
  line-height: 1.2;
}

/* ========================================
   ROOM SECTION STRUKTURU
   ======================================== */

.room-section,
.room-section2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2.5vw, 24px);
  margin-bottom: clamp(16px, 2.5vw, 24px);
  width: 100%;
}

.room-section2 {
  margin-top: clamp(16px, 3vw, 40px);
}

/* ========================================
   KART KONTEYNERLƏRI
   ======================================== */

.left-card {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.5vw, 24px);
  min-height: 320px;
}

.left-up-card,
.left-down-card,
.middle-card,
.right-card {
  border-radius: clamp(16px, 2.5vw, 24px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover effekti - kartın özü */
.left-up-card:hover,
.left-down-card:hover,
.middle-card:hover,
.right-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ========================================
   ŞƏKİL BACKGROUNDLARI
   ======================================== */

.left-up-card {
  flex: 1;
  /* background-image: url("https://images.unsplash.com/photo-1611892440504-42a792e24d32?w=800&q=80"); */
}

.left-down-card {
  flex: 1;
  /* background-image: url("https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?w=800&q=80"); */
}

.middle-card {
  /* background-image: url("https://images.unsplash.com/photo-1590490360182-c33d57733427?w=800&q=80"); */
}

.right-card {
  /* background-image: url("https://images.unsplash.com/photo-1578683010236-d716f9a3f461?w=800&q=80"); */
}

/* ========================================
   MƏTN STİLLƏRİ
   ======================================== */

.middle-card-text,
.right-card-text,
.left-card-text {
  background: rgba(87, 87, 129, 0.85);
  backdrop-filter: blur(4px);
  color: #ffffff;
  padding: clamp(16px, 2.5vw, 24px);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 600;
  width: 100%;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.middle-card-text {
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 640;
}

/* Hover effekti - mətn */
.left-up-card:hover .left-card-text,
.left-down-card:hover .left-card-text,
.middle-card:hover .middle-card-text,
.right-card:hover .right-card-text {
  transform: translateY(0%);
}

/* Touch cihazlar üçün mətn həmişə görünsün */
@media (hover: none) and (pointer: coarse) {
  .middle-card-text,
  .right-card-text,
  .left-card-text {
    transform: translateY(0%) !important;
    background: rgba(87, 87, 129, 0.7);
  }
}

/* ========================================
   TABLET LAYOUT (768px - 1023px)
   ======================================== */

@media (min-width: 768px) {
  .room-section,
  .room-section2 {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 3vw, 32px);
    min-height: 480px;
  }

  .left-card {
    min-height: 480px;
    gap: clamp(20px, 3vw, 32px);
  }

  .middle-card {
    grid-row: span 2;
    border-radius: clamp(20px, 3vw, 32px);
  }

  .right-card {
    grid-row: span 2;
  }

  .left-up-card,
  .left-down-card {
    min-height: 225px;
  }
}

/* ========================================
   DESKTOP LAYOUT (1024px+)
   ======================================== */

@media (min-width: 1024px) {
  .room-section,
  .room-section2 {
    grid-template-columns: 1fr 1.5fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: clamp(24px, 3vw, 40px);
    height: clamp(550px, 50vw, 650px);
    max-height: 650px;
  }

  .left-card {
    grid-row: 1 / 3;
    min-height: 100%;
    gap: clamp(24px, 3vw, 40px);
  }

  .middle-card {
    grid-row: 1 / 3;
    grid-column: 2 / 3;
    border-radius: 0 141px 0 0 !important;
  }

  .right-card {
    grid-row: 1 / 3;
    grid-column: 3 / 4;
  }

  /* 2-ci section üçün əks düzülüş */
  .room-section2 .left-card {
    grid-column: 3 / 4;
    order: 3;
  }

  .room-section2 .middle-card {
    border-radius: 0 0 0 141px !important;
  }

  .room-section2 .right-card {
    grid-column: 1 / 2;
    order: 1;
  }

  .left-up-card,
  .left-down-card {
    min-height: initial;
    flex: 1;
  }

  .middle-card-text,
  .right-card-text,
  .left-card-text {
    padding: clamp(24px, 3vw, 36px);
  }
}

/* ========================================
   LARGE DESKTOP (1280px+)
   ======================================== */

@media (min-width: 1280px) {
  #room-page-first-section {
    padding-left: 80px;
    padding-right: 80px;
  }

  .room-section,
  .room-section2 {
    gap: 40px;
    height: 650px;
  }

  .left-card {
    gap: 40px;
  }
}

/* ========================================
   EXTRA LARGE SCREENS (1920px+)
   ======================================== */

@media (min-width: 1920px) {
  #room-page-first-section {
    max-width: 1800px;
    margin: 0 auto;
  }
}

/* ========================================
   PERFORMANS OPTİMALLAŞDIRMA
   ======================================== */

@media (prefers-reduced-motion: reduce) {
  .left-up-card,
  .left-down-card,
  .middle-card,
  .right-card,
  .middle-card-text,
  .right-card-text,
  .left-card-text {
    transition: none !important;
  }
}

/* GPU akselerasiyası */
.middle-card-text,
.right-card-text,
.left-card-text {
  will-change: transform;
  transform: translateY(100%) translateZ(0);
  backface-visibility: hidden;
}

/* Room Page css end */

/* Galery Page css start */

#galery-page-first-section {
  margin: 0 auto;
  padding: clamp(50px, 0vw, 100px) clamp(20px, 6vw, 80px) 0;
  text-align: center;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

#galery-page-first-section > span {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a8f98;
  margin-bottom: 10px;
  font-family: "GilroyLight";
}

#galery-page-first-section > p {
  margin: 0 0 28px;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: #1c1f25;
  font-family: "GilroyBold";
}

/* Main layout */
.image-box {
  display: flex;
  gap: 18px;
  flex-direction: column;
}

/* box1: (big + 2 small stacked) */
.box1 {
  display: flex;
  gap: 18px;
}

.card-big,
.card-small,
.cardr-normal {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: #eef1f6;
  height: 300px;
}

/* middle column: 3 equal cards */
.box2 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  gap: 24px;
}
.card-big {
  width: 50%;
}
.card-normal {
  width: 25%;
}
.card-small {
  width: 25%;
}

.card-big img,
.card-small img,
.cardr-normal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.galery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px;
  opacity: 0;
  transform: translateY(6px);
  transition: 0.25s ease;
  background: linear-gradient(0deg, rgba(92, 89, 140, 0.86) 0%, rgba(92, 89, 140, 0.55) 55%, rgba(0, 0, 0, 0.1) 100%);
  cursor: pointer;
}

.card-big:hover .galery-overlay,
.card-small:hover .galery-overlay,
.cardr-normal:hover .galery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.galery-overlay .text {
  text-align: left;
  color: #fff;
  max-width: 64%;
  padding: 20px 10px;
}

.galery-overlay .text p {
  margin: 0 0 6px;
  font-size: 35px;
  font-weight: 800;
  font-family: "GilroyBold";
  line-height: 1.1;
}

.galery-overlay .text span {
  display: block;
  font-size: 16px;
  line-height: 1.35;
  opacity: 0.95;
  font-family: "GilroyLight";
}

/* play button */
.galery-overlay .play {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(2px);
  background-color: #ababd9;
}

.galery-overlay .play i {
  color: #ffffff;
  font-size: 35px;
  transform: translateX(1px);
}

/* bottom link */
.more-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a7f88;
  text-decoration: none;
  font-family: "GilroyMedium";
}

.more-link:hover {
  color: #4f4a7b;
}

/* Desktop default (səndə var)
.image-box { display:flex; flex-direction:column; gap:18px; }
.box1 { display:flex; gap:18px; }
.box2 { display:flex; gap:24px; height:300px; }
.card-big { width:50%; } .card-small { width:25%; } .cardr-normal { width:25%; }  */

/* 992px və aşağı: hündürlükləri və fontları yumşalt */
@media (max-width: 992px) {
  .card-big,
  .card-small,
  .cardr-normal {
    height: 260px;
    border-radius: 24px;
  }

  .galery-overlay .text p {
    font-size: 28px;
  }
  .galery-overlay .text span {
    font-size: 14px;
  }

  .galery-overlay .play {
    width: 74px;
    height: 74px;
  }
  .galery-overlay .play i {
    font-size: 28px;
  }
}

/* 768px və aşağı: box1/box2-ni wrap et (2+2 kimi yığılsın) */
@media (max-width: 768px) {
  .box1,
  .box2 {
    flex-wrap: wrap;
  }

  /* box1-də: big üstə, 2 small altda yan-yana */
  .box1 .card-big {
    width: 100%;
  }
  .box1 .card-small {
    width: calc(50% - 9px);
  }

  /* box2-də: 2 kart yan-yana, 3-cü alt sətirdə */
  .box2 {
    height: auto; /* 300px-i burda söndürürük */
  }
  .box2 .cardr-normal {
    width: calc(50% - 12px);
    height: 220px;
  }
  .box2 .cardr-normal:nth-child(3) {
    width: 100%;
  }
}

/* 640px və aşağı: hamısı tək sütun */
@media (max-width: 640px) {
  #galery-page-first-section {
    padding: 42px 16px 0; /* bottom 0 qalır */
  }

  .card-big,
  .card-small,
  .cardr-normal {
    width: 100% !important;
    height: 200px;
    border-radius: 20px;
  }

  .box1,
  .box2 {
    flex-direction: column;
    flex-wrap: nowrap;
    height: auto;
    gap: 16px;
  }

  .galery-overlay .text p {
    font-size: 22px;
  }
  .galery-overlay .text span {
    font-size: 13px;
  }

  .galery-overlay .play {
    width: 64px;
    height: 64px;
  }
  .galery-overlay .play i {
    font-size: 24px;
  }
}

/* Galery Page css end */

/* Sport and Health Page css start */

#sport-and-healthy-first-section {
  margin: 30px auto;
  padding: clamp(50px, 0vw, 100px) clamp(20px, 6vw, 80px) 0;
}

.section-title {
  color: #0f172a;
  font-family: "GilroyBold", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2px;
  text-align: center;
}

.section-desc {
  color: #0f172a;
  text-align: center;
  font-family: "GilroyLight";
  font-size: 15.413px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 24.66px */
  text-align: center;
  max-width: 700px;
  margin: 20px auto 50px;
}

.sport-and-healthy-first-section-boxs {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.sport-and-healthy-card {
  width: 100%;
  max-width: 45%;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.sport-and-healthy-card:hover {
  transform: translateY(-1px);
}

.card-image-wrapper {
  width: 100%;
  height: 300px;
  overflow: hidden;
  padding: 30px 30px 10px 30px;
  background-color: transparent;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 30px;
}

.sport-and-healthy-card:hover .card-image-wrapper img {
  transform: scale(1.01);
}

.card-footer {
  padding: 14px 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.normal-card {
  background: #f9f9f9;
  transition: all 0.3s;
}
.normal-card:hover {
  background: #575781;
}
.normal-card:hover .card-title {
  color: #ffffff;
}
.normal-card:hover .card-btn {
  background: #ababd9;
}

.card-title {
  font-size: 24px;
  font-weight: 600;
  color: #2d2d2d;
  letter-spacing: 2px;
  text-transform: capitalize;
  margin: 0;
}

.card-btn {
  display: flex;
  padding: 20px 40px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 30px;
  background-color: #575781;
  border: none;
  cursor: pointer;
}
.card-btn span {
  color: #fff;
  font-family: "GilroyMedium", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 2.25px;
  text-transform: uppercase;
}

.card-btn:hover {
  transform: translateY(-1px);
}

.card-btn svg {
  width: 20px;
  height: 20px;
  transform: rotate(270deg);
  color: #ffffff;
  display: flex;
}

/* Responsive */
/* Responsive Design */
@media (max-width: 1200px) {
  #sport-and-healthy-first-section {
    padding: clamp(40px, 5vw, 80px) clamp(20px, 5vw, 60px) 0;
  }

  .section-title {
    font-size: 36px;
  }

  .section-desc {
    font-size: 14px;
    max-width: 600px;
  }

  .sport-and-healthy-card {
    max-width: 48%;
  }

  .card-image-wrapper {
    height: 260px;
    padding: 25px 25px 10px 25px;
  }
}

@media (max-width: 992px) {
  #sport-and-healthy-first-section {
    padding: clamp(35px, 4vw, 70px) clamp(15px, 4vw, 50px) 0;
  }

  .section-title {
    font-size: 32px;
    letter-spacing: 1.5px;
  }

  .section-desc {
    font-size: 14px;
    max-width: 550px;
    margin: 18px auto 40px;
  }

  .sport-and-healthy-first-section-boxs {
    gap: 25px;
  }

  .sport-and-healthy-card {
    max-width: 100%;
  }

  .card-image-wrapper {
    height: 280px;
    padding: 25px 25px 10px 25px;
  }

  .card-footer {
    padding: 12px 25px 22px;
  }

  .card-title {
    font-size: 22px;
  }

  .card-btn {
    padding: 18px 35px;
  }

  .card-btn span {
    font-size: 14px;
    letter-spacing: 2px;
  }
}

@media (max-width: 768px) {
  #sport-and-healthy-first-section {
    padding: 30px 15px 0;
  }

  .section-title {
    font-size: 28px;
    letter-spacing: 1.2px;
  }

  .section-desc {
    font-size: 13px;
    max-width: 500px;
    margin: 16px auto 35px;
    line-height: 155%;
  }

  .sport-and-healthy-first-section-boxs {
    gap: 20px;
  }

  .card-image-wrapper {
    height: 240px;
    padding: 20px 20px 10px 20px;
  }

  .card-image-wrapper img {
    border-radius: 25px;
  }

  .card-footer {
    padding: 10px 20px 20px;
    gap: 16px;
  }

  .card-title {
    font-size: 20px;
    letter-spacing: 1.5px;
  }

  .card-btn {
    padding: 16px 32px;
  }

  .card-btn span {
    font-size: 13px;
    letter-spacing: 1.8px;
  }

  .card-btn svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 576px) {
  #sport-and-healthy-first-section {
    padding: 25px 12px 0;
  }

  .section-title {
    font-size: 24px;
    letter-spacing: 1px;
  }

  .section-desc {
    font-size: 12.5px;
    max-width: 100%;
    margin: 14px auto 30px;
    padding: 0 10px;
  }

  .sport-and-healthy-first-section-boxs {
    gap: 18px;
  }

  .card-image-wrapper {
    height: 200px;
    padding: 18px 18px 8px 18px;
  }

  .card-image-wrapper img {
    border-radius: 20px;
  }

  .card-footer {
    padding: 10px 18px 18px;
    gap: 14px;
  }

  .card-title {
    font-size: 18px;
    letter-spacing: 1.2px;
  }

  .card-btn {
    padding: 14px 28px;
    gap: 8px;
  }

  .card-btn span {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .card-btn svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  #sport-and-healthy-first-section {
    padding: 20px 10px 0;
  }

  .section-title {
    font-size: 22px;
  }

  .section-desc {
    font-size: 12px;
    margin: 12px auto 25px;
  }

  .sport-and-healthy-first-section-boxs {
    gap: 15px;
  }

  .card-image-wrapper {
    height: 180px;
    padding: 15px 15px 8px 15px;
  }

  .card-image-wrapper img {
    border-radius: 18px;
  }

  .card-footer {
    padding: 8px 15px 16px;
    gap: 12px;
  }

  .card-title {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .card-btn {
    padding: 12px 24px;
  }

  .card-btn span {
    font-size: 11px;
    letter-spacing: 1.2px;
  }

  .card-btn svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 375px) {
  .section-title {
    font-size: 20px;
  }

  .section-desc {
    font-size: 11px;
  }

  .card-image-wrapper {
    height: 160px;
    padding: 12px 12px 6px 12px;
  }

  .card-footer {
    padding: 8px 12px 14px;
  }

  .card-title {
    font-size: 15px;
  }

  .card-btn {
    padding: 10px 20px;
  }

  .card-btn span {
    font-size: 10px;
  }
}

.sport-and-healthy-card.funny-page {
  max-width: 30%;
}

@media (max-width: 1200px) {
  .sport-and-healthy-card.funny-page {
    max-width: 31%;
  }
}

@media (max-width: 992px) {
  .sport-and-healthy-card.funny-page {
    max-width: 48%;
  }
}

@media (max-width: 768px) {
  .sport-and-healthy-card.funny-page {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .sport-and-healthy-card.funny-page {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .sport-and-healthy-card.funny-page {
    max-width: 100%;
  }
}

@media (max-width: 375px) {
  .sport-and-healthy-card.funny-page {
    max-width: 100%;
  }
}
/* Sport and Health Page css end */

/* Contact Page css start */

#contact-page-box {
  max-width: 1400px;
  margin: 50px auto;
  padding: 0 20px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* Left Side - Form */
.contact-page-left-side {
  background-color: #f8f8f8;
  padding: 50px 40px;
  border-radius: 8px;
}

.contact-page-left-side h1 {
  font-size: 32px;
  font-weight: bold;
  color: #2d2d2d;
  margin-bottom: 15px;
}

.contact-page-left-side .subtitle {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
  font-size: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
}

.input-group.full-width {
  width: 100%;
  margin-bottom: 20px;
}

.input-group label {
  font-size: 14px;
  color: #2d2d2d;
  margin-bottom: 8px;
  font-weight: 500;
}

.input-group input,
.input-group select,
.input-group textarea {
  padding: 20px 15px;
  border: none;
  background-color: #f1f1f1;
  border-radius: 30px;
  font-size: 14px;
  color: #666;
  outline: none;
  transition: all 0.3s ease;
}

.input-group input::placeholder {
  font-family: "GilroyMedium";
}

.input-group select {
  font-family: "GilroyMedium";
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  background-color: #ddd;
}

.input-group textarea {
  resize: none;
  min-height: 120px;
  font-family: "GilroyMedium";
}

.submit-btn {
  background-color: #5b5b7e;
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  font-family: "GilroyBold";
  letter-spacing: 2px;
  width: fit-content;
}

.submit-btn:hover {
  background-color: #4a4a65;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Right Side - Contact Info */
.contact-page-right-side {
  background-color: #fff;
  padding: 50px 40px;
  border-radius: 8px;
}

.contact-page-right-side .top-label {
  font-size: 11px;
  text-transform: uppercase;
  color: #999;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.contact-page-right-side h2 {
  font-size: 28px;
  font-weight: bold;
  color: #2d2d2d;
  margin-bottom: 15px;
}

.contact-page-right-side .description {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.icon-wrapper {
  width: 40px;
  height: 40px;
  background-color: #e8e8f5;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-wrapper i {
  font-size: 18px;
  color: #5b5b7e;
}

.info-box-txt {
  flex: 1;
}

.info-box-txt .info-title {
  font-size: 14px;
  font-weight: bold;
  color: #2d2d2d;
}

.info-box-txt span {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* Map Section */
.down-box-contact {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.down-box-contact iframe {
  display: block;
}

/* Responsive Design */

/* Large Tablets and small laptops (1200px and below) */
@media (max-width: 1200px) {
  #contact-page-box {
    max-width: 100%;
    margin: 30px auto;
  }

  .contact-page-left-side h1 {
    font-size: 28px;
  }

  .contact-page-right-side h2 {
    font-size: 24px;
  }

  .contact-page-left-side .subtitle,
  .contact-page-right-side .description {
    font-size: 16px;
  }
}

/* Tablets (968px and below) */
@media (max-width: 968px) {
  #contact-page-box {
    margin: 20px auto;
    padding: 0 15px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-page-left-side,
  .contact-page-right-side {
    padding: 40px 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 15px;
  }

  .contact-page-left-side h1 {
    font-size: 26px;
  }

  .contact-page-right-side h2 {
    font-size: 22px;
  }

  .submit-btn {
    width: 100%;
    padding: 18px 40px;
  }
}

/* Mobile Landscape (768px and below) */
@media (max-width: 768px) {
  #contact-page-box {
    margin: 15px auto;
  }

  .contact-container {
    gap: 25px;
    margin-bottom: 25px;
  }

  .contact-page-left-side,
  .contact-page-right-side {
    padding: 35px 25px;
  }

  .contact-page-left-side h1 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .contact-page-right-side h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .contact-page-left-side .subtitle,
  .contact-page-right-side .description {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .input-group input,
  .input-group select,
  .input-group textarea {
    padding: 18px 15px;
    font-size: 15px;
  }

  .down-box-contact iframe {
    height: 350px;
  }
}

/* Mobile Portrait (576px and below) */
@media (max-width: 576px) {
  #contact-page-box {
    padding: 0 10px;
  }

  .contact-page-left-side,
  .contact-page-right-side {
    padding: 30px 20px;
    border-radius: 6px;
  }

  .contact-page-left-side h1 {
    font-size: 22px;
  }

  .contact-page-right-side h2 {
    font-size: 18px;
  }

  .contact-page-left-side .subtitle,
  .contact-page-right-side .description {
    font-size: 14px;
    line-height: 1.5;
  }

  .contact-page-right-side .top-label {
    font-size: 10px;
  }

  .input-group label {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .input-group input,
  .input-group select,
  .input-group textarea {
    padding: 16px 12px;
    font-size: 14px;
  }

  .input-group textarea {
    min-height: 100px;
  }

  .submit-btn {
    padding: 16px 30px;
    font-size: 13px;
    letter-spacing: 1.5px;
  }

  .info-box {
    gap: 12px;
    margin-bottom: 20px;
  }

  .icon-wrapper {
    width: 35px;
    height: 35px;
  }

  .icon-wrapper i {
    font-size: 16px;
  }

  .info-box-txt .info-title {
    font-size: 13px;
  }

  .info-box-txt span {
    font-size: 12px;
  }

  .down-box-contact iframe {
    height: 300px;
  }
}

/* Small Mobile (400px and below) */
@media (max-width: 400px) {
  .contact-page-left-side,
  .contact-page-right-side {
    padding: 25px 15px;
  }

  .contact-page-left-side h1 {
    font-size: 20px;
  }

  .contact-page-right-side h2 {
    font-size: 17px;
  }

  .input-group input,
  .input-group select,
  .input-group textarea {
    padding: 14px 10px;
    font-size: 13px;
  }

  .submit-btn {
    padding: 14px 25px;
    font-size: 12px;
    letter-spacing: 1px;
  }

  .down-box-contact iframe {
    height: 250px;
  }
}

/* Contact Page css end */

/* Spa Page css start */

.spa-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding: clamp(50px, 0vw, 100px) clamp(20px, 6vw, 80px) 0;
}

.spa-header h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: bold;
  color: #2d2d2d;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.spa-description {
  font-size: clamp(13px, 1.5vw, 14px);
  color: #666;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.navigation-arrows {
  position: absolute;
  right: clamp(10px, 3vw, 20px);
  bottom: -40px;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.arrow-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #4a5568;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.arrow-btn:hover {
  background-color: #2d3748;
  transform: scale(1.08);
}

.arrow-btn:active {
  transform: scale(0.95);
}

.arrow-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.arrow-btn i {
  font-size: 16px;
}

/* Gallery */
.spa-gallery {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.spa-gallery::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  height: 556px;
  width: 400px;
  min-width: calc(25% - 15px);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Content Section */
.spa-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* Left Side */
.spa-info-box {
  background-color: white;
  padding: 35px;
  border-radius: 12px;
}

.spa-info-box h2 {
  font-size: 28px;
  font-weight: bold;
  color: #2d2d2d;
  margin-bottom: 10px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.rating i {
  color: #fbbf24;
  font-size: 16px;
}

.rating-score {
  font-size: 16px;
  font-weight: bold;
  color: #2d2d2d;
}

.rating-count {
  font-size: 14px;
  color: #666;
}

.spa-text {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  text-align: justify;
}

/* Right Side */
.spa-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.features-box {
  background-color: white;
  padding: 25px;
  border-radius: 12px;
}

.features-box h3 {
  font-size: 16px;
  font-weight: bold;
  color: #2d2d2d;
  margin-bottom: 20px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: "GilroyMedium", sans-serif;
  margin-bottom: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-family: "GilroyMedium", sans-serif;
}

.feature-item i {
  font-size: 14px;
  color: #4a5568;
  width: 18px;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 13px;
  color: #555;
  line-height: 1.4;
}

.view-all-link {
  display: block;
  text-align: center;
  color: #4a5568;
  font-size: 12px;
  text-decoration: none;
  padding: 10px;
  background-color: #f7fafc;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.view-all-link:hover {
  background-color: #e2e8f0;
  color: #2d3748;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Extra Large Screens (1400px and below) */
@media (max-width: 1400px) {
  .gallery-item {
    height: 480px;
    min-width: calc(25% - 15px);
  }
}

/* Large Laptops (1200px and below) */
@media (max-width: 1200px) {
  .spa-header {
    padding: 40px clamp(15px, 5vw, 60px) 0;
    margin-bottom: 45px;
  }

  .spa-description {
    margin-bottom: 50px;
  }

  .navigation-arrows {
    bottom: -35px;
  }

  .arrow-btn {
    width: 42px;
    height: 42px;
  }

  .arrow-btn i {
    font-size: 15px;
  }

  .spa-gallery {
    gap: 18px;
    margin-bottom: 45px;
  }

  .gallery-item {
    height: 420px;
    min-width: calc(33.333% - 12px);
  }

  .spa-content {
    gap: 25px;
  }

  .spa-right {
    grid-template-columns: 1fr;
  }

  .spa-info-box,
  .features-box {
    padding: 30px;
  }
}

/* Tablets (968px and below) */
@media (max-width: 968px) {
  .spa-header {
    padding: 30px 20px 0;
    margin-bottom: 35px;
  }

  .spa-description {
    margin-bottom: 80px;
  }

  .navigation-arrows {
    justify-content: center;
    margin-bottom: -20px;
  }

  .arrow-btn {
    width: 40px;
    height: 40px;
  }

  .arrow-btn:hover {
    transform: scale(1.05);
  }

  .spa-gallery {
    gap: 16px;
    margin-bottom: 40px;
  }

  .gallery-item {
    height: 360px;
    min-width: calc(50% - 8px);
  }

  .spa-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .spa-right {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .spa-info-box,
  .features-box {
    padding: 28px;
  }

  .spa-info-box h2 {
    font-size: 26px;
  }

  .features-box h3 {
    font-size: 15px;
    margin-bottom: 18px;
  }
}

/* Mobile Landscape (768px and below) */
@media (max-width: 768px) {
  .spa-header {
    padding: 25px 15px 0;
    margin-bottom: 30px;
  }

  .spa-description {
    font-size: 13px;
    line-height: 1.5;
    /* margin-bottom: 30px; */
  }

  .navigation-arrows {
    /* margin-bottom: 20px; */
    gap: 10px;
  }

  .arrow-btn {
    width: 38px;
    height: 38px;
  }

  .arrow-btn i {
    font-size: 14px;
  }

  .spa-gallery {
    gap: 15px;
    margin-bottom: 35px;
  }

  .gallery-item {
    height: 320px;
    min-width: calc(50% - 8px);
  }

  .spa-content {
    gap: 22px;
  }

  .spa-info-box,
  .features-box {
    padding: 25px;
  }

  .spa-info-box h2 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .rating {
    gap: 6px;
    margin-bottom: 18px;
  }

  .rating i {
    font-size: 15px;
  }

  .rating-score {
    font-size: 15px;
  }

  .rating-count {
    font-size: 13px;
  }

  .spa-text {
    font-size: 13px;
    line-height: 1.7;
  }

  .features-list {
    gap: 10px;
  }

  .feature-item span {
    font-size: 12px;
  }

  .spa-right {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* Mobile Portrait (576px and below) */
@media (max-width: 576px) {
  .spa-header {
    padding: 20px 10px 0;
    margin-bottom: 25px;
  }

  .spa-header h1 {
    letter-spacing: 1px;
    margin-bottom: 15px;
  }

  .spa-description {
    font-size: 12px;
    max-width: 100%;
    /* margin-bottom: 25px; */
  }

  .navigation-arrows {
    /* margin-bottom: 18px; */
    gap: 8px;
  }

  .arrow-btn {
    width: 36px;
    height: 36px;
  }

  .arrow-btn i {
    font-size: 13px;
  }

  .spa-gallery {
    gap: 12px;
    margin-bottom: 30px;
  }

  .gallery-item {
    height: 260px;
    min-width: 100%;
  }

  .spa-content {
    gap: 20px;
  }

  .spa-info-box,
  .features-box {
    padding: 22px;
    border-radius: 10px;
  }

  .spa-info-box h2 {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .rating {
    gap: 6px;
    margin-bottom: 16px;
  }

  .rating i {
    font-size: 14px;
  }

  .rating-score {
    font-size: 14px;
  }

  .rating-count {
    font-size: 12px;
  }

  .spa-text {
    font-size: 12px;
    line-height: 1.6;
  }

  .features-box h3 {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .features-list {
    gap: 9px;
    margin-bottom: 12px;
  }

  .feature-item {
    gap: 8px;
  }

  .feature-item i {
    font-size: 13px;
    width: 16px;
  }

  .feature-item span {
    font-size: 11px;
  }

  .view-all-link {
    font-size: 11px;
    padding: 9px;
  }
}

/* Extra Small Mobile (400px and below) */
@media (max-width: 400px) {
  .spa-header {
    padding: 15px 10px 0;
    margin-bottom: 20px;
  }

  .spa-header h1 {
    margin-bottom: 12px;
  }

  .spa-description {
    font-size: 11px;
    /* margin-bottom: 20px; */
  }

  .navigation-arrows {
    /* margin-bottom: 15px; */
  }

  .arrow-btn {
    width: 34px;
    height: 34px;
  }

  .arrow-btn i {
    font-size: 12px;
  }

  .spa-gallery {
    gap: 10px;
    margin-bottom: 25px;
  }

  .gallery-item {
    height: 220px;
  }

  .spa-content {
    gap: 18px;
  }

  .spa-info-box,
  .features-box {
    padding: 18px;
  }

  .spa-info-box h2 {
    font-size: 20px;
  }

  .spa-text {
    font-size: 11px;
  }

  .features-box h3 {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .feature-item span {
    font-size: 10px;
  }

  .view-all-link {
    font-size: 10px;
    padding: 8px;
  }
}

/* Landscape Mode for Small Devices */
@media (max-height: 500px) and (orientation: landscape) {
  .spa-header {
    margin-bottom: 20px;
  }

  .spa-description {
    margin-bottom: 20px;
  }

  .navigation-arrows {
    margin-bottom: 15px;
  }

  .gallery-item {
    height: 200px;
  }

  .spa-gallery {
    margin-bottom: 25px;
  }

  .spa-info-box,
  .features-box {
    padding: 20px;
  }
}

/* Spa Page css end */

/* Room List Page css start */

#room-list-first-section {
  padding: clamp(50px, 0vw, 100px) clamp(20px, 6vw, 80px) 0;
  margin: 0 auto;
}

#room-list-first-section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.section-description {
  text-align: center;
  font-size: 16px;
  color: #666;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.room-list-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.room-list-card {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 30px;
  background: white;
  overflow: hidden;
  /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
  height: 350px;
}

.room-list-card:hover {
  transform: translateY(-1px);
}

.room-image-box {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.room-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.room-list-card:hover .room-image-box img {
  transform: scale(1.01);
}

.room-text-box {
  padding: 0px 30px 0px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.room-text-box h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 5px;
}

.room-icon-box {
  display: flex;
  gap: 16px;
}

.room-icon-card {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  text-align: center;
}

.room-icon-card i {
  font-size: 20px;
  color: #000000;
}

.room-icon-card p {
  font-size: 12px;
  color: #555;
  font-weight: 500;
}

.special-room-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.room-features-title {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
}

.room-features-list {
  display: grid;
  grid-template-columns: repeat(3, 28%);
  list-style: none;
}

.room-features-list li {
  font-size: 14px;
  color: #666;
  padding-left: 15px;
  position: relative;
  font-family: "GilroyMedium", sans-serif;
}

.room-features-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: bold;
}

.down-side-room {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.view-all-features {
  font-size: 14px;
  color: #575781;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 600;
  transition: color 0.3s ease;
}

.room-rezerv-button {
  display: flex;
  width: 225px;
  height: 52px;
  padding: 18px 0;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  border-radius: 30px;
  background: #ababd9;
  color: white;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
  font-family: "GilroyMedium", sans-serif;
}

.room-rezerv-button:hover {
  transform: translateY(-1px);
}

.room-rezerv-button i {
  font-size: 12px;
}

.button-look-all-data {
  color: white;
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
  border-radius: 1000px;
  border: 1px solid #000;
  margin-top: 40px;
  color: #000;
  text-align: center;
  font-family: "GilroyMedium";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.25px;
  text-transform: uppercase;
  padding: 20px;

  cursor: pointer;
}

.button-look-all-data:hover {
  background: #ababd9;
  color: white;
  transition: all 0.3s;
  transform: translateY(-1px);
}

@media screen and (max-width: 1024px) {
  .room-list-card {
    /* Kartın nisbətlərini bir az dəyişirik */
    grid-template-columns: 45% 55%;
    gap: 20px;
    height: max-content;
  }

  .room-features-list {
    /* Xüsusiyyətlər 3 sütundan 2 sütuna keçir */
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .room-text-box {
    padding-right: 15px;
  }
  .down-side-room {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 10px;
  }
}

/* Mobil Cihazlar (max-width: 768px) */
@media screen and (max-width: 768px) {
  #room-list-first-section {
    padding: 40px 15px 0;
  }

  #room-list-first-section h2 {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .section-description {
    font-size: 14px;
    margin-bottom: 30px;
  }

  /* Kartın quruluşunu dəyişirik: Yan-yana yox, alt-alta */
  .room-list-card {
    display: flex;
    flex-direction: column;
    grid-template-columns: none; /* Grid-i ləğv edirik */
    height: auto; /* Sabit 350px hündürlüyü ləğv edirik ki, məzmun sığsın */
    border-radius: 20px; /* Ümumi karta radius veririk */
  }

  /* Şəkil hissəsi */
  .room-image-box {
    width: 100%;
    height: 250px; /* Mobildə şəklin hündürlüyünü təyin edirik */
    border-radius: 20px 20px 0 0; /* Yalnız yuxarı küncləri yuvarlaq edirik */
  }

  /* Mətn hissəsi */
  .room-text-box {
    padding: 10px 20px 30px 20px; /* Padding əlavə edirik */
    gap: 15px;
  }

  .room-text-box h3 {
    font-size: 20px;
  }

  /* İkonlar */
  .room-icon-box {
    flex-wrap: wrap; /* İkonlar sığmasa aşağı düşsün */
    gap: 12px;
  }

  /* Xüsusiyyətlər siyahısı */
  .room-features-list {
    grid-template-columns: 1fr; /* Mobildə tək sütun */
  }

  /* Aşağı hissə (Button və Link) */
  .down-side-room {
    flex-direction: column-reverse; /* Linki düymənin altına salmaq üçün */
    align-items: stretch;
    gap: 20px;
  }

  .room-rezerv-button {
    width: 100%; /* Düymə tam ekran genişliyində olsun */
  }

  .view-all-features {
    text-align: center;
    display: block;
    padding: 5px;
  }

  .button-look-all-data {
    width: 100%;
    padding: 15px;
    font-size: 13px;
    letter-spacing: 1px;
  }
}

/* Kiçik Mobil (max-width: 480px) */
@media screen and (max-width: 480px) {
  .room-image-box {
    height: 200px; /* Çox kiçik ekranlarda şəkil biraz daha kiçilsin */
  }

  .room-text-box h3 {
    font-size: 18px;
  }
}

/* Room List Page css end */

/* Explore Page css start */

#explore-section {
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #333;
  padding: clamp(50px, 0vw, 100px) clamp(20px, 6vw, 80px) 0;

  .sub-title {
    color: #0f172a;
    text-align: center;
    font-family: "GilroyLight";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.25px;
    text-transform: uppercase;
  }

  .main-title {
    color: var(--Heading, #2d2d2d);
    text-align: center;
    font-family: "GilroyBold";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 20px 0px 52px;
  }

  .explore-section-up-box {
    background: #64648c;
    border-radius: 20px;
    padding: 60px 40px;
    color: white;
    margin-bottom: 50px;

    .box-title {
      color: #fff;
      text-align: center;
      font-family: "GilroyMedium";
      font-size: 22px;
      font-style: normal;
      font-weight: 400;
      line-height: 31.92px;
      letter-spacing: -0.18px;
    }

    .box-desc {
      color: #fff;
      text-align: center;
      font-family: "GilroyMedium";
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 24px;
    }

    .explore-section-icon-card {
      margin-top: 52px;
      display: grid;
      grid-template-columns: repeat(8, 1fr);
      gap: 20px;

      .explore-card-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;

        .icon-image-explore {
          width: 40px;
          height: 40px;
          filter: brightness(0) invert(1);
        }

        span {
          color: #f3ecdc;
          text-align: center;
          font-family: "GilroyMedium";
          letter-spacing: 1.1px;
          font-size: 14px;
          font-style: normal;
          font-weight: 400;
          line-height: 24px;
        }
      }
    }
  }

  .explore-section-image-box {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;

    img {
      width: 50%;
      height: 360px;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
  }

  .explore-section-down-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: left;

    ul {
      list-style: none;
      padding: 0;
      margin-bottom: 30px;

      p {
        font-weight: 700;
        font-size: 16px;
        margin-bottom: 15px;
        color: #1a1a1a;
        font-family: "GilroyBold";
      }

      li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        margin-bottom: 10px;
        color: #073937;
        font-family: "GilroyMedium";

        img {
          width: 18px;
          opacity: 0.7;
        }
      }
    }

    .view-all {
      font-size: 12px;
      font-weight: 700;
      color: #64648c;
      text-decoration: underline;
      cursor: pointer;
    }
  }

  /* ===== RESPONSIVE DESIGN ===== */

  /* Tablet (768px - 1024px) */
  @media (max-width: 1024px) {
    .main-title {
      font-size: 32px;
      margin: 15px 0px 40px;
    }

    .explore-section-up-box {
      padding: 40px 30px;

      .box-title {
        font-size: 20px;
      }

      .box-desc {
        font-size: 15px;
      }

      .explore-section-icon-card {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        margin-top: 40px;

        .explore-card-box {
          span {
            font-size: 13px;
          }
        }
      }
    }

    .explore-section-image-box {
      gap: 20px;

      img {
        height: 300px;
      }
    }

    .explore-section-down-box {
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
    }
  }

  /* Mobile Large (481px - 767px) */
  @media (max-width: 767px) {
    padding: 40px 20px 0;

    .sub-title {
      font-size: 13px;
      letter-spacing: 1.5px;
    }

    .main-title {
      font-size: 26px;
      margin: 12px 0px 30px;
    }

    .explore-section-up-box {
      padding: 30px 20px;
      margin-bottom: 35px;
      border-radius: 15px;

      .box-title {
        font-size: 18px;
        line-height: 26px;
      }

      .box-desc {
        font-size: 14px;
        line-height: 22px;
        margin-top: 10px;
      }

      .explore-section-icon-card {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 30px;

        .explore-card-box {
          gap: 10px;

          .icon-image-explore {
            width: 32px;
            height: 32px;
          }

          span {
            font-size: 11px;
            line-height: 18px;
            letter-spacing: 0.5px;
          }
        }
      }
    }

    .explore-section-image-box {
      flex-direction: column;
      gap: 20px;
      margin-bottom: 35px;

      img {
        width: 100%;
        height: 250px;
        border-radius: 15px;
      }
    }

    .explore-section-down-box {
      grid-template-columns: 1fr;
      gap: 20px;

      ul {
        margin-bottom: 20px;

        p {
          font-size: 15px;
          margin-bottom: 12px;
        }

        li {
          font-size: 13px;
          margin-bottom: 8px;

          img {
            width: 16px;
          }
        }
      }
    }
  }

  /* Mobile Small (max-width: 480px) */
  @media (max-width: 480px) {
    padding: 30px 15px 0;

    .sub-title {
      font-size: 12px;
      letter-spacing: 1.2px;
    }

    .main-title {
      font-size: 22px;
      margin: 10px 0px 25px;
    }

    .explore-section-up-box {
      padding: 25px 15px;
      margin-bottom: 30px;

      .box-title {
        font-size: 16px;
        line-height: 24px;
      }

      .box-desc {
        font-size: 13px;
        line-height: 20px;
      }

      .explore-section-icon-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 25px;

        .explore-card-box {
          gap: 8px;

          .icon-image-explore {
            width: 28px;
            height: 28px;
          }

          span {
            font-size: 10px;
            line-height: 16px;
            letter-spacing: 0.3px;
          }
        }
      }
    }

    .explore-section-image-box {
      gap: 15px;
      margin-bottom: 30px;

      img {
        height: 200px;
      }
    }

    .explore-section-down-box {
      gap: 15px;

      ul {
        margin-bottom: 15px;

        p {
          font-size: 14px;
          margin-bottom: 10px;
        }

        li {
          font-size: 12px;
          margin-bottom: 7px;
          gap: 8px;

          img {
            width: 14px;
          }
        }
      }

      .view-all {
        font-size: 11px;
      }
    }
  }
}

/* Explore Page css end */
