/*
Theme Name: sndzamindarclub
Author: Created by Sandeep Soni (Server Architecture Engineer since 2011)
Description: Custom theme for Zamindar Club
Version: 1.0
Project Timeline: 28 Jan to Present
*/

/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 300;
  line-height: 1.2;
}

p {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.6;
}

body {
  background: #efefef;
  overflow-x: hidden;
}

/* ================= HEADER ================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: #efefef;
  padding: 25px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
}

.logo {
  font-size: 42px;
  font-weight: 700;
  color: #4b2e16;
  letter-spacing: 2px;
}

.logo span {
  font-size: 12px;
  display: block;
  letter-spacing: 4px;
  margin-top: -10px;
}

nav {
  display: flex;
  align-items: center;
  gap: 50px;
}

nav a {
  text-decoration: none;
  color: #777;
  font-weight: 500;
  font-size: 18px;
  padding: 12px 28px;
  border-radius: 14px;
  transition: 0.3s;
}

nav a.active,
nav a:hover {
  background: #efefef;
  box-shadow: 8px 8px 16px #d1d1d1, -8px -8px 16px #ffffff;
  color: #4b2e16;
}

.menu-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #efefef;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 8px 8px 16px #d1d1d1, -8px -8px 16px #ffffff;
  cursor: pointer;
  transition: 0.3s;
}

.menu-btn div {
  width: 20px;
  height: 2px;
  background: #333;
  position: relative;
}

.menu-btn div::before,
.menu-btn div::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: #333;
  left: 0;
}

.menu-btn div::before {
  top: -6px;
}

.menu-btn div::after {
  top: 6px;
}

.menu-btn div,
.menu-btn div::before,
.menu-btn div::after {
  transition: 0.3s;
}

@media(max-width:992px) {
  header {
    padding: 20px 40px;
  }
}

@media(min-width:993px) {

  .menu-btn,
  .menu-toggle {
    display: none;
  }
}

.hero {
  position: relative;
  height: 100vh;
  background: url('images/banner1.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1));
  top: 0;
  left: 0;
}

.hero-content {
  position: relative;
  color: #fff;
  top: -40px
}

.hero-content h1 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.5;
  margin-left: 0
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-btn {
  text-decoration: none;
  display: inline-block;
  padding: 18px 40px;
  border-radius: 50px;
  background: #efefef;
  color: #4b2e16;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  border: none;
  font-size: 16px;
}

.hero-btn:hover {
  box-shadow: inset 6px 6px 12px #d1d1d1, inset -6px -6px 12px #ffffff;
  color: #b88a44;
}

.search-wrapper {
  display: none;
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  background: #efefef;
  padding: 40px 50px;
  border-radius: 30px;
}

.search-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.search-input {
  flex: 1;
  background: #efefef;
  padding: 18px 25px;
  border-radius: 40px;
  box-shadow: inset 8px 8px 15px #d1d1d1, inset -8px -8px 15px #ffffff;
  border: none;
  outline: none;
  font-size: 16px;
  color: #666;
}

.counter {
  display: flex;
  align-items: center;
  gap: 20px;
}

.counter label {
  font-weight: 600;
  color: #444;
}

.counter-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.counter button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: #efefef;
  box-shadow: 8px 8px 16px #d1d1d1, -8px -8px 16px #ffffff;
  font-size: 20px;
  cursor: pointer;
}

.counter span {
  font-size: 20px;
  font-weight: 600;
}

.toggle-group {
  margin-top: 30px;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  align-items: center;
}

.toggle {
  display: flex;
  align-items: center;
  gap: 15px;
}

.switch {
  width: 60px;
  height: 30px;
  border-radius: 30px;
  background: #efefef;
  position: relative;
  box-shadow: inset 6px 6px 12px #d1d1d1, inset -6px -6px 12px #ffffff;
  cursor: pointer;
}

.switch::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background: #efefef;
  border-radius: 50%;
  top: 3px;
  left: 4px;
  transition: 0.3s;
  box-shadow: 4px 4px 8px #d1d1d1, -4px -4px 8px #ffffff;
}

.switch.active::after {
  left: 32px;
  background: #b88a44;
}

.search-btn {
  margin-left: auto;
  width: 100px;
  height: 80px;
  border-radius: 30px;
  background: #efefef;
  box-shadow: 8px 8px 16px #d1d1d1, -8px -8px 16px #ffffff;
  border: none;
  cursor: pointer;
}

@media(max-width:992px) {
  .hero {
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .search-wrapper {
    position: relative;
    bottom: auto;
    margin-top: 30px;
    transform: none;
    width: 95%;
  }

  .search-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-btn {
    width: 100%;
    height: 60px;
    margin-top: 20px;
  }
}

/* ================= SECTION 12 (What We Do) ================= */
#sec-12 .services {
  padding: 100px 5%;
  text-align: center;
}

#sec-12 .services h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 80px;
  color: #222;
}

#sec-12 .service-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

#sec-12 .service {
  flex: 1;
  min-width: 280px;
  transition: .5s;
  opacity: .5;
  transform: scale(.9);
}

#sec-12 .service.active {
  opacity: 1;
  transform: scale(1);
}

#sec-12 .circle {
  width: 220px;
  height: 220px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: #efefef;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 15px 15px 30px #d1d1d1, -15px -15px 30px #ffffff;
  transition: .5s;
}

#sec-12 .service.active .circle {
  box-shadow: inset 8px 8px 20px #d1d1d1, inset -8px -8px 20px #ffffff;
}

#sec-12 .circle svg {
  width: 60px;
  height: 60px;
  stroke: #1abc9c;
}

#sec-12 .service h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

#sec-12 .service p {
  color: #666;
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto;
}

@media(max-width:992px) {
  #sec-12 .service-container {
    justify-content: center;
  }
}

@media(max-width:768px) {
  #sec-12 .services h2 {
    text-align: center;
    font-size: 32px;
  }
}

/* ================= SECTION 3 (Infinite Slider) ================= */
#sec-3 .developer-section {
  padding: 120px 60px;
  position: relative;
}

#sec-3 .slider {
  position: relative;
}

#sec-3 .slide-track {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: scroll 25s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

#sec-3 .slider:hover .slide-track {
  animation-play-state: paused;
}

#sec-3 .card {
  width: 350px;
  height: 450px;
  background: #efefef;

  border-radius: 35px;
  box-shadow: 20px 20px 40px #d1d1d1, -20px -20px 40px #ffffff;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

#sec-3 .card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  margin-bottom: 15px;
}

#sec-3 .card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 5px;
  line-height: 1.3;
  padding: 0 20px;
}

#sec-3 .card p {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
  margin-bottom: 5px;
  padding: 0 20px;
}

#sec-3 .projects {
  color: #b88a44;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 10px;
}

#sec-3 .profile-btn {
  padding: 12px 20px;
  border-radius: 50px;
  background: #efefef;
  box-shadow: 6px 6px 12px #d1d1d1, -6px -6px 12px #ffffff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #4b2e16;
  text-align: center;
  margin: 20px;
}

#sec-3 .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: #efefef;
  box-shadow: 8px 8px 16px #d1d1d1, -8px -8px 16px #ffffff;
  cursor: pointer;
  opacity: 0;
  transition: 0.3s;
  font-size: 22px;
}

#sec-3 .slider:hover .nav-btn {
  opacity: 1;
}

#sec-3 .prev {
  left: -30px;
}

#sec-3 .next {
  right: -30px;
}

@media(max-width:768px) {
  #sec-3 .developer-section {
    padding: 80px 20px;
  }

  #sec-3 .card {
    width: 280px;
    height: 280px;
    padding: 20px;
  }

  #sec-3 .card img {
    height: 100px;
  }

  #sec-3 .card h3 {
    font-size: 16px;
  }

  #sec-3 .card p {
    font-size: 12px;
  }
}

@media(max-width:480px) {
  #sec-3 .card {
    width: 260px;
    height: 260px;
  }
}

/* ================= SECTION 4 (Featured) ================= */
#sec-4 .featured-section {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #111;
}

#sec-4 .featured-container {
  display: flex;
  height: 100%;
}

#sec-4 .featured-sidebar {
  width: 22%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#sec-4 .sidebar-item {
  padding: 40px;
  color: #aaa;
  font-size: 22px;
  cursor: pointer;
  transition: 0.4s;
}

#sec-4 .sidebar-item.active,
#sec-4 .sidebar-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

#sec-4 .featured-slider {
  position: relative;
  width: 78%;
  overflow: hidden;
}

#sec-4 .slides {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}

#sec-4 .slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

#sec-4 .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#sec-4 .slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

#sec-4 .slide-content {
  position: absolute;
  top: 25%;
  left: 8%;
  color: #fff;
  z-index: 2;
}

#sec-4 .slide-content h2 {
  font-size: 48px;
  margin-bottom: 10px;
}

#sec-4 .slide-content p {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ddd;
}

#sec-4 .slide-content h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

#sec-4 .tags span {
  border: 1px solid #fff;
  padding: 8px 18px;
  border-radius: 25px;
  margin-right: 10px;
  font-size: 14px;
}

#sec-4 .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 15px 20px;
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  transition: 0.3s;
}

#sec-4 .prev {
  left: 20px;
}

#sec-4 .next {
  right: 20px;
}

#sec-4 .featured-slider:hover .nav {
  opacity: 1;
}

@media(max-width:992px) {
  #sec-4 .featured-sidebar {
    display: none;
  }

  #sec-4 .featured-slider {
    width: 100%;
  }

  #sec-4 .slide-content h2 {
    font-size: 32px;
  }
}

/* ================= SECTION 6 (Process 2) ================= */
#sec-6 .process {
  padding: 100px 5%;
  background: #f3f3f3;
}

#sec-6 .process-header h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
  color: #222;
}

#sec-6 .process-header p {
  max-width: 600px;
  color: #666;
  font-size: 18px;
  line-height: 1.6;
}

#sec-6 .process-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
  flex-wrap: nowrap;
  gap: 20px;
}

#sec-6 .step {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

#sec-6 .circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sec-6 .circle::before,
#sec-6 .circle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

#sec-6 .circle::before {
  border: 3px solid #444;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(45deg);
}

#sec-6 .circle::after {
  border: 3px dotted #aaa;
  border-bottom-color: transparent;
  border-right-color: transparent;
  transform: rotate(45deg);
}

#sec-6 .number {
  position: absolute;
  top: -25px;
  left: 40px;
  width: 70px;
  height: 70px;
  background: #e9e9e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #444;
  box-shadow: 10px 10px 20px 0px #00000026 inset, -10px -10px 20px 0px #FFFFFF inset;
  z-index: 10;
}

#sec-6 .content {
  text-align: center;
  max-width: 180px;
}

#sec-6 .content .icon {
  font-size: 28px;
  margin-bottom: 10px;
  color: #b8892c;
}

#sec-6 .content h4 {
  font-size: 20px;
  margin-bottom: 6px;
}

#sec-6 .content p {
  font-size: 14px;
  color: #666;
}

@media(max-width:1200px) {
  #sec-6 .circle {
    width: 240px;
    height: 240px;
  }
}

@media(max-width:992px) {
  #sec-6 .process-steps {
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }

  #sec-6 .step {
    flex: 0 0 45%;
  }
}

@media(max-width:600px) {
  #sec-6 .process-header h2 {
    font-size: 32px;
  }

  #sec-6 .step {
    flex: 0 0 100%;
  }

  #sec-6 .circle {
    width: 220px;
    height: 220px;
  }
}

/* ================= SECTION 10 (Localities Grid/Slider) ================= */
#sec-10 .localities {
  padding: 80px 5%;
}

#sec-10 .localities h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

#sec-10 .localities p {
  color: #777;
  margin-bottom: 60px;
}

#sec-10 .slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

#sec-10 .slider {
  display: flex;
  align-items: center;
  transition: transform .6s ease;
}

#sec-10 .card {
  flex: 0 0 33.33%;
  padding: 20px;
  transition: .5s;
  cursor: pointer;
}

#sec-10 .card-inner {
  height: 420px;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  transform: scale(.85);
  opacity: .6;
  transition: .5s;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .1);
}

#sec-10 .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#sec-10 .card-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: white;
}

#sec-10 .card-content h3 {
  font-size: 26px;
}

#sec-10 .card-content span {
  font-size: 14px;
}

#sec-10 .card.active .card-inner {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .3);
}

#sec-10 .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
  cursor: pointer;
  opacity: 0;
  transition: .3s;
  z-index: 10;
}

#sec-10 .slider-wrapper:hover .nav {
  opacity: 1;
}

#sec-10 .prev {
  left: 10px;
}

#sec-10 .next {
  right: 10px;
}

#sec-10 .modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
}

#sec-10 .modal-content {
  background: white;
  width: 90%;
  max-width: 1000px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

#sec-10 .modal-images {
  flex: 1;
  min-width: 300px;
}

#sec-10 .modal-images img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

#sec-10 .thumbs {
  display: flex;
  gap: 10px;
  padding: 10px;
}

#sec-10 .thumbs img {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  cursor: pointer;
}

#sec-10 .modal-info {
  flex: 1;
  padding: 40px;
}

#sec-10 .modal-info h3 {
  margin-bottom: 20px;
}

#sec-10 .close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 32px;
  color: white;
  cursor: pointer;
}

@media(max-width:992px) {
  #sec-10 .card {
    flex: 0 0 50%;
  }
}

@media(max-width:768px) {
  #sec-10 .card {
    flex: 0 0 100%;
  }

  #sec-10 .card-inner {
    height: 350px;
  }
}

/* ================= SECTION 11 (About Us) ================= */
#sec-11 .about-section {
  display: flex;
  min-height: 100vh;
}

#sec-11 .about-left {
  flex: 1;
  padding: 100px 8%;
  color: #fff;
  background: linear-gradient(135deg, #2b2b2b, #1c1c1c);
  position: relative;
}

#sec-11 .about-left h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 50px;
}

#sec-11 .about-left h3 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 20px;
}

#sec-11 .about-left p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 50px;
  max-width: 500px;
}

#sec-11 .accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 0;
}

#sec-11 .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
}

#sec-11 .accordion-header span {
  font-size: 22px;
  transition: .3s;
}

#sec-11 .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  color: #bbb;
  padding-right: 40px;
}

#sec-11 .accordion-item.active .accordion-content {
  max-height: 200px;
  margin-top: 15px;
}

#sec-11 .accordion-item.active .accordion-header span {
  transform: rotate(180deg);
}

/* Conflicting social styles removed */

#sec-11 .about-right {
  flex: 1;
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') center/cover no-repeat;
  filter: grayscale(100%) brightness(1.1);
}

@media(max-width:992px) {
  #sec-11 .about-section {
    flex-direction: column;
  }

  #sec-11 .about-right {
    height: 400px;
  }

  #sec-11 .about-left {
    padding: 60px 8%;
  }

  #sec-11 .about-left h2 {
    font-size: 36px;
  }
}

/* HERO MODAL FORM */
.hero-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.hero-modal-content {
  background: #efefef;
  padding: 40px;
  border-radius: 30px;
  width: 100%;
  max-width: 450px;
  position: relative;
  box-shadow: 20px 20px 60px #111;
}

.hero-modal-content h2 {
  margin-bottom: 25px;
  color: #4b2e16;
  text-align: center;
}

.hero-modal-content .form-group {
  margin-bottom: 20px;
}

.hero-modal-content input {
  width: 100%;
  padding: 15px 20px;
  border-radius: 15px;
  border: none;
  background: #efefef;
  box-shadow: inset 6px 6px 12px #d1d1d1, inset -6px -6px 12px #ffffff;
  outline: none;
}

.hero-modal-content .submit-btn {
  width: 100%;
  padding: 15px;
  border-radius: 15px;
  border: none;
  background: #4b2e16;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

.hero-modal-content .submit-btn:hover {
  background: #b88a44;
}

.close-hero-modal {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 24px;
  cursor: pointer;
  color: #777;
}

/* logoCard Section STYLES */
.logo-section {
  padding: 60px 20px;
}

.logo-grid {
  max-width: 1170px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.logo-card {
  background: #f8f8f8;
  border-radius: 18px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

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

.logo-antilla {
  text-align: center;
  color: #1f3c4d;
}

.logo-antilla .top {
  font-size: 26px;
  letter-spacing: 2px;
}

.logo-antilla .main {
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 2px;
}

.logo-antilla .sub {
  font-size: 14px;
  letter-spacing: 3px;
}

.logo-lodha {
  font-size: 36px;
  font-weight: bold;
  color: #a07c1a;
  display: flex;
  align-items: center;
  gap: 15px;
}

.menu-icon {
  font-size: 22px;
  color: #888;
}

@media (max-width: 768px) {
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .logo-card {
    height: 150px;
  }
}

/* Responsive Menu Styles - Luxury Makeover */
@media (max-width: 992px) {
  header {
    padding: 15px 5%;
    height: auto;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }

  #main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 40px;
    z-index: 10000;
    transition: 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.1);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
  }

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

  #main-nav a.nav-item {
    font-size: 28px;
    font-weight: 300;
    margin: 15px 0;
    color: #2b2b2b !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
    padding: 0;
    background: transparent !important;
    box-shadow: none !important;
  }

  #main-nav a.nav-item:hover,
  #main-nav a.nav-item.active {
    color: #b88a44 !important;
    padding-left: 15px;
  }

  .close-menu {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 45px;
    line-height: 1;
    color: #2b2b2b;
    cursor: pointer;
    font-weight: 200;
    transition: 0.3s;
  }

  .close-menu:hover {
    transform: rotate(90deg);
    color: #b88a44;
  }

  .menu-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 11000;
    padding: 10px;
    width: 44px;
    height: 44px;
  }

  .menu-toggle .bar {
    width: 28px;
    height: 2px;
    background: #2b2b2b;
    margin: 3px 0;
    transition: 0.4s;
  }

  .header-right .contact-btn {
    display: none;
  }
}

@media (min-width: 993px) {

  .menu-toggle,
  .close-menu {
    display: none;
  }
}

/* Nav Dropdown Styling */
.nav-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  display: none;
  z-index: 1000;
  padding: 10px 0;
  border: 1px solid #eee;
}

.nav-dropdown a {
  display: block;
  padding: 12px 20px;
  color: #333 !important;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
  background: transparent !important;
}

.nav-dropdown a:hover {
  background: #fcf8f2 !important;
  color: var(--snd-accent) !important;
}

.nav-dropdown-wrapper:hover .nav-dropdown {
  display: block;
  animation: navSlideDown 0.3s forwards;
}

@keyframes navSlideDown {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@media (max-width: 992px) {
  .nav-dropdown {
    position: static;
    width: 100%;
    box-shadow: none;
    display: block;
    background: transparent;
    border: none;
  }

  .nav-dropdown a {
    padding-left: 30px;
    color: #aaa !important;
    font-size: 16px;
  }
}

/* ================= BUILDER CLEANUP ================= */
/* Completely hides SND Builder internal structural controls & guides on live pages */
body:not(.snd-builder-active) .section-settings,
body:not(.snd-builder-active) .w-del,
body:not(.snd-builder-active) .add-sec-trigger {
  display: none !important;
}

body:not(.snd-builder-active) .snd-col {
  border: none !important;
  margin: 0;
  outline: none !important;
  background: transparent !important;
}

body:not(.snd-builder-active) .adv-focused,
body:not(.snd-builder-active) .focused {
  outline: none !important;
  background: transparent !important;
}

body:not(.snd-builder-active) .w-bx:hover {
  outline: none !important;
}

body:not(.snd-builder-active) .snd-row {
  outline: none !important;
}

/* ================= SECTION 3 CUSTOM ================= */
#sec-3 .header h2 {
  font-family: 'Montserrat', sans-serif !important;
}

/* ================= ABOUT SOCIAL ================= */
.about-section .social {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.about-section .social a {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3s;
  font-size: 20px;
}

.about-section .social a:hover {
  background: #b88a44;
  transform: translateY(-5px);
}

/* ================= SECTION 3 CUSTOM ================= */
.slide-track.no-slide {
  display: flex !important;
  justify-content: center !important;
  gap: 20px !important;
  transform: none !important;
  padding-bottom: 40px;
  width: 100% !important;
  max-width: 1200px;
  margin: 0 auto;
}

.slide-track.no-slide .card {
  width: calc(25% - 15px) !important;
  flex: 0 0 calc(25% - 15px);
  margin: 0 !important;
}

@media (max-width: 992px) {
  .slide-track.no-slide .card {
    width: calc(50% - 10px) !important;
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 600px) {
  .slide-track.no-slide .card {
    width: 100% !important;
    flex: 0 0 100%;
  }
}