*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --off-white: #f7f6f3;
  --light: #ededeb;
  --mid: #c8c4be;
  --dark: #1a1a18;
  --black: #0d0d0b;
  --accent: #b8a98a;
  --accent-dark: #8c7d62;
  --serif: "Cormorant Garamond", serif;
  --sans: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--dark);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.18s ease;
}
.cursor-ring.expand {
  width: 56px;
  height: 56px;
  border-color: var(--dark);
  background: rgba(184, 169, 138, 0.07);
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 60px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.3s ease,
    padding 0.3s ease;
}
nav.scrolled {
  border-color: var(--light);
  padding: 18px 60px;
}
.nav-logo {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.35em;
  color: var(--black);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-links a:hover {
  color: var(--accent-dark);
}
.nav-links a:hover::after {
  width: 100%;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 60px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.hero-content {
  z-index: 2;
}
.hero-bg-text {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 300;
  color: var(--light);
  letter-spacing: -0.02em;
  user-select: none;
  line-height: 1;
}
.hero-tag {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 780px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.4s forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent-dark);
}
.hero-sub {
  margin-top: 28px;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: #fff;
  max-width: 420px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.6s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mid);
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}
.hero-scroll-line {
  width: 48px;
  height: 1px;
  background: var(--mid);
  animation: lineGrow 1.2s ease 1.2s forwards;
  transform-origin: left;
  transform: scaleX(0);
}

@keyframes lineGrow {
  to {
    transform: scaleX(1);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SECTION WRAPPER */
section {
  padding: 60px 60px;
}
.section-label {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  color: var(--accent-dark);
}
.section-desc {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #888;
  line-height: 2;
  margin-bottom: 60px;
}

/* ===== AD CAMPAIGNS ===== */
#campaigns {
  background: var(--white);
}
.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 2px;
}
.campaign-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--light);
  cursor: none;
}
.campaign-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}
.campaign-card:hover img {
  transform: scale(1.06);
}
.campaign-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 13, 11, 0.75) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.campaign-card:hover .campaign-overlay {
  opacity: 1;
}
.campaign-brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
  padding: 6px;
  margin-bottom: 10px;
}
.campaign-client {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}
.campaign-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: white;
  margin-top: 4px;
}
.cmp-design {
  text-decoration: none;
}
/* ADD CARD */
.add-card {
  aspect-ratio: 4/3;
  border: 1.5px dashed var(--mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  background: var(--off-white);
  transition:
    border-color 0.3s,
    background 0.3s;
}
.add-card:hover {
  border-color: var(--accent);
  background: white;
}
.add-card span {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mid);
}
.add-card svg {
  opacity: 0.35;
}
.add-card:hover svg {
  opacity: 0.7;
}

/* ===== VIDEO SECTIONS COMMON ===== */
.video-section {
  background: var(--off-white);
}
.video-section:nth-child(even) {
  background: var(--white);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.video-card {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  cursor: none;
  border-radius: 2px;
}
.video-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s ease,
    opacity 0.3s ease;
}
.video-card:hover .video-thumb {
  transform: scale(1.04);
  opacity: 0.7;
}
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.play-circle {
  width: 60px;
  height: 60px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s;
  background: rgba(255, 255, 255, 0.08);
}
.video-card:hover .play-circle {
  transform: scale(1.12);
  background: rgba(184, 169, 138, 0.25);
  border-color: var(--accent);
}
.play-circle svg {
  margin-left: 4px;
}
.video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 16px;
  background: linear-gradient(to top, rgba(13, 13, 11, 0.85), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.35s,
    transform 0.35s;
}
.video-card:hover .video-info {
  opacity: 1;
  transform: translateY(0);
}
.video-client {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}
.video-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: white;
  font-weight: 400;
  margin-top: 3px;
}

/* VIDEO MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 11, 0.93);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.modal-overlay.active {
  display: flex;
}
.modal-inner {
  position: relative;
  width: 90vw;
  max-width: 1100px;
  aspect-ratio: 16/9;
}
.modal-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 2px;
}
.modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.modal-close:hover {
  opacity: 1;
}

/* ===== DRONE ===== */
#drone {
  background: var(--black);
}
#drone .section-label {
  color: var(--accent);
}
#drone .section-title {
  color: var(--off-white);
}
#drone .section-desc {
  color: rgba(255, 255, 255, 0.4);
}
#drone .section-divider {
  background: var(--accent);
}
#drone .video-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
}
#drone .add-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}
#drone .add-card span {
  color: rgba(255, 255, 255, 0.3);
}
#drone .add-card:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}
#drone .video-grid {
  gap: 20px;
}

/* ===== PHOTOGRAPHY ===== */
#photography {
  background: var(--white);
}
.photo-masonry {
  columns: 3;
  column-gap: 12px;
}
@media (max-width: 900px) {
  .photo-masonry {
    columns: 2;
  }
}
@media (max-width: 560px) {
  .photo-masonry {
    columns: 1;
  }
}
.photo-item {
  break-inside: avoid;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  cursor: none;
}
.photo-item img {
  width: 100%;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.photo-item:hover img {
  transform: scale(1.04);
}
.photo-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 13, 11, 0.65) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.photo-item:hover .photo-item-overlay {
  opacity: 1;
}
.photo-caption {
  font-family: var(--serif);
  font-size: 1rem;
  color: white;
  font-style: italic;
}

/* Photo lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 11, 0.96);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.lightbox.active {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
}
.lightbox-close {
  position: absolute;
  top: 32px;
  right: 40px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox-close:hover {
  opacity: 1;
}

/* ===== CONTACT / FOOTER ===== */
footer {
  background: var(--black);
  padding: 100px 60px 60px;
  color: white;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 40px;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.35em;
  color: white;
}
.footer-tagline {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--accent);
  margin-top: 8px;
  font-weight: 300;
}
.footer-contact h3 {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-contact a {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: white;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.54);
  text-transform: uppercase;
}
.footer-nav {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer-nav a {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.54);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: var(--accent);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HOW TO ADD CONTENT GUIDE ===== */
.guide-banner {
  background: #fffdf7;
  border-left: 3px solid var(--accent);
  padding: 20px 28px;
  margin-bottom: 48px;
  border-radius: 0 2px 2px 0;
}
.guide-banner h4 {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 8px;
}
.guide-banner p {
  font-size: 0.72rem;
  color: #888;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.guide-banner code {
  background: var(--light);
  padding: 2px 7px;
  border-radius: 3px;
  font-size: 0.7rem;
  color: var(--accent-dark);
}

/* Whatsapp */
.sticky-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 12px;
  z-index: 1000;
  transition: transform 0.3s ease;
}
.set-whatsapp {
  height: 40px;
  width: 40px;
}

/* Phone */
.sticky-phone {
  position: fixed;
  right: 18px;
  bottom: 65px;
  z-index: 1000;
  transition: transform 0.3s ease;
}
.set-phone {
  height: 35px;
  width: 35px;
}

/* Header Menu */
.dropdown {
  position: relative;
}

/* Submenu hidden by default */
.submenu {
  position: absolute;
  top: 120%;
  left: 0;
  list-style: none;
  padding: 10px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

/* Submenu links */
.submenu li a {
  display: block;
  padding: 8px 3px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
}

/* Show submenu on hover */
.dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  background-color: #fff;
  padding-left: 12px;
}

/* Media Section*/
.reel-ration {
  aspect-ratio: 9/16;
}

.long-content {
  aspect-ratio: 16/9;
}

.post-content {
  aspect-ratio: 3/4;
}

.video-filter {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 22px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.filter-btn.active {
  background: black;
  color: white;
}
#long-content,
#post-content {
  display: none;
}

/* Contact us Page */
.contact-section {
  padding: 120px 60px;
  background: #fafafa;
}

.contact-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 70px;
}

.contact-info-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  max-width: 800px;
  margin: auto;
}

.contact-item h4 {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-item a,
p {
  font-size: 15px;
  color: #444;
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  text-decoration: none;
  font-size: 14px;
  color: #333;
}

/* Campaign Page */
.campaign-section {
  padding: 120px 60px;
  background: #fafafa;
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.campaign-item {
  overflow: hidden;
  cursor: pointer;
}

.campaign-item img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.campaign-item:hover img {
  transform: scale(1.05);
}

.campaign-info {
  margin-top: 8px;
}

.campaign-client {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #777;
}

.campaign-info h4 {
  font-size: 12px;
  margin-top: 5px;
}
.p-width {
  margin: 0px -211px;
}

.b-radius {
  border-radius: 10px;
}
/* Reels Page */
.b-radius-20 {
  border-radius: 20px;
}

/* Design page */
.cinematic-section {
  padding-top: 60px;
}

.cinematic-container {
  max-width: 1200px;
  margin: auto;
}

.cinematic-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

.cinematic-row.reverse {
  direction: rtl;
}

.cinematic-row.reverse .cinematic-text {
  direction: ltr;
}

.cinematic-text {
  max-width: 520px;
}

.cinematic-desc {
  margin-top: 15px;
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

.cinematic-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 6px;
}

.justify {
  justify-content: center !important;
}

.center {
  text-align: center;
}
.pt-120 {
  padding-top: 120px;
}

/* Photography Page */
.photo-gallery {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 25px;
}

.photo-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-item:hover img {
  transform: scale(1.08);
}

/* large image */
.photo-item.large {
  grid-column: span 2;
}

/* tall image */
.photo-item.tall {
  grid-row: span 2;
}

.photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.photo-item:hover .photo-overlay {
  opacity: 1;
}

.photo-overlay p {
  font-size: 14px;
  letter-spacing: 0.05em;
}

/* View More Button */
.view-more-container {
  text-align: center;
  margin-top: 50px;
}

.view-more-btn {
  padding: 12px 30px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000;
  border: 1px solid #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.view-more-btn:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

.drone-more-btn {
  padding: 12px 30px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ccc;
  border: 1px solid #ffffff4e;
  text-decoration: none;
  transition: 0.3s;
}

.drone-more-btn:hover {
  background: #ccc;
  color: #000;
  border-color: #ccc;
}

/* Loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* TEXT */
.loader-text {
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: #fff;
  display: flex;
  gap: 20px;
}

/* ANIMATION */
.loader-text span {
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.loader-text span:nth-child(1) {
  animation-delay: 0.2s;
}

.loader-text span:nth-child(2) {
  animation-delay: 0.6s;
}

/* FADE UP */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cine-btm {
  padding-bottom: 0px;
}

.index-cine {
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 16px;
}

/* Toggle Menu RP */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  position: relative;
  z-index: 1100;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #000;
  display: block;
  transition: 0.3s;
}
.nav-contact {
  display: none;
}
.justify {
  text-align: justify;
}

.mb-0 {
  margin-bottom: 0px;
}

.logo-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 90px; /* spacing between circles */
  flex-wrap: wrap;
  padding: 20px 0;
}

.logo-circle {
  width: 180px; /* control size */
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hover effect */
.logo-circle:hover {
  transform: scale(1.1);
}

.section-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap; /* for responsive */
}

.fs-12 {
  font-size: 17px;
}

.black {
  color: #000;
}
.pb-22 {
  padding-bottom: 22px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-80 {
  margin-top: 80px;
}

/* navbar */
.zed-link-btn {
  background-color: #ddd;
  padding: 8px 14px;
  border-radius: 30px;
  transition: 0.3s ease;
}

/* Community page */
.zed-btn {
  padding: 30px 120px;
  font-size: 32px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000;
  border: 1px solid #ccc;
  text-decoration: none;
  transition: 0.3s;
  border-radius: 24px;
}
.zed-btn:hover {
  border-color: #8c7d62;
  background-color: #000;
  color: #fff;
}
/* tab visibility */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.mb-30 {
  margin-bottom: 30px;
}

.filter-zed-btn {
  padding: 14px 48px;
  border: 2px solid #ddd;
  background: white;
  cursor: pointer;
  font-size: 18px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 16px;
  transition: 0.3s;
}

.filter-zed-btn.active {
  background: black;
  color: white;
}

.filter-zed-btn:hover {
  background: black;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  /* Index Page */
  .menu-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 50px 30px;
    gap: 16px;
    transition: 0.4s ease;
    z-index: 999;
    pointer-events: none;
  }
  .nav-links.active {
    right: 0;
    pointer-events: all;
  }
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding-left: 10px;
  }
  .dropdown.active .submenu {
    display: block;
  }
  .nav-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 4px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    list-style: none;
  }
  .nav-contact-label {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #b8a98a;
    margin-bottom: 4px;
  }
  .nav-contact a {
    font-size: 0.72rem;
    color: #333;
    text-decoration: none;
    letter-spacing: 0.05em;
  }
  .nav-contact a:hover {
    color: #000;
  }
  nav {
    padding: 20px 24px;
  }
  nav.scrolled {
    padding: 14px 24px;
  }
  section {
    padding: 40px 24px;
  }
  .hero {
    padding: 0 24px;
  }
  .hero-scroll {
    left: 24px;
  }
  footer {
    padding: 60px 24px 40px;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .campaigns-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
  }
  .hero {
    height: 75vh;
  }
  .hero-bg-text {
    display: none;
  }
  .footer-top {
    padding-bottom: 0px;
  }
  .index-cine {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  /* Campaigns Page */
  .p-width {
    margin: 0px 0px;
  }
  .campaign-section {
    padding: 80px 30px;
    padding-bottom: 12px;
  }
  .campaign-grid {
    display: table-row-group;
  }
  .rp-mb-40 {
    margin-bottom: 40px;
  }
  /* Media Section */
  .contact-section {
    padding: 80px 30px;
    padding-bottom: 30px;
  }
  /* Cinematic */
  .cinematic-row {
    display: table-row-group;
  }
  .cinematic-image {
    margin: 30px 0px;
  }
  /* Drone Page */
  .rp-pt-0 {
    padding-top: 0px;
  }

  /* Contact Page */
  .contact-info-wrapper {
    display: table-row-group;
  }

  .loader-text {
    font-size: 22px;
  }
  .filter-btn {
    font-size: 10px;
  }

  /* Logo Index */
  .logo-circle {
    width: 92px;
    height: 92px;
  }

  .logo-grid {
    gap: 20px;
  }

  .rp-mb-0 {
    margin-bottom: 0px;
  }

  .rp-more-logo {
    margin: 30px 0px;
  }
  .rp-pb-0 {
    padding-bottom: 0px;
  }

  .rp-mb-16 {
    margin-bottom: 16px;
  }

  .rp-mt-40 {
    margin-top: 40px;
  }

  .rp-mt-60 {
    margin-top: 60px;
  }

  .rp-client-grid {
    display: grid;
    gap: 8px;
  }
  .rp-client img {
    height: 100px;
  }
  .rp-reel-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* community page */
  .zed-btn {
    padding: 16px 50px;
    font-size: 14px;
    border-radius: 24px;
  }

  .filter-zed-btn {
    padding: 12px 22px !important;
    border: 2px solid #ddd;
    font-size: 12px !important;
    border-radius: 12px !important;
    transition: 0.3s;
  }
  .rp-reel-size {
    height: 500px !important;
  }
}
