/* ================================================
   KITCHEN STUDIO - Main Stylesheet
   Author: Kitchen Studio
   Version: 1.0
   ================================================ */

/* === Google Fonts Import === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* === CSS Variables === */
:root {
  --primary: #1a3a6b;
  --primary-dark: #0f2347;
  --primary-light: #2a5298;
  --accent: #4a90d9;
  --accent-light: #74b3f0;
  --accent-gold: #c9a84c;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --light-bg: #eef3fb;
  --text-dark: #1a1a2e;
  --text-body: #3a4a6b;
  --text-muted: #6b7da8;
  --border: #d1dcf0;
  --shadow-sm: 0 4px 15px rgba(26, 58, 107, 0.08);
  --shadow-md: 0 8px 30px rgba(26, 58, 107, 0.15);
  --shadow-lg: 0 20px 60px rgba(26, 58, 107, 0.2);
  --gradient-primary: linear-gradient(135deg, #1a3a6b 0%, #2a5298 50%, #4a90d9 100%);
  --gradient-dark: linear-gradient(135deg, #0f2347 0%, #1a3a6b 100%);
  --gradient-accent: linear-gradient(135deg, #4a90d9 0%, #2a5298 100%);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --radius-lg: 20px;
}

/* === Global Reset & Base === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

/* === Typography === */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  line-height: 1.3;
  font-weight: 700;
}

p {
  color: var(--text-body);
  line-height: 1.8;
}

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

img {
  max-width: 100%;
  height: auto;
}

/* === Selection === */
::selection {
  background: var(--accent);
  color: var(--white);
}

/* === Scrollbar === */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 10px;
}

/* ================================================
   PRELOADER
   ================================================ */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 3px;
  animation: fadeInUp 0.8s ease both;
}

.preloader-logo span {
  color: var(--accent-gold);
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.preloader-progress {
  height: 100%;
  background: var(--gradient-accent);
  border-radius: 10px;
  animation: loadProgress 1.5s ease forwards;
}

@keyframes loadProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* ================================================
   NAVIGATION
   ================================================ */
.navbar {
  padding: 0;
  background: transparent !important;
  transition: 0.3s ease;
  z-index: 1000;
}

.navbar.scrolled {
  background: rgba(15, 35, 71, 0.97) !important;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.navbar .container {
  position: relative;
}

.navbar-inner {
  padding: 18px 0;
  transition: 0.3s ease;
}

.navbar.scrolled .navbar-inner {
  padding: 12px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  max-width: calc(100% - 60px);
}

.brand-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--gradient-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(74, 144, 217, 0.4);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  white-space: nowrap;
}

.brand-tagline {
  font-size: 0.62rem;
  color: var(--accent-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  white-space: nowrap;
}

.navbar-toggler {
  border: none;
  padding: 6px 8px;
  color: white !important;
  border-radius: 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: invert(1);
}

.navbar-collapse {
  transition: 0.3s ease;
}

.navbar-nav .nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 8px 16px !important;
  position: relative;
  transition: 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--white) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 70%;
}

/* CTA Button in Nav */
.nav-cta {
  background: var(--gradient-accent);
  color: white !important;
  border-radius: 25px;
  padding: 10px 22px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(74, 144, 217, 0.4);
  margin-left: 8px;
  text-align: center;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 144, 217, 0.5);
}

/* =========================
   MOBILE NAV FIX
   ========================= */
@media (max-width: 991.98px) {
  .navbar {
    background: rgba(15, 35, 71, 0.97) !important;
    backdrop-filter: blur(20px);
  }

  .navbar-inner {
    padding: 14px 0;
  }

  .navbar-brand {
    max-width: calc(100% - 58px);
  }

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

  .brand-name {
    font-size: 1.08rem;
    letter-spacing: 0.4px;
  }

  .brand-tagline {
    font-size: 0.54rem;
    letter-spacing: 1.4px;
  }

  .navbar-collapse {
    background: rgba(15, 35, 71, 0.98);
    margin-top: 12px;
    padding: 14px 14px 16px;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  }

  .navbar-nav {
    align-items: stretch !important;
    gap: 4px;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-link {
    display: block;
    width: 100%;
    padding: 12px 14px !important;
    border-radius: 10px;
    font-size: 0.82rem;
    letter-spacing: 1px;
  }

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

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
    display: block;
    padding: 12px 18px !important;
    border-radius: 14px;
  }
}

@media (max-width: 575.98px) {
  .brand-name {
    font-size: 0.98rem;
  }

  .brand-tagline {
    font-size: 0.5rem;
    letter-spacing: 1.2px;
  }

  .brand-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
  }

  .navbar-toggler {
    padding: 4px 6px;
  }
}









/* ================================================
   HERO SECTION - RESPONSIVE FIXED VERSION
   ================================================ */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #07182c;
  padding-right: 10px;
  padding-left: 10px;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.5s ease, transform 6s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(5, 17, 33, 0.82) 0%,
    rgba(5, 17, 33, 0.62) 35%,
    rgba(5, 17, 33, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 0 150px;
}

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

.hero-text {
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f4d27a;
  border: 1px solid rgba(244, 210, 122, 0.25);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 22px;
  backdrop-filter: blur(12px);
  line-height: 1.5;
}

.hero-title {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.1;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  max-width: 680px;
}

.hero-title .highlight {
  color: #f4d27a;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin-bottom: 34px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-primary-custom,
.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 50px;
  padding: 14px 30px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.35s ease;
  min-height: 52px;
}

.btn-primary-custom {
  background: linear-gradient(135deg, #d4af37, #f4d27a);
  color: #0b1b2f;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.28);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  color: #0b1b2f;
}

.btn-outline-custom {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.btn-outline-custom:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
  color: #ffffff;
}

.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-card {
  position: relative;
  width: 100%;
  max-width: 470px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.hero-feature-image {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
}

.hero-image-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(8, 23, 43, 0.82);
  color: #fff;
  border: 1px solid rgba(244, 210, 122, 0.25);
  padding: 14px 18px;
  border-radius: 18px;
  backdrop-filter: blur(14px);
  min-width: 180px;
}

.hero-image-badge strong {
  display: block;
  font-size: 1.5rem;
  color: #f4d27a;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-image-badge span {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.82);
}

/* Stats */
.hero-stats {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: rgba(8, 20, 36, 0.55);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
  text-align: center;
  padding: 24px 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.stat-label {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  line-height: 1.4;
}

/* Scroll */
.scroll-indicator {
  position: absolute;
  right: 32px;
  bottom: 110px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-line {
  width: 2px;
  height: 54px;
  background: linear-gradient(to bottom, #f4d27a, transparent);
  animation: scrollLine 1.8s infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.35); transform-origin: top; }
  100% { transform: scaleY(1); transform-origin: top; }
}

/* Dots */
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 105px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.35);
  transition: 0.3s ease;
  cursor: pointer;
  padding: 0;
}

.hero-dot.active {
  width: 28px;
  background: #f4d27a;
}

/* ================================================
   TABLET
   ================================================ */
@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    display: block;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(5, 17, 33, 0.82) 0%,
      rgba(5, 17, 33, 0.68) 45%,
      rgba(5, 17, 33, 0.55) 100%
    );
  }

  .hero-content {
    padding: 110px 0 40px;
  }

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

  .hero-title {
    max-width: 100%;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-image-wrap {
    justify-content: flex-start;
    margin-top: 10px;
  }

  .hero-image-card {
    max-width: 420px;
  }

  .hero-feature-image {
    height: 400px;
  }

  .hero-stats {
    position: relative;
    margin-top: 32px;
  }

  .hero-dots {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    justify-content: center;
    margin-top: 20px;
  }

  .scroll-indicator {
    display: none;
  }
}

/* ================================================
   MOBILE
   ================================================ */
@media (max-width: 767px) {
  .hero-section {
    min-height: auto;
	width: 100%;
  }

  .hero-content {
    padding: 90px 0 25px;
  }

  .hero-badge {
    font-size: 0.68rem;
    letter-spacing: 1.2px;
    padding: 7px 14px;
    margin-bottom: 18px;
    max-width: 220px;
    line-height: 1.6;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.08;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    width: 100%;
    padding: 13px 20px;
    font-size: 0.78rem;
  }

  .hero-image-wrap {
    margin-top: 8px;
  }

  .hero-image-card {
    max-width: 100%;
    border-radius: 22px;
  }

  .hero-feature-image {
    height: 300px;
  }

  .hero-image-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    min-width: auto;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .hero-image-badge strong {
    font-size: 1.25rem;
  }

  .hero-image-badge span {
    font-size: 0.8rem;
  }

  .hero-stats {
    margin-top: 26px;
  }

  .stat-item {
    padding: 18px 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stat-item:nth-child(2n) {
    border-right: none;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.64rem;
    letter-spacing: 1px;
  }

  .hero-dots {
    margin-top: 16px;
    gap: 8px;
  }

  .hero-dot {
    width: 9px;
    height: 9px;
  }

  .hero-dot.active {
    width: 24px;
  }
}

/* ================================================
   SMALL MOBILE
   ================================================ */
@media (max-width: 480px) {
  .hero-content {
    padding: 80px 0 20px;
  }

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

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-feature-image {
    height: 260px;
  }

  .hero-badge {
    max-width: 190px;
    font-size: 0.64rem;
    padding: 6px 12px;
  }

  .stat-item {
    padding: 16px 8px;
  }

  .stat-number {
    font-size: 1.35rem;
  }

  .stat-label {
    font-size: 0.58rem;
  }
}















/* ================================================
   SECTION STYLES
   ================================================ */
section {
  padding: 30px 0;
}

.section-header {
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: var(--light-bg);
  color: var(--primary);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 1px solid var(--border);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-title .accent-word {
  color: var(--primary);
}

.section-divider {
  width: 60px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 4px;
  margin: 0 auto 20px;
}

.section-divider.left {
  margin: 0 0 20px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

.section-subtitle.left {
  margin: 0;
}

/* ================================================
   SERVICES CARDS
   ================================================ */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--border);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-overlay-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.service-card-body {
  padding: 28px;
}

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

.service-card-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.service-link:hover {
  color: var(--accent);
  gap: 12px;
}

/* ================================================
   WHY CHOOSE US
   ================================================ */
.why-section {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 144, 217, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.why-section .section-badge {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--accent-gold);
}

.why-section .section-title {
  color: var(--white);
}

.why-section .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.feature-card {
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  transition: var(--transition);
  height: 100%;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(74, 144, 217, 0.4);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(74, 144, 217, 0.3);
}

.feature-title {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.feature-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ================================================
   GALLERY / PORTFOLIO
   ================================================ */
.gallery-section {
  background: var(--off-white);
}

.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 22px;
  border-radius: 25px;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(26, 58, 107, 0.3);
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  margin-bottom: 4px;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 35, 71, 0.9) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-content h5 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery-overlay-content span {
  color: var(--accent-gold);
  font-size: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.gallery-zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: scale(1);
}


/* Gallery Item */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

/* Image & Video Same Style */
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/* Overlay (Only Inside Effect) */
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: rgba(0, 0, 0, 0.4);
}

/* Icon (Always Visible ya Optional) */
.gallery-zoom {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #fff;
  font-size: 20px;
}
/* ================================================
   PROCESS SECTION
   ================================================ */
.process-section {
  background: var(--white);
}

.process-step {
  text-align: center;
  padding: 24px;
  position: relative;
}

.process-step::after {
  content: '→';
  position: absolute;
  right: -15px;
  top: 40px;
  font-size: 1.5rem;
  color: var(--border);
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--light-bg);
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  transition: var(--transition);
  position: relative;
}

.process-step:hover .step-number {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  transform: scale(1.1);
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-text {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials-section {
  background: var(--off-white);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 32px;
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--light-bg);
  line-height: 1;
  z-index: 0;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-text {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}

.author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: 'Playfair Display', serif;
  margin-bottom: 2px;
}

.author-location {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
}

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-title {
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.btn-white {
  background: white;
  color: var(--primary-dark);
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  color: var(--primary-dark);
}

.btn-outline-white {
  background: transparent;
  color: white;
  padding: 13px 36px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
  transform: translateY(-3px);
}

/* ================================================
   ABOUT PAGE
   ================================================ */
.page-hero {
  min-height: 380px;
  background: var(--gradient-dark);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('kitchen1.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
}

.page-hero-title {
  color: white;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item a {
  color: var(--accent-gold);
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* About content */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-badge-float {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  min-width: 160px;
}

.about-badge-float .big-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.about-badge-float .big-num span {
  color: var(--accent-gold);
}

.about-badge-float .num-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.about-list li {
  padding: 8px 0;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
}

.about-list li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--light-bg);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Team */
.team-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: white;
  font-weight: 700;
}

.team-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.8rem;
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ================================================
   SERVICES PAGE
   ================================================ */
.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 40px;
  transition: var(--transition);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-md);
}

.service-detail-img {
  height: 300px;
  overflow: hidden;
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-detail-body {
  padding: 36px;
}

.service-detail-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-body);
}

.service-features-list li i {
  color: var(--accent);
  font-size: 0.8rem;
}

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-control,
.form-select {
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-body);
  background: var(--off-white);
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(74, 144, 217, 0.1);
  background: white;
  outline: none;
}

.contact-info-card {
  background: var(--gradient-dark);
  border-radius: var(--radius-lg);
  padding: 44px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(74, 144, 217, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-info-title {
  color: white;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-info-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin-bottom: 36px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(74, 144, 217, 0.2);
  border: 1px solid rgba(74, 144, 217, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.72rem;
  color: var(--accent-gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-info-value {
  color: white;
  font-size: 0.9rem;
  line-height: 1.6;
}

.map-placeholder {
  border-radius: var(--radius);
  overflow: hidden;
  height: 350px;
  background: var(--light-bg);
  position: relative;
  margin-top: 40px;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius);
}

.social-links-contact {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gradient-accent);
  border-color: transparent;
  color: white;
  transform: translateY(-3px);
}

.btn-submit {
  background: var(--gradient-primary);
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  border: none;
  box-shadow: 0 8px 25px rgba(26, 58, 107, 0.35);
  transition: var(--transition);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(26, 58, 107, 0.45);
}

/* ================================================
   FOOTER
   ================================================ */
footer {
  background: var(--primary-dark);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
}

.footer-brand {
  margin-bottom: 24px;
}

.footer-brand .brand-name {
  font-size: 1.5rem;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.footer-heading {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.87rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 6px;
}

.footer-links a i {
  font-size: 0.6rem;
  color: var(--accent);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.footer-contact-icon {
  color: var(--accent);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-text {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-contact-text a {
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact-text a:hover {
  color: var(--accent-gold);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gradient-accent);
  border-color: transparent;
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
}

.footer-copyright span {
  color: var(--accent-gold);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--accent-gold);
}

/* ================================================
   BACK TO TOP BUTTON
   ================================================ */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 {
  transition-delay: 0.1s;
}

.animate-delay-2 {
  transition-delay: 0.2s;
}

.animate-delay-3 {
  transition-delay: 0.3s;
}

.animate-delay-4 {
  transition-delay: 0.4s;
}

.animate-delay-5 {
  transition-delay: 0.5s;
}

/* ================================================
   LIGHTBOX
   ================================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.lightbox-overlay.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 991px) {
  section {
    padding: 70px 0;
  }

  .about-badge-float {
    left: 10px;
  }

  .process-step::after {
    display: none;
  }

  .hero-stats {
    position: relative;
  }

  .scroll-indicator {
    display: none;
  }

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

@media (max-width: 767px) {
  section {
    padding: 60px 0;
	width:94%;
	margin:0 auto
  }

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

  .stat-item {
    padding: 16px 10px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .contact-info-card {
    padding: 28px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .about-badge-float {
    position: relative;
    left: 0;
    margin-top: 20px;
  }
}

@media (max-width: 575px) {
  .hero-btns {
    flex-direction: column;
  }

  .hero-btns a,
  .hero-btns button {
    width: 100%;
    justify-content: center;
  }

  .gallery-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 6px 14px;
    font-size: 0.75rem;
  }
}

#callme {
        position: fixed;
        right: 10px;
        bottom: 190px;
        width: 70px;
        height: 70px;
        cursor: pointer;
      
        z-index: 99990;
    }
    #callme #callmeMain {
        -moz-border-radius: 50% !important;
        -webkit-border-radius: 50% !important;
        border-radius: 50% !important;
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        background-color: rgb(40 167 69);
        width: 60px;
        height: 60px;
        -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
        -moz-animation: zcwmini2 1.5s 0s ease-out infinite;
        animation: zcwmini2 1.5s 0s ease-out infinite;
    }
    #callme #callmeMain:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: -6px;
        left: -6px;
        background-image: url(https://ss.zadarma.com/callbackWidget/images/mini.png);
        background-repeat: no-repeat;
        background-position: center center;
        -webkit-animation: zcwphone2 1.5s linear infinite;
        -moz-animation: zcwphone2 1.5s linear infinite;
        animation: zcwphone2 1.5s linear infinite;
    }
    @-webkit-keyframes zcwphone {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-moz-keyframes zcwphone {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @keyframes zcwphone {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-webkit-keyframes zcwphone2 {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-moz-keyframes zcwphone2 {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @keyframes zcwphone2 {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-webkit-keyframes zcwmini {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @-moz-keyframes zcwmini {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @keyframes zcwmini {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @-webkit-keyframes zcwmini2 {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @-moz-keyframes zcwmini2 {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @keyframes zcwmini2 {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }