/* =========================
   GLOBAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  background-color: #fdfbf8;
  color: #000;
  padding-top: 80px;
}

/* =========================
   HEADER / NAVBAR
========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  z-index: 3000;
  animation: slideDown 0.6s ease forwards;
}

.nav-container {
  max-width: 1200px;
  height: 100%;
  margin: auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* =========================
   LOGO
========================= */
.logo {
  font-size: 30px;
  font-weight: 800;
  color: #c99a2e;
}

/* =========================
   DESKTOP NAV
========================= */
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  position: relative;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #d4a038;
  transition: width 0.3s ease;
}

.nav a:hover,
.nav a.active {
  color: #d4a038;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

/* =========================
   CTA BUTTON
========================= */
.nav .btn {
  background: #d4a038;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav .btn:hover {
  background: #b8902f;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* =========================
   MOBILE MENU ICON
========================= */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  z-index: 3500;
}

/* =========================
   MOBILE NAV
========================= */
@media (max-width: 768px) {

  body {
    padding-top: 70px;
  }

  .header {
    height: 70px;
  }

  .nav-container {
    padding: 0 20px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 25px 0;
    display: none;
    z-index: 3200;
  }

  .nav.active {
    display: flex;
  }
}


/* FORCE HEADER TO ALWAYS BE CLICKABLE */
.header,
.header * {
  pointer-events: auto !important;
}

/* PREVENT HERO FROM BLOCKING HEADER */
.hero {
  pointer-events: none;
}

/* RE-ENABLE HERO CONTENT INTERACTION */
.hero * {
  pointer-events: auto;
}


/* =========================
   HERO SECTION (FIXED)
========================= */
.hero {
  position: relative;
  z-index: 1; /* 🔥 THIS FIXES CLICK ISSUE */
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;

}

.welcome {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 1px;
  font-style: italic;
}

.hero h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.3;
}

.hero h1 span {
  color: #c99a2e;
}

.subtitle {
  font-size: 15px;
  margin-top: 18px;
  font-weight: 500;
  line-height: 1.6;
}

/* =========================
   ANIMATION
========================= */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* CELEBRITY SECTION */

.filters{
margin-bottom:30px;
}

.filters button{
padding:10px 25px;
border:none;
background:#d4a02a;
color:#fff;
font-weight:600;
border-radius:6px;
cursor:pointer;
margin:0 8px;
}

.filters button.active{
background:#000;
}

.celebrity{
    padding:80px 20px;
    background:#fff;
    text-align:center;
}

.celebrity h2{
    font-size:36px;
    margin-bottom:40px;
}

.celebrity h2 span{
    color:#d4a02a;
}


/* GRID */
.celebrity-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    max-width:1100px;
    margin:auto;
}


/* CARD */
.card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(0,0,0,0.15);
}


/* IMAGE BOX */
.img-box{
    width:100%;
    height: 360px;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f6f6f6;
}

/* IMAGE */
.img-box img{
   width: 350px;
height: 400px;

    object-fit:contain;
}



/* TEXT */
.card h3{
    margin:15px 0 5px;
    font-size:20px;
}

.card p{
    color:#777;
    font-size:14px;
}


/* BUTTON */
.portfolio-btn{
    display:inline-block;
    margin:15px 0 25px;
    padding:10px 20px;
    background:#d4a02a;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    border-radius:6px;
}


/* PORTFOLIO PAGE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    color: #111;
}

/* SECTION */
.portfolio {
    padding: 120px 0;
}

/* GRID */
.portfolio-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: center;
}

/* IMAGE */
.portfolio-img img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

/* CONTENT */
.portfolio-content {
    max-width: 520px;       /* controls text width */
}

.portfolio-content h2 {
    font-size: 26px;
    font-weight: 800;
    color: #d39b22;
    margin-bottom: 6px;
}

.category {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 22px;
}

/* SUB HEADINGS */
.portfolio-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 22px 0 8px;
}

/* PARAGRAPHS */
.portfolio-content p {
    font-size: 15px;
    line-height: 1.55;
    color: #333;
}

/* HIGHLIGHTS */
.highlights {
    margin-top: 6px;
    line-height: 1.6;
}

/* BUTTON */
.book-btn {
    display: inline-block;
    margin-top: 28px;
    padding: 12px 26px;
    background: #d39b22;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    transition: 0.3s ease;
}

.book-btn:hover {
    background: #b8861b;
}

.view-more-wrapper{
text-align:center;
margin-top:30px;
}

.view-more{
color:#d4a02a;
font-weight:600;
text-decoration:none;
font-size:16px;
}

.view-more:hover{
text-decoration:underline;
}

/* BOOKING FORM */
.booking {
    padding: 80px 100px;
    text-align: center;
}

.booking h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 40px;
}

.booking h2 span {
    color: #c99a2e;
}

.booking form {
    max-width: 700px;
    margin: auto;
}

.booking input,
.booking textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border: 1px solid #777;
    font-size: 15px;
}

.booking textarea {
    height: 120px;
    resize: none;
}

.booking button {
    background: #c99a2e;
    color: #fff;
    border: none;
    padding: 16px 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.form-note {
    margin-top: 15px;
    font-size: 13px;
}

.success-msg {
    margin-top: 20px;
    color: green;
    font-weight: 700;
}
.error-msg {
    margin-top: 20px;
    color: red;
    font-weight: 700;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* NAV */
nav {
    padding: 20px;
}

nav a {
    text-decoration: none;
    font-weight: 600;
    color: black;
    cursor: pointer;
}

/* OVERLAY */
#aboutOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* CONTENT */
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* NAV */
nav {
    padding: 20px;
}

nav a {
    text-decoration: none;
    font-weight: 600;
    color: black;
    cursor: pointer;
}

/* OVERLAY */
#aboutOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* CONTENT */

.about-page {
    min-height: calc(100vh - 80px); /* header height */
    display: flex;
    justify-content: center;
    align-items: center;
}


.about-content {
    text-align: center;
    max-width: 700px;
    padding: 20px;
}

.about-content h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-content h1 span {
    color: #d4a038;
}

.about-content p {
    font-size: 18px;
    line-height: 1.6;
}

/* CONTACT PAGE */
.contact-wrapper {
    padding: 60px 20px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-wrapper h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
}

.contact-wrapper h1 span {
    color: #d4a038;
}

.contact-wrapper form {
    width: 600px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-wrapper input,
.contact-wrapper textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #444;
    font-size: 16px;
}

.contact-wrapper textarea {
    height: 120px;
    resize: none;
}

.contact-wrapper button {
    width: 280px;
    align-self: center;
    padding: 14px;
    background: #d4a038;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
}

#successMessage {
    margin-top: 30px;
    color: green;
    font-size: 18px;
}

/* ERROR MESSAGE */
#errorMessage {
    margin-top: 30px;
    color: red;
    font-size: 18px;
    display: none;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
}

/* SERVICES SECTION */
.services-section {
    padding: 80px 60px;
    text-align: center;
}

.services-section h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 60px;
}

.services-section h1 span {
    color: #d4a038;
}

/* SERVICES GRID */
.services-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.service-card {
    width: 220px;
    text-align: center;
}

.service-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    background: #f7f7f7;
}

.service-card p {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-container {
        grid-template-columns: 1fr;
    }
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
}

/* SECTION */
.represented-section {
    max-width: 900px;
    margin: 80px auto;
    text-align: center;
    padding: 0 20px;
}

/* HEADING */
.represented-section h1 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 50px;
}

.represented-section h1 span {
    color: #d4a038;
}

/* FORM */
.represented-section form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.represented-section input {
    padding: 16px;
    font-size: 16px;
    border: 1px solid #333;
    outline: none;
}

.represented-section button {
    margin-top: 20px;
    padding: 18px;
    font-size: 16px;
    font-weight: 700;
    background: #d4a038;
    color: #fff;
    border: none;
    cursor: pointer;
}

.represented-section button:hover {
    opacity: 0.9;
}

/* SUCCESS MESSAGE */
#successMessage {
    display: none;
    margin-top: 40px;
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .represented-section h1 {
        font-size: 26px;
    }
}

#representedSuccessMsg {
    display: none;
    margin-top: 40px;
    font-size: 18px;
    font-weight: 600;
    color: #000;
}








/*Booking form css */


.success-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: white;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  display: none;
  z-index: 9999;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  animation: popupIn 0.4s ease forwards;
}

@keyframes popupIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.checkmark-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #2ecc71;
  margin: 0 auto 15px;
  position: relative;
}

.checkmark {
  position: absolute;
  width: 18px;
  height: 35px;
  border-right: 5px solid white;
  border-bottom: 5px solid white;
  transform: rotate(45deg);
  left: 24px;
  top: 14px;
  animation: drawCheck 0.5s ease forwards;
}

@keyframes drawCheck {
  from { height: 0; width: 0; }
  to { height: 35px; width: 18px; }
}



/* =========================
   FOOTER STYLES
/* ========================= */
/* ==============================
   FOOTER
================================ */

.footer {
  background: #c99a2e;
  padding: 50px 6% 25px;
  font-family: 'Montserrat', sans-serif;
  color: #333;
}

/* Footer layout */
.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;              /* 🔥 reduced gap */
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Columns */
.footer-column {
  flex: 1;
  min-width: 220px;
}

/* Headings */
.footer-column h4 {
  font-size: 15px;
  font-weight: 800;       /* 🔥 bolder */
  margin-bottom: 15px;
  letter-spacing: 0.6px;
  color: #000;
}

/* Lists */
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;       /* 🔥 improved readability */
  color: #ffffff;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #000000;         /* gold hover */
}

/* Contact text */
.footer-column p {
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #fffdfd;
}

/* Icons spacing */
.footer-column p strong {
  font-weight: 700;
}

/* Bottom bar */
.footer-bottom {
  margin-top: 35px;
  padding-top: 18px;
  border-top: 1px solid #d0d0d0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13.5px;
  font-weight: 500;
  color: #ffffff;
}

/* Payment icons */
.payment-icons img {
  height: 28px;
  margin-left: 12px;
  opacity: 0.85;
}

/* ==============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 25px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .payment-icons img {
    margin-left: 0;
    margin-right: 10px;
  }
}



/* =========================
   GLOBAL RESET
========================= */
/* =========================*/
/* =========================
   PORTFOLIO SECTION
========================= */

.portfolio {
  padding: 80px 40px;
}

.portfolio-grid {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE */
.portfolio-img img {
  width: 420px;
  max-width: 100%;
  border-radius: 18px;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.portfolio-content h2 {
  font-size: 28px;
  font-weight: 800;
  color: #d4a038;
  margin-bottom: 6px;
}

.portfolio-content .category {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.portfolio-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 20px;
}

.portfolio-content p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 8px;
}

.highlights {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.7;
}

/* BUTTON */
.book-btn {
  display: inline-block;
  margin-top: 25px;
  background: #d4a038;
  color: #fff;
  padding: 12px 26px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
}

/* =========================
   MOBILE LAYOUT (KEY FIX)
========================= */

@media (max-width: 768px) {

  .portfolio {
    padding: 40px 20px;
  }

  .portfolio-grid {
    flex-direction: column;   /* 🔥 THIS FIXES YOUR ISSUE */
    gap: 30px;
  }

  .portfolio-img img {
    width: 100%;
    max-width: 360px;
    margin: auto;
  }

  .portfolio-content {
    width: 100%;
  }

  .portfolio-content h2,
  .portfolio-content .category {
    text-align: center;
  }

  .book-btn {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
  }
}


/* =========================
   PORTFOLIO IMAGE FIX (MOBILE)
========================= */

.portfolio-img img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 16px;
}

/* MOBILE ONLY */
@media (max-width: 768px) {
  .portfolio-img img {
    max-height: 600px;   /* 👈 CONTROL IMAGE HEIGHT */
    object-fit: cover;  /* crops excess height */
   
  }
}




/* =========================
   DESKTOP IMAGE FIX
========================= */

.portfolio-img {
  flex-shrink: 0;
  width: 450px;        /* FIXED WIDTH */
  height: 700px;       /* FIXED HEIGHT */
  overflow: hidden;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}


@media (max-width: 768px) {
  .portfolio-img {
    width: 80%;
    height: 420px;    /* mobile height */
    margin-bottom: 5px;
  }
}





/* =========================
   CONTACT FOOTER – FINAL
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
}

/* ================= MAP ================= */
.map-section iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

/* ================= CONTACT ================= */
.contact-section {
  background: #b30000;
  color: #fff;
  padding: 60px 0;
}

.contact-container {
  max-width: 1100px;   /* 🔥 IMPORTANT */
  margin: auto;
  padding: 0 40px;
}

.contact-container h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}


.contact-grid h4 {
  margin-top: 20px;
  margin-bottom: 8px;
}

.contact-grid p {
  line-height: 1.6;
}

.phone {
  font-size: 22px;
  font-weight: bold;
}

/* SOCIAL */
.social a {
  font-size: 20px;
  margin-right: 14px;
  color: #fff;
  text-decoration: none;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .map-section iframe {
    height: 300px;
  }

  .contact-section {
    padding: 40px 0;
  }

  .contact-container {
    padding: 0 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* PORTFOLIO PAGE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f3f3f3;
    color: #111;
}

/* SECTION */
.portfolio {
    padding: 40px 20px 80px;
}

/* GRID */
.portfolio-grid {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* IMAGE SIDE */
.portfolio-img {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* SLIDER */


.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slider {
    position: relative;
    width: 100%;
    max-width: 620px;
    height: 700px;
    overflow: hidden;
    border-radius: 18px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-image {
    min-width: 100%;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.slider:hover .slide-image {
    transform: scale(1.06);
}



/* ARROWS */
.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    z-index: 3;
}

.slide-btn.prev {
    left: 15px;
}

.slide-btn.next {
    right: 15px;
}

/* DOTS */
.slider-dots {
    text-align: center;
    margin-top: 18px;
}

.dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 0 6px;
    background: #cfcfcf;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.5s;
}

.dot.active {
    background: #d4a02a;
}

/* CONTENT */
.portfolio-content {
    width: 100%;
    max-width: 560px;
    padding-top: 0;
}

.portfolio-content h2 {
    font-size: 28px;
    font-weight: 800;
    color: #d39b22;
    margin-bottom: 10px;
    margin-top: 0;
}

.category {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.portfolio-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 22px 0 10px;
}

.portfolio-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

.highlights {
    margin-top: 6px;
    line-height: 1.8;
}

/* BOOK BUTTON */
.book-btn {
    display: inline-block;
    margin-top: 28px;
    padding: 14px 30px;
    background: #d4a02a;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    text-align: center;
}

/* TABLET */
@media (max-width: 991px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .portfolio-img {
        align-items: center;
    }

    .portfolio-content {
        max-width: 100%;
        text-align: left;
    }

    .slider {
        width: 100%;
        max-width: 100%;
        height: 520px;
        margin: 0 auto;
    }

    .slide-image {
        object-fit: contain;
        object-position: center;
    }

    .book-btn {
        display: inline-block;
        margin-top: 28px;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .portfolio {
        padding: 20px 15px 60px;
    }

    .portfolio-grid {
        gap: 28px;
    }

    .portfolio-img {
        align-items: center;
    }

    .slider {
        width: 100%;
        max-width: 100%;
        height: 400px;
        border-radius: 14px;
        margin: 0 auto;
    }

    .slider-track {
        height: 100%;
    }

    .slide-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

    .slide-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .slide-btn.prev {
        left: 10px;
    }

    .slide-btn.next {
        right: 10px;
    }

    .slider-dots {
        margin-top: 14px;
    }

    .portfolio-content {
        max-width: 100%;
    }

    .portfolio-content h2 {
        font-size: 24px;
        margin-top: 0;
    }

    .portfolio-content p {
        font-size: 14px;
    }

    .book-btn {
        display: block;
        width: fit-content;
        margin: 25px auto 0;
    }
}


#influencer-social a {
    color: #d4a02a;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

#influencer-social a:hover {
    text-decoration: underline;
}

#influencer-social img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: inline-block;
}

.hero-zoom {
    animation: zoomInHero 1.4s ease forwards;
    transform: scale(0.92) translateY(20px);
    opacity: 0;
}

@keyframes zoomInHero {
    0% {
        transform: scale(0.92) translateY(20px);
        opacity: 0;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}