/* ===== FONT FACES ===== */
@font-face {
  font-family: 'Champagne';
  src: url('fonts/Champagne & Limousines.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Champagne';
  src: url('fonts/Champagne & Limousines Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Champagne', sans-serif;
  background: #ffffff;
  color: #222;
  overflow-x: hidden;
}

/* ===== SECTION UTILITIES ===== */
section {
  padding: 120px 0;
  /* Standardized generous padding */
}

.bg-white {
  background-color: #ffffff;
}

.bg-light {
  background-color: #f2f2f2;
  /* More visible light gray */
}

/* ===== HEADER (Homepage) ===== */
.header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0 20px 0;
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 100;
}

.logo-link {
  display: block;
  margin-bottom: 25px;
  text-decoration: none;
}

.logo-container {
  position: relative;
  width: 160px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo-video {
  width: 220px;
  height: auto;
  display: block;
  filter: url('#remove-black');
}

.header-logo-centered img {
  width: 100px;
  /* Matched to Home Logo size */
  height: auto;
  margin-bottom: 20px;
}

.header-logo {
  width: 100px;
  /* Reduced from 130px */
  height: auto;
  display: block;
}

.header-nav,
.header-nav-centered {
  display: flex;
  justify-content: center;
  /* Center the ul container */
  width: 100%;
}

.header-nav>ul,
.header-nav-centered>ul {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-item {
  position: relative;
}

.nav-item a {
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 400;
  color: #ff0000;
  transition: opacity 0.3s;
  display: block;
}

.nav-item a:hover {
  opacity: 0.7;
}

.nav-item a.active,
.nav-item a.nav-home {
  color: #000;
  border-bottom: 2px solid #000;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  /* Slightly wider */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  /* More prominent shadow */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 10px 0;
  z-index: 9999;
  /* Ensure it's on top */
  border-radius: 4px;
}

.nav-item:hover>.dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  position: relative;
}

.dropdown-menu a {
  padding: 10px 20px;
  color: #222 !important;
  font-size: 1rem !important;
  border: none !important;
}

.dropdown-menu a:hover {
  background: #f8f8f8;
  color: #ff0000 !important;
  opacity: 1 !important;
}



/* Mobile Sub-menu */
@media (max-width: 900px) {


  .header-nav,
  .header-nav-centered {
    flex-direction: column;
    gap: 0;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 20px;
    display: none;
    /* Hidden by default on mobile, toggled by JS or :active if preferred */
    background: transparent;
  }

  .nav-item.is-open>.dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding: 8px 0;
  }
}

/* ===== HAMBURGER BUTTON ===== */
.hamburger-btn {
  display: none;
}

@media (max-width: 900px) {

  .header,
  .header-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0 5px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .logo-link {
    margin-bottom: 5px !important;
    /* Reduced from 25px to tighten header height */
  }

  /* Compensate for absolute header and balance vertical alignment with generous space */
  .hero,
  .about {
    padding-top: 250px !important;
    /* Increased from 180px to provide more space below header */
    padding-bottom: 250px !important;
    /* Kept equal for perfect centering */
  }

  .header.menu-open,
  .header-centered.menu-open {
    background: #fff;
    padding-top: 40px;
    padding-bottom: 30px;
    justify-content: flex-start;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Nav hidden by default */
  .header-nav,
  .header-nav-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
  }

  /* Nav visible when toggled */
  .header-nav.nav-open,
  .header-nav-centered.nav-open {
    max-height: 500px;
    opacity: 1;
    padding-top: 30px;
    visibility: visible;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  /* Hamburger Button */
  .hamburger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-top: 5px;
    position: relative;
    width: 50px;
    height: 40px;
    z-index: 10001;
  }

  .hamburger-btn.is-open {
    position: relative;
    top: auto;
    left: auto;
    margin-top: 5px;
  }

  .hamburger-dots {
    display: none;
  }

  .hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    transition: all 0.3s ease;
  }

  .hamburger-line {
    width: 100%;
    height: 2px;
    background-color: #ff0000;
    transition: all 0.3s ease;
  }

  .hamburger-btn.is-open .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger-btn.is-open .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .hamburger-btn.is-open .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hamburger-close {
    display: none !important;
  }

  .header-logo-centered img,
  .header-logo {
    width: 100px !important;
    margin-bottom: 5px;
    transition: width 0.4s ease, margin 0.4s ease;
  }

  .logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-logo-video {
    width: 100px;
  }

  .header-nav ul,
  .header-nav-centered ul {
    flex-direction: column !important;
    align-items: center !important;
    gap: 25px !important;
  }

  .nav-item a {
    font-size: 1.1rem !important;
    color: #ff0000 !important;
    text-decoration: none !important;
    border: none !important;
    font-weight: 300;
    letter-spacing: 0.05rem;
  }

  .nav-item a.active {
    color: #000 !important;
    border-bottom: 1px solid #000 !important;
  }

  .nav-item.is-open>.dropdown-menu {
    display: block;
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 10px 0 0 0;
    background: transparent;
  }

  .hero {
    height: 100vh;
    min-height: 950px;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 200px);
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
}

.about-hero {
  height: 400px;
  min-height: 300px;
  background: #fff;
}

.about-hero .hero-logo-text {
  filter: none;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.85;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-logo-text {
  width: 620px !important;
  max-width: 80vw;
  height: auto;
  margin-bottom: 2px;
  display: block;
}

.hero-icon-red {
  width: 20px;
  height: 20px;
  background: #ff0000;
  border-radius: 50%;
  margin: 3px 0 25px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-icon-red::after {
  content: '♫';
  color: #fff;
  font-size: 10px;
}

.hero-tagline {
  font-size: 3.5rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 30px;
  max-width: 800px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.hero-btn {
  padding: 10px 40px;
  font-size: 1rem;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #fff;
  color: #000;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 30px;
}

.hero-btn-fill {
  background: #fff;
  color: #000;
}

.hero-btn-fill:hover {
  background: transparent;
  color: #fff;
}

.hero-subheading {
  font-size: 2.2rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
  max-width: 800px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-supporting-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 10px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.hero-disclaimer {
  margin-top: 50px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 400px;
}

@media (max-width: 768px) {
  .hero-content {
    padding: 0 20px;
    box-sizing: border-box;
  }

  .hero-tagline {
    font-size: 2.5rem !important;
    line-height: 1.1;
    margin-bottom: 15px;
  }

  .hero-subheading {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .hero-supporting-text {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-disclaimer {
    margin-top: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: center;
  }

  .hero-logo-text {
    width: 90% !important;
    max-width: 500px;
  }
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 20px 0 0 0;
  background: #ffffff;
}

.about-header-text {
  margin-bottom: 20px;
}

.about-main-title {
  font-size: 5rem;
  font-weight: 400;
  margin-bottom: -10px;
  line-height: 1;
}

.about-sub-title {
  margin-top: 5px;
}

.about-sub-title img {
  max-width: 620px;
  width: 100%;
  height: auto;
}

.about-description-centered {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 30px;
  max-width: 600px;
}

.about-cta-centered {
  margin-bottom: 60px;
}

.about-images-row {
  display: flex;
  gap: 30px;
  width: 100%;
  justify-content: center;
}

.about-img-box {
  flex: 1;
  max-width: 500px;
  height: 350px;
  overflow: hidden;
  border-radius: 20px;
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-img-box img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .about-main-title {
    font-size: 3.5rem;
  }

  .about-sub-title {
    font-size: 2.2rem;
  }

  .about-images-row {
    flex-direction: column;
    align-items: center;
  }

  .about-img-box {
    width: 100%;
    height: 300px;
  }
}

/* ===== OVERVIEW SECTION ===== */
.overview {
  padding: 100px 0;
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

.overview-image-wrapper {
  margin-bottom: 40px;
  width: 100%;
  max-width: 600px;
}

.overview-main-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.overview-heading {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #000;
  font-weight: 400;
}

.overview-stats {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.overview-text {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #333;
  max-width: 800px;
  text-align: center;
}

.outline-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 40px;
  border: 1px solid #000;
  border-radius: 25px;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.outline-btn:hover {
  background: #000;
  color: #fff;
}

.typing-cursor {
  display: inline-block;
  width: 3px;
  height: 1.5rem;
  background-color: #ff0000;
  margin-left: 5px;
  vertical-align: middle;
  animation: blink 0.8s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .overview {
    padding: 80px 5%;
  }

  .overview-text {
    font-size: 1.1rem;
  }
}

/* ===== SHARED SECTION STYLES ===== */
.section-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5%;
  width: 100%;
}

.centered-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-title {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 20px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  color: #000;
}

.section-title img {
  max-width: 300px;
  width: 100%;
  height: auto;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 60px;
  max-width: 600px;
}

/* ===== SERVICES SECTION ===== */
.services {
  background: transparent;
}

.services-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.our-work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: 100%;
}

.featured-service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.featured-service-card:hover {
  transform: translateY(-10px);
}

.service-img-container {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 15px;
  background: transparent;
}

.service-img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-info {
  padding: 20px 0;
  text-align: left;
}

.service-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-info h3::after {
  content: '→';
  font-size: 1.2rem;
  opacity: 0.6;
}

.service-info p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

@media (max-width: 900px) {

  .hero {
    height: auto;
    min-height: 350px;
    padding: 60px 0;
  }

  .hero-tagline {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .hero-logo-text {
    width: 400px !important;
  }

  .services-featured-grid,
  .our-work-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .section-title {
    font-size: 2.22rem;
  }
}


/* ===== FEATURED WORK SECTION ===== */
.featured-work {
  padding: 100px 0;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.carousel-wrapper {
  width: 100%;
  overflow-x: auto;
  padding: 40px 0;
  cursor: grab;
  /* Hide scrollbar */
  scrollbar-width: none;
  /* Firefox */
}

.carousel-wrapper::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.carousel-container {
  display: flex;
  gap: 30px;
  padding: 0 5%;
  width: max-content;
}

.carousel-item {
  position: relative;
  width: 450px;
  height: 300px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #eee;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.carousel-item:hover img {
  transform: scale(1.05);
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.carousel-item:hover .carousel-overlay {
  opacity: 1;
}

.overlay-type {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  border: 1px solid #fff;
  padding: 8px 20px;
  border-radius: 4px;
}

.view-more-container {
  margin-top: 60px;
  text-align: center;
}

.portfolio-btn {
  font-size: 1rem;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 12px 35px;
  border: 1px solid #000;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.portfolio-btn:hover {
  background: #000;
  color: #fff;
}

.portfolio-btn span {
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.portfolio-btn:hover span {
  transform: translateX(10px);
}

@media (max-width: 768px) {
  .carousel-item {
    width: 300px;
    height: 200px;
  }

  .portfolio-btn {
    font-size: 1rem;
  }
}

/* ===== WHY CHOOSE ZOON SECTION ===== */
.why-zoon {
  background: #000;
  color: #fff;
  padding: 100px 0;
  /* Balanced padding */
}

.why-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 900px;
}

.why-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}

.why-item h3 {
  font-size: 2.5rem;
  font-weight: 400;
}

.why-dot {
  width: 12px;
  height: 12px;
  background: #ff0000;
  border-radius: 50%;
}

/* ===== CALL TO ACTION SECTION ===== */
.cta {
  background: transparent;
  text-align: center;
}

.cta-content h2 {
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 40px;
  color: #000;
}

.cta-btn {
  padding: 15px 50px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: transform 0.3s, background 0.3s;
}

.cta-btn:hover {
  background: #ff0000;
  transform: scale(1.05);
}

/* ===== GET IN TOUCH SECTION (About Page) ===== */
.get-in-touch-section {
  background: #fff;
  text-align: center;
}

.get-in-touch-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

.get-in-touch-subtitle {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.contact-box {
  background: #8c8c8c;
  /* Darker gray to match the strips in the image */
  padding: 40px;
  border-radius: 30px;
  text-align: left;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #000;
}

.form-submit-btn {
  width: auto;
  padding: 15px 40px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.form-submit-btn:hover {
  background: #ff0000;
  transform: translateY(-3px);
}

.contact-image-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
}

.contact-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .get-in-touch-title {
    font-size: 3rem;
  }

  .get-in-touch-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .why-item h3 {
    font-size: 1.8rem;
  }

  .cta-content h2 {
    font-size: 2.2rem;
  }
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  padding: 100px 0 40px 0;
  background: #000;
  color: #fff;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.footer-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4;
  /* Glitch effect intensity */
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.footer .section-container {
  position: relative;
  z-index: 10;
}

.footer-content-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 50px;
  align-items: flex-start;
  text-align: left;
}

.footer-col h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-col h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
  color: #fff;
}

.footer-col p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.footer-social-icons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.footer-social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}

.footer-social-icons a:hover img {
  transform: scale(1.2);
}

.mini-contact-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mini-contact-form input {
  padding: 15px 20px;
  border-radius: 12px;
  border: none;
  background: #fff;
  font-size: 1rem;
  width: 100%;
}

.footer-send-btn {
  padding: 15px 30px;
  background: #3c7ea8;
  /* Blue color from screenshot */
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  transition: 0.3s;
  align-self: flex-start;
}

.footer-send-btn:hover {
  background: #2a5a78;
}

.footer-bottom-bar {
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
  .footer-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-social-icons {
    justify-content: center;
  }

  .footer-send-btn {
    align-self: center;
  }
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PORTFOLIO GRID STYLES ===== */
.portfolio-main-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
  margin-top: 50px;
}

.portfolio-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.4s ease;
}

.portfolio-card:hover {
  transform: translateY(-10px);
}

.portfolio-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.portfolio-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.work-cat {
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff0000;
  margin-bottom: 10px;
}

.portfolio-overlay h3 {
  font-size: 1.8rem;
  font-weight: 400;
}

@media (max-width: 768px) {
  .portfolio-main-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== BRANDS SHOWCASE (standalone page) ===== */
.brands-showcase {
  background: #0a0a0a;
  padding: 100px 0;
}

/* ===== PARALLAX BRAND GRID ===== */
.parallax-brand-grid {
  position: relative;
  width: 100%;
  height: auto;
  min-height: auto;
  background-image: url('images/bg-static-frame.png');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  padding: 0;
}

.parallax-brand-grid .parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.brand-grid-wrapper {
  position: relative;
  z-index: 5;
  padding: 100px 0;
}

.brand-grid-header {
  text-align: center;
  margin-bottom: 60px;
}

.brand-grid-title {
  font-size: 2.8rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.brand-grid-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
}

/* ===== BRAND GRID ===== */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

/* ===== BRAND CARD ===== */
.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 40px 30px 30px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.brand-card:hover {
  transform: translateY(-8px);
  background: #fff;
  border-color: rgba(255, 0, 0, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.brand-card-logo {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.brand-card:hover .brand-card-logo {
  transform: scale(1.05);
}

.brand-card-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-card-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.brand-card-tag {
  font-size: 0.8rem;
  color: #ff0000;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.brand-card-link {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.35);
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.brand-card-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #ff0000;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.brand-card:hover .brand-card-link {
  color: #ff0000;
}

.brand-card:hover .brand-card-link::after {
  width: 100%;
}

/* ===== PORTFOLIO CTA ===== */
.portfolio-cta {
  background: #c1272d;
  padding: 100px 0;
  text-align: center;
}

.portfolio-cta-title {
  font-size: 3.2rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.portfolio-cta-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.portfolio-cta-btn {
  display: inline-block;
  padding: 16px 50px;
  background: #fff;
  color: #ff0000;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.portfolio-cta-btn:hover {
  background: #000;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .brand-grid-title {
    font-size: 2rem;
  }

  .portfolio-cta-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .brand-grid-wrapper {
    padding: 60px 0;
  }

  .portfolio-cta {
    padding: 60px 0;
  }

  .portfolio-cta-title {
    font-size: 1.8rem;
  }
}

/* ===== CASE STUDY PAGE ===== */
.case-hero {
  background: #000;
  padding: 220px 0 80px;
}

.case-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.case-hero-back a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.case-hero-back a:hover {
  color: #ff0000;
}

.case-hero-logo-img {
  width: 200px;
  height: 120px;
  display: flex;
  align-items: center;
  margin: 30px 0;
}

.case-hero-logo-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.case-hero-title {
  font-size: 3rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.case-hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.case-hero-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #ff0000;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.meta-divider {
  color: rgba(255, 255, 255, 0.2);
}

.case-hero-mockup {
  border-radius: 20px;
  overflow: hidden;
}

.case-hero-mockup img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.case-story {
  background: #fff;
  padding: 100px 0;
}

.case-story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.case-story-label {
  font-size: 1rem;
  color: #ff0000;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 400;
}

.case-story-block p {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
}

.case-section-title {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 50px;
  color: #1a1a1a;
}

.case-carousel {
  background: #f2f2f2;
  padding: 100px 0;
}

.case-carousel-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.case-carousel-slide {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.case-carousel-slide:hover {
  transform: scale(1.03);
}

.case-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-services {
  background: #fff;
  padding: 80px 0;
}

.case-checklist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 700px;
  margin: 0 auto;
}

.case-check-item {
  font-size: 1rem;
  color: #1a1a1a;
  letter-spacing: 1px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.case-elements {
  background: #f2f2f2;
  padding: 80px 0;
}

.case-elements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 700px;
  margin: 0 auto;
}

.case-element-block h3 {
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 20px;
  font-weight: 400;
}

.color-swatches {
  display: flex;
  gap: 10px;
}

.swatch {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #ddd;
}

.type-display {
  color: #1a1a1a;
  margin-bottom: 8px;
}

.type-name {
  font-size: 0.85rem;
  color: #888;
}

.case-social {
  background: #fff;
  padding: 60px 0;
}

.case-social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.case-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: #f2f2f2;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.case-social-btn:hover {
  background: #000;
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .case-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .case-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .case-carousel-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-checklist {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-elements-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .case-hero {
    padding: 160px 0 60px;
  }

  .case-hero-title {
    font-size: 2rem;
  }

  .case-carousel-track {
    grid-template-columns: 1fr;
  }

  .case-checklist {
    grid-template-columns: 1fr;
  }

  .case-social-links {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== GALLERY SHARED STYLES ===== */
.gallery-section-title {
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.gallery-section-sub {
  font-size: 1rem;
  color: #888;
  text-align: center;
  margin-bottom: 60px;
}

/* ===== LOGO GALLERY ===== */
.logo-gallery-section {
  background: #ffffff;
  padding: 100px 0;
}

.logo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.logo-gallery-item {
  background: none;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 1px solid #eee;
}

.logo-gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 0, 0, 0.2);
}

.logo-gallery-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: none;
}

.logo-gallery-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.logo-gallery-item:hover .logo-gallery-img img {
  transform: scale(1.08);
}

.logo-gallery-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-top: 1px solid #f0f0f0;
}

.logo-gallery-name {
  font-size: 0.85rem;
  color: #1a1a1a;
  letter-spacing: 1px;
  font-weight: 500;
}

.logo-download-btn {
  display: inline-block;
  padding: 6px 18px;
  background: #ff0000;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.logo-download-btn:hover {
  background: #000;
  transform: translateY(-2px);
}

/* ===== POST GALLERY ===== */
.post-gallery-section {

  padding: 100px 0;
}

.post-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.post-gallery-item {
  background: none;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 1px solid #eee;
}

.post-gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 0, 0, 0.2);
}

.post-gallery-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.post-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.post-gallery-item:hover .post-gallery-img img {
  transform: scale(1.08);
}

@media (max-width: 900px) {
  .post-gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .post-gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .post-gallery-section {
    padding: 60px 0;
  }
}

/* ===== ILLUSTRATION GALLERY ===== */
.illust-gallery-section {
  background: #fff;
  padding: 100px 0;
}

.illust-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 60px;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #eee;
  transition: box-shadow 0.4s ease;
}

.illust-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.illust-card-reverse {
  direction: rtl;
}

.illust-card-reverse>* {
  direction: ltr;
}

.illust-card-img {
  position: relative;
  width: 100%;
  min-height: 350px;
  overflow: hidden;
  cursor: pointer;
}

.illust-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.illust-card-img:hover img {
  transform: scale(1.05);
}

.illust-fullscreen-hint {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.illust-card-img:hover .illust-fullscreen-hint {
  opacity: 1;
}

.illust-fullscreen-hint span {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 30px;
  border: 2px solid #fff;
  border-radius: 50px;
}

.illust-card-info {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.illust-card-title {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.illust-card-tag {
  font-size: 0.75rem;
  color: #ff0000;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.illust-card-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

.illust-card-meta {
  display: flex;
  gap: 20px;
  font-size: 0.8rem;
  color: #aaa;
  letter-spacing: 1px;
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-overlay img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: #ff0000;
}

/* ===== GALLERY RESPONSIVE ===== */
@media (max-width: 900px) {
  .logo-gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .illust-card {
    grid-template-columns: 1fr;
  }

  .illust-card-reverse {
    direction: ltr;
  }

  .illust-card-img {
    min-height: 250px;
  }

  .gallery-section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .logo-gallery-grid {
    grid-template-columns: 1fr !important;
  }

  .logo-gallery-section,
  .illust-gallery-section {
    padding: 60px 0;
  }

  .illust-card-info {
    padding: 30px 25px;
  }

  .illust-card-title {
    font-size: 1.4rem;
  }
}

/* ===== EXPLORE MORE SECTION ===== */
.explore-more-section {
  background: #000;
  padding: 100px 0;
}

.explore-more-section .gallery-section-title {
  color: #fff;
}

.explore-more-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.explore-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 60px 40px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.explore-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.explore-card-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ff0000;
}

.explore-card h3 {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}

.explore-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 25px;
}

.explore-card-link {
  font-size: 0.85rem;
  color: #ff0000;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.explore-card:hover .explore-card-link {
  color: #fff;
}

@media (max-width: 600px) {
  .explore-more-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .explore-card {
    padding: 40px 30px;
  }

  .explore-more-section {
    padding: 60px 0;
  }
}

/* ===== CONTACT FORM SECTION (About Page) ===== */
.contact-form-section {
  padding: 80px 0;
  background: #f2f2f2;
}

.contact-form-wrapper {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: 'Champagne', sans-serif;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  color: #222;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff0000;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ===== RED SEND MESSAGE BUTTONS (ALL) ===== */
.form-submit-btn,
.footer-send-btn {
  display: inline-block;
  padding: 12px 40px;
  font-size: 1rem;
  font-family: 'Champagne', sans-serif;
  font-weight: 700;
  color: #fff;
  background: #ff0000;
  border: 2px solid #ff0000;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  letter-spacing: 0.5px;
}

.form-submit-btn:hover,
.footer-send-btn:hover {
  background: transparent;
  color: #ff0000;
}

.contact-form-wrapper .form-submit-btn {
  width: 100%;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .contact-form-wrapper {
    max-width: 100%;
    padding: 0 10px;
  }

  .contact-form-section {
    padding: 60px 0;
  }
}

/* ===== PHONE LANDSCAPE MODE — SINGLE COLUMN ===== */
@media (orientation: landscape) and (max-height: 500px) {

  .logo-gallery-grid,
  .post-gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .explore-more-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .our-work-grid,
  .services-featured-grid {
    grid-template-columns: 1fr !important;
    max-width: 450px;
    margin: 0 auto;
  }

  .illust-card {
    grid-template-columns: 1fr !important;
  }

  .illust-card-reverse {
    direction: ltr;
  }

  .footer-content-grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
    text-align: center;
  }

  .footer-social-icons {
    justify-content: center;
  }

  .footer-send-btn {
    align-self: center;
  }

  .brand-grid {
    grid-template-columns: 1fr !important;
  }

  .portfolio-main-grid {
    grid-template-columns: 1fr !important;
  }

  .case-hero-grid {
    grid-template-columns: 1fr !important;
  }

  .case-story-grid {
    grid-template-columns: 1fr !important;
  }

  .case-carousel-track {
    grid-template-columns: 1fr !important;
  }

  .case-checklist {
    grid-template-columns: 1fr !important;
  }

  .case-elements-grid {
    grid-template-columns: 1fr !important;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
  }
}