* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0b0b0b;
  font-family: "Poppins", sans-serif;
  color: #fff;
  overflow-x: hidden;
  font-size: 16px;
  font-weight: 400;
}
/* ================= TYPOGRAPHY ================= */

/* HEADINGS */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 15px;
  color: #fff;
}

/* H1 */

h1 {
  font-size: 70px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* H2 */

h2 {
  font-size: 60px;
}

/* H3 */
h3{
  font-size: 30px;
}
/* H4 */

h4 {
  font-size: 28px;
}

/* H5 */

h5 {
  font-size: 22px;
}

/* H6 */

h6 {
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* PARAGRAPH */

p {
  font-size: 15px;
  line-height: 2;
  font-weight: 300;
  color: #cfcfcf;
  margin-bottom: 15px;
}

/* LINKS */

a {
  text-decoration: none;
  transition: 0.4s;
  color: #fff;
}

/* BUTTON STYLE LINKS */

.btn,
button {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* SPAN */

span {
  display: inline-block;
}

/* SMALL TEXT */

small {
  font-size: 13px;
  letter-spacing: 1px;
  color: #aaa;
}

/* LIST */

ul {
  padding-left: 0;
  margin-bottom: 0;
}

li {
  list-style: none;
}

/* INPUT */

input,
textarea {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

/* HEADER */

/* ================= WHITE HEADER ================= */

header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding: 5px 0;
  z-index: 9999;
  background: #fff;
  transition: 0.4s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

header.sticky {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* LOGO */

.logo a img {
  max-width: 80px;
  display: block;
}

/* NAVBAR */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* NAV LINKS */

.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #111;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 6px;
  transition: 0.4s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #111;
  transition: 0.4s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* DROPDOWN */

.dropdown {
  position: absolute;
  top: 45px;
  left: 0;
  width: 280px;
  background: #fff;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.4s;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.dropdown a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: #111;
}

.dropdown a:last-child {
  border-bottom: none;
}

.dropdown-menu:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* BUTTON */

.book-btn {
  padding: 15px 34px;
  background: #111;
  color: #fff;
  border: none;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.4s;
}

.book-btn:hover {
  background: #000;
  transform: translateY(-2px);
}

/* MOBILE TOGGLE */

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: #111;
  display: block;
  transition: 0.4s;
}

/* ================= MOBILE MENU ================= */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: #fff;
  z-index: 99999;
  padding: 30px;
  transition: 0.5s;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.mobile-top h3 {
  font-size: 28px;
  font-family: "Cormorant Garamond", serif;
  color: #111;
}

.close-menu {
  font-size: 38px;
  color: #111;
  cursor: pointer;
  line-height: 1;
}

/* MOBILE LINKS */

.mobile-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-links li {
  margin-bottom: 18px;
}

.mobile-links a {
  text-decoration: none;
  color: #111;
  font-size: 14px;
  letter-spacing: 2px;
}

/* MOBILE DROPDOWN */

.mobile-dropdown-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
  color: #111;
  font-size: 14px;
  letter-spacing: 2px;
}

.mobile-dropdown-btn i {
  font-size: 13px;
  transition: 0.4s;
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: 0.5s ease;
  padding-left: 15px;
}

.mobile-submenu li {
  margin: 14px 0;
}

.mobile-submenu a {
  color: #555 !important;
  font-size: 13px !important;
  letter-spacing: 1px;
}

.mobile-dropdown.active .mobile-submenu {
  max-height: 500px;
}

.mobile-dropdown.active .mobile-dropdown-btn i {
  transform: rotate(180deg);
}

/* OVERLAY */

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ================= HERO SECTION ================= */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* IMAGE */

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* OVERLAY */

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}

/* CONTENT */

.hero-content {
  position: relative;
  z-index: 5;
  color: #fff;
}

.hero-content span {
  display: block;
  font-size: 13px;
  letter-spacing: 6px;
  margin-bottom: 25px;
  color: #ddd;
}

.hero-content h1 {
  line-height: 0.88;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 30px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-content p {
  max-width: 620px;
  line-height: 2;
  font-size: 15px;
  color: #d0d0d0;
  margin-bottom: 40px;
}

/* BUTTONS */

.hero-btns {
  display: flex;
  gap: 20px;
}

.hero-btns a {
  padding: 18px 42px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  transition: 0.4s;
}

.hero-btns a:first-child {
  background: #fff;
  color: #000;
}

.hero-btns a:last-child {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.hero-btns a:hover {
  transform: translateY(-5px);
}

/* ANIMATION */

@keyframes zoomHero {
  0% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1.15);
  }
}

/* SECTION */


section {
  padding: 110px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title span {
  font-size: 13px;
  letter-spacing: 4px;
  color: #999;
  display: block;
  margin-bottom: 15px;
}

.section-title h2 {
  font-family: "Cormorant Garamond", serif;
}

/* ABOUT */

.about {
  background: #111;
}

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img img {
  height: 650px;
  object-fit: cover;
}

.about-content p {
  line-height: 2;
  color: #cfcfcf;
  margin-bottom: 0;
}

.about-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 35px;
}

.about-box {
  padding: 25px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.about-box h3 {
  font-size: 32px;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 8px;
}

/* SERVICES */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  background: #111;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.4s;
}

.service-card img {
  height: 260px;
  object-fit: cover;
  transition: 0.5s;
}

.service-card:hover img {
  filter: grayscale(0);
  transform: scale(1.05);
}

.service-content {
  padding: 22px;
}

.service-content h3 {
  font-size: 28px;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 12px;
}

.service-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #bdbdbd;
}

/* SHOWCASE */

.showcase {
  background: #111;
}

.showcase img {
  height: 550px;
  object-fit: cover;
}

/* GALLERY */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-grid img {
  height: 260px;
  object-fit: cover;
  transition: 0.4s;
}

.gallery-grid img:hover {
  filter: grayscale(0);
  transform: scale(0.97);
}

/* CONTACT */

.contact {
  background: #111;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-left h2 {
  font-size: 60px;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 20px;
}

.contact-left p {
  line-height: 2;
  color: #bbb;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px;
  margin-bottom: 20px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
}

.contact-form textarea {
  height: 150px;
  resize: none;
}

.contact-form button {
  padding: 16px 35px;
  background: #fff;
  border: none;
  color: #000;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
}

/* FOOTER */

footer {
  padding: 70px 0 30px;
  background: #0d0d0d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid h3 {
  font-size: 28px;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 20px;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid ul li {
  margin-bottom: 12px;
  color: #fff;
  font-size: 15px;
}

.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.socials {
  display: flex;
  gap: 15px;
}

.socials a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: #fff;
  transition: 0.4s;
}

.socials a:hover {
  background: #fff;
  color: #000;
}
/* ================= INSTAGRAM SECTION ================= */

.instagram-section {
  padding: 120px 0;
  background: #050505;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.insta-card {
  position: relative;
  overflow: hidden;
  display: block;
}

.insta-card img {
  height: 320px;
  object-fit: cover;
  transition: 0.6s;
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.5s;
}

.insta-overlay i {
  font-size: 38px;
  margin-bottom: 15px;
  color: #fff;
}

.insta-overlay h4 {
  font-size: 15px;
  letter-spacing: 2px;
  color: #fff;
  font-weight: 500;
}

.insta-card:hover img {
  transform: scale(1.08);
  filter: grayscale(0);
}

.insta-card:hover .insta-overlay {
  opacity: 1;
}
a.footer-logo img {
  max-width: 180px;
}
/* MOBILE */
/* ================= ABOUT HERO ================= */

.about-hero {
  position: relative;
  height: 100vh;
  background: url("../images/banner2.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
 
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.about-hero-content span {
  display: block;
  font-size: 13px;
  letter-spacing: 5px;
  margin-bottom: 20px;
  color: #ddd;
}

.about-hero-content h1 {
  line-height: 0.95;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 25px;
}

.about-hero-content p {
  line-height: 1.8;
  color: #d0d0d0;
}

/* ================= ABOUT PAGE ================= */

.about-page-section {
  background: #111;
}
.hero-slider .about-page-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-page-img img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: 10px;
}

.about-page-content span {
  display: block;
  font-size: 13px;
  letter-spacing: 4px;
  margin-bottom: 15px;
  color: #999;
}

.about-page-content h2 {
  font-size: 60px;
  line-height: 1.1;
  margin-bottom: 25px;
  font-family: "Cormorant Garamond", serif;
  color: #fff;
}

.about-page-content p {
  line-height: 2;
  color: #bbb;
  margin-bottom: 20px;
}

.about-page-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.about-page-box {
  padding: 25px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.about-page-box h3 {
  font-size: 38px;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 8px;
  color: #fff;
}

.about-page-box p {
  margin: 0;
  color: #bbb;
}

/* ================= WHY SECTION ================= */

.why-section {
  background: #0b0b0b;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  padding: 50px 35px;
  background: #111;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.4s;
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.15);
}

.why-card i {
  font-size: 45px;
  margin-bottom: 25px;
  color: #fff;
}

.why-card h3 {
  font-size: 30px;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 15px;
}

.why-card p {
  color: #bbb;
  line-height: 1.9;
}
/* ================= SERVICES HERO ================= */

.services-hero {
  position: relative;
  height: 100vh;
  background: url("../images/banner3.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.services-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
}

.services-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.services-hero-content span {
  display: block;
  font-size: 13px;
  letter-spacing: 5px;
  margin-bottom: 20px;
  color: #ddd;
}

.services-hero-content h1 {
  line-height: 0.95;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 25px;
}

.services-hero-content p {
  line-height: 1.8;
  color: #d0d0d0;
}

/* ================= SERVICES PAGE ================= */

.services-page {
  padding: 120px 0;
  background: #0b0b0b;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 60px;
}

.service-box {
  background: #111;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.4s;
}

.service-box:hover {
  transform: translateY(-8px);
}

.service-img {
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: 0.6s;
}

.service-box:hover .service-img img {
  transform: scale(1.08);
}

.service-info {
  padding: 30px;
}

.service-info h3 {
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 15px;
  color: #fff;
}

.service-info p {
  line-height: 1.9;
  color: #bbb;
  margin-bottom: 25px;
}

.service-info a {
  display: inline-block;
  padding: 14px 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  transition: 0.4s;
}

.service-info a:hover {
  background: #fff;
  color: #000;
}
.gallery-hero{
background:url('../images/banner1.png') center/cover no-repeat;
top: 0;
}
.gallery-filter{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:15px;
margin:50px 0;
}

.gallery-filter button{
padding:14px 28px;
background:transparent;
border:1px solid rgba(255,255,255,.1);
color:#fff;
font-size:13px;
letter-spacing:2px;
cursor:pointer;
transition:.4s;
}

.gallery-filter button.active,
.gallery-filter button:hover{
background:#fff;
color:#000;
}

/* GRID */

.gallery-page-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

/* ITEM */

.gallery-item{
position:relative;
overflow:hidden;
border-radius:8px;
}

.gallery-item img{
width:100%;
height:350px;
object-fit:cover;
transition:.6s;
}

.gallery-item:hover img{
transform:scale(1.08);
}

/* OVERLAY */

.gallery-content{
position:absolute;
left:0;
bottom:0;
width:100%;
padding:30px 25px;
background:linear-gradient(to top,
rgba(0,0,0,.9),
transparent);
}

.gallery-content h3{
font-size:30px;
font-family:'Cormorant Garamond',serif;
margin-bottom:8px;
color:#fff;
}

.gallery-content span{
font-size:13px;
letter-spacing:2px;
color:#ddd;
}
.contact-page{
padding:120px 0;
background:#0b0b0b;
}

.contact-page-wrap{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:start;
}

/* LEFT */

.contact-left-box span{
display:block;
font-size:13px;
letter-spacing:4px;
margin-bottom:15px;
color:#999;
}

.contact-left-box h2{
line-height:1.1;
margin-bottom:25px;
font-family:'Cormorant Garamond',serif;
color:#fff;
}

.contact-left-box p{
line-height:2;
color:#bbb;
margin-bottom:40px;
}

/* INFO */

.contact-info-list{
display:flex;
flex-direction:column;
gap:25px;
}

.contact-info-item{
display:flex;
align-items:flex-start;
gap:18px;
}

.contact-info-item i{
width:55px;
height:55px;
background:#111;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:18px;
color:#fff;
}

.contact-info-item h4{
font-size:24px;
margin-bottom:6px;
color:#fff;
font-family:'Cormorant Garamond',serif;
}

.contact-info-item p{
margin:0;
color:#bbb;
}

/* FORM */

.contact-form-box{
background:#111;
padding:45px;
border:1px solid rgba(255,255,255,.06);
}

.form-group{
margin-bottom:20px;
}

.contact-form-box input,
.contact-form-box textarea{
width:100%;
padding:18px;
background:#0b0b0b;
border:1px solid rgba(255,255,255,.08);
color:#fff;
outline:none;
font-size:14px;
}

.contact-form-box textarea{
height:160px;
resize:none;
}

.contact-form-box button{
padding:16px 35px;
background:#fff;
color:#000;
border:none;
font-size:13px;
font-weight:600;
letter-spacing:2px;
cursor:pointer;
transition:.4s;
}

.contact-form-box button:hover{
background:#ddd;
}

/* MAP */

.map-section iframe{
width:100%;
height:500px;
border:none;
display:block;
filter:grayscale(100%);
}
.map-section{
    padding: 0;
}
.contact-hero{
background:url('../images/banner2.png') center/cover no-repeat;
}


/* ================= PRODUCT DETAIL PAGE ================= */



/* GRID */

.product-detail-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
}

/* ================= GALLERY ================= */

.product-gallery{
width:100%;
}

/* MAIN IMAGE */

.main-image{
overflow:hidden;
border-radius:20px;
}

.main-image img{
width:100%;
height:650px;
object-fit:cover;
transition:.5s;
}

/* THUMBNAILS */

.thumb-gallery{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:15px;
margin-top:20px;
}

.thumb{
width:100%;
height:120px;
object-fit:cover;
border-radius:10px;
cursor:pointer;
border:2px solid transparent;
transition:.4s;
}

.thumb:hover{
transform:scale(.95);
}

.thumb.active{
border:2px solid #fff;
}

/* ================= CONTENT ================= */

.product-detail-content span{
display:block;
font-size:13px;
letter-spacing:4px;
color:#999;
margin-bottom:18px;
}

.product-detail-content h1{
line-height:1;
font-family:'Cormorant Garamond',serif;
color:#fff;
margin-bottom:25px;
}

.product-rating{
display:flex;
align-items:center;
gap:6px;
margin-bottom:25px;
}

.product-rating i{
color:#fff;
font-size:14px;
}

.product-rating span{
font-size:14px;
color:#bbb;
letter-spacing:0;
margin-left:10px;
}

.product-detail-content p{
font-size:16px;
line-height:2;
color:#bdbdbd;
margin-bottom:35px;
}

/* FEATURES */

.product-features{
padding:0;
margin-bottom:40px;
}

.product-features li{
list-style:none;
margin-bottom:15px;
color:#ddd;
position:relative;
padding-left:25px;
}

.product-features li::before{
content:'';
position:absolute;
left:0;
top:10px;
width:8px;
height:8px;
border-radius:50%;
background:#fff;
}

/* BUTTONS */

.product-buttons{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.product-btn-dark{
padding:18px 38px;
background:#fff;
color:#000;
text-decoration:none;
font-size:13px;
letter-spacing:2px;
font-weight:600;
transition:.4s;
}

.product-btn-dark:hover{
background:#ddd;
transform:translateY(-5px);
}

.product-btn-light{
padding:18px 38px;
border:1px solid rgba(255,255,255,.15);
color:#fff;
text-decoration:none;
font-size:13px;
letter-spacing:2px;
font-weight:600;
transition:.4s;
}

.product-btn-light:hover{
background:#fff;
color:#000;
transform:translateY(-5px);
}

/* ================= BOOK SHOOT PAGE ================= */



.book-shoot-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
}

/* IMAGE */

.book-shoot-image{
position:relative;
}

.book-shoot-image img{
width:100%;
height:780px;
object-fit:cover;
border-radius:20px;
}

/* BADGE */

.book-badge{
position:absolute;
bottom:30px;
left:-40px;
background:#fff;
padding:30px;
width:220px;
border-radius:18px;
}

.book-badge h3{
font-size:60px;
font-family:'Cormorant Garamond',serif;
color:#000;
margin-bottom:8px;
}

.book-badge p{
margin:0;
color:#555;
}

/* CONTENT */

.book-shoot-content span{
display:block;
font-size:13px;
letter-spacing:4px;
color:#999;
margin-bottom:15px;
}

.book-shoot-content h1{
line-height:1;
font-family:'Cormorant Garamond',serif;
color:#fff;
margin-bottom:25px;
}

.book-shoot-content p{
font-size:16px;
line-height:2;
color:#bbb;
margin-bottom:40px;
}

/* FORM */

.book-form .form-group{
margin-bottom:20px;
}

.book-form input,
.book-form select,
.book-form textarea{
width:100%;
padding:18px;
background:#111;
border:1px solid rgba(255,255,255,.08);
color:#fff;
font-size:14px;
outline:none;
}

.book-form textarea{
height:160px;
resize:none;
}

.book-submit-btn{
padding:18px 40px;
background:#fff;
border:none;
color:#000;
font-size:13px;
letter-spacing:2px;
font-weight:600;
cursor:pointer;
transition:.4s;
}

.book-submit-btn:hover{
background:#ddd;
transform:translateY(-4px);
}


/* ================= PORTFOLIO PAGE ================= */

.portfolio-page{
background:#0a0a0a;
}

/* HEADING */

.portfolio-heading{
text-align:center;
max-width:800px;
margin:auto;
margin-bottom:70px;
}

.portfolio-heading span{
display:block;
font-size:13px;
letter-spacing:4px;
color:#999;
margin-bottom:15px;
}

.portfolio-heading h1{
line-height:.95;
font-family:'Cormorant Garamond',serif;
color:#fff;
margin-bottom:25px;
}

.portfolio-heading p{
line-height:1.8;
color:#bbb;
}

/* GRID */

.portfolio-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
}

/* CARD */

.portfolio-card{
position:relative;
overflow:hidden;
border-radius:20px;
}

.portfolio-card img{
width:100%;
height:500px;
object-fit:cover;
transition:.7s;
}

.portfolio-card:hover img{
transform:scale(1.08);
}

/* OVERLAY */

.portfolio-overlay{
position:absolute;
left:0;
bottom:0;
width:100%;
padding:35px;
background:linear-gradient(to top,
rgba(0,0,0,.95),
transparent);
}

.portfolio-overlay span{
display:block;
font-size:12px;
letter-spacing:3px;
color:#ddd;
margin-bottom:12px;
}

.portfolio-overlay h3{
font-size:42px;
line-height:1.1;
font-family:'Cormorant Garamond',serif;
color:#fff;
margin-bottom:20px;
}

.portfolio-overlay a{
display:inline-block;
text-decoration:none;
color:#fff;
font-size:13px;
letter-spacing:2px;
border-bottom:1px solid #fff;
padding-bottom:5px;
}

.footer-grid ul{
list-style:none;
height:200px;
overflow-y:auto;
padding-right:8px;
}

/* SCROLLBAR WIDTH */

.footer-grid ul::-webkit-scrollbar{
width:3px;
}

/* TRACK */

.footer-grid ul::-webkit-scrollbar-track{
background:#111;
border-radius:10px;
}

/* THUMB */

.footer-grid ul::-webkit-scrollbar-thumb{
background:#fff;
border-radius:10px;
}

/* HOVER */

.footer-grid ul::-webkit-scrollbar-thumb:hover{
background:#cfcfcf;
}

/* WHATSAPP FLOATING ICON */

.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
width:65px;
height:65px;
background:#25D366;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:34px;
text-decoration:none;
z-index:99999;
box-shadow:0 10px 25px rgba(0,0,0,.25);
transition:.4s;
animation:whatsappPulse 1.5s infinite;
}

/* HOVER */

.whatsapp-float:hover{
transform:scale(1.1);
color:#fff;
}

/* PULSE ANIMATION */

@keyframes whatsappPulse{

0%{
box-shadow:0 0 0 0 rgba(37,211,102,.7);
}

70%{
box-shadow:0 0 0 18px rgba(37,211,102,0);
}

100%{
box-shadow:0 0 0 0 rgba(37,211,102,0);
}

}

.how-we-work {
  background: #050505;
}



/* grid */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* card */
.step {
  background: #0e0e0e;
  border: 1px solid #1c1c1c;
  padding: 28px;
  border-radius: 14px;

  transition: 0.3s ease;
}

/* simple hover (no heavy effects) */
.step:hover {
  transform: translateY(-6px);
  border-color: #333;
  background: #121212;
}

/* number */
.number {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
    background: #1a1a1a;
    color: #ffffff;
    margin-bottom: 15px;
}

/* text */
.step h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: #b0b0b0;
  line-height: 1.6;
}
.work-process{
    background:#0a0a0a;
    color:#fff;
    overflow:hidden;
}

.section-heading{
    text-align:center;
    margin-bottom:80px;
}

.section-heading span{
    color:#c9a96e;
    letter-spacing:4px;
    font-size:13px;
    text-transform:uppercase;
}

.section-heading h2{
    font-size:65px;
    font-weight:300;
    margin:15px 0;
    color:#fff;
}

.section-heading p{
    color:#999;
    max-width:650px;
    margin:auto;
    line-height:1.8;
}

.process-wrapper{
    position:relative;
    max-width:1100px;
    margin:auto;
}

.process-wrapper::before{
    content:"";
    position:absolute;
    left:50%;
    top:0;
    width:1px;
    height:100%;
    background:rgba(255,255,255,.15);
}

.process-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:relative;
}

.process-item:nth-child(even){
    flex-direction:row-reverse;
}

.process-number{
    width:140px;
    height:140px;
    border:1px solid rgba(255,255,255,.15);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    font-weight:200;
    color:#c9a96e;
    background:#111;
    z-index:2;
}

.process-content{
    width:42%;
    background:#111;
    padding:40px;
    border:1px solid rgba(255,255,255,.08);
}

.process-content h3{
    font-size:28px;
    margin-bottom:15px;
    font-weight:400;
}

.process-content p{
    color:#aaa;
    line-height:1.8;
}

.why-choose-section{
    background:#0b0b0b;
    color:#fff;
}



.choose-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.choose-card{
    background:#111;
    padding:45px 35px;
    border:1px solid rgba(255,255,255,.08);
    transition:.4s;
    position:relative;
}

.choose-card:hover{
    transform:translateY(-10px);
    border-color:#c9a96e;
}

.choose-card span{
    font-size:60px;
    color:#c9a96e;
    font-weight:200;
    display:block;
    margin-bottom:20px;
}

.choose-card h3{
    font-size:24px;
    font-weight:400;
    margin-bottom:15px;
}

.choose-card p{
    color:#999;
    line-height:1.8;
}

@media(max-width:991px){

    .choose-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-title h2{
        font-size:42px;
    }
}

@media(max-width:576px){


    .section-title h2{
        font-size:32px;
    }

    .why-choose-section{
        padding:80px 0;
    }
}

/* MOBILE */

@media(max-width:991px){
  .choose-grid{
        grid-template-columns:repeat(2,1fr);
    }
.portfolio-grid{
grid-template-columns:1fr;
}

.steps {
    grid-template-columns: repeat(2, 1fr);
  }

.book-shoot-grid{
grid-template-columns:1fr;
}

.book-shoot-content h1{
font-size:55px;
}


  .services-page-grid {
    grid-template-columns: 1fr;
  }

  .about-page-wrap {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .nav-links,
  .book-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-content h1 {
    font-size: 70px;
  }

  .instagram-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links,
  .book-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links,
  .book-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 48px;
  }


.product-detail-grid{
grid-template-columns:1fr;
}

.product-detail-content h1{
font-size:56px;
}

.main-image img{
height:550px;
}

.process-content{
    padding:20px;
}


    .process-wrapper::before{
        left:35px;
    }

    .process-item,
    .process-item:nth-child(even){
        flex-direction:column;
        align-items:flex-start;
        padding-left:80px;
    }

    .process-number{
        width:70px;
        height:70px;
        font-size:24px;
        position:absolute;
        left:0;
    }

    .process-content{
        width:100%;
    }

    .section-heading h2{
        font-size:42px;
    }
}
@media(max-width:767px){

.portfolio-overlay h3{
    font-size: 30px;
}
.portfolio-overlay {
font-size: 20px;
}
.portfolio-card img{
height:380px;
}

.product-detail-content h1{
font-size:34px;
}

.main-image img{
height:300px;
}

.thumb{
height:80px;
}

.product-buttons{
flex-direction:column;
}

.product-btn-dark,
.product-btn-light{
text-align:center;
}

  section {
    padding: 60px 0;
  }
  .about-box {
    padding: 12px;
  }
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 35px;
  }

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 24px;
  }

  .mobile-menu {
    width: 100%;
  }

  .logo img {
    max-width: 140px;
  }

  .hero {
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 52px;
  }

  .hero-content span {
    font-size: 11px;
    letter-spacing: 4px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns a {
    text-align: center;
  }

  .instagram-grid {
    grid-template-columns: 1fr;
  }

  .insta-card img {
    height: 260px;
  }

  .about-wrap,
  .contact-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .gallery-grid {
    grid-template-columns: 2fr 1fr;
  }




.book-shoot-image img{
height:350px;
}

.book-badge{
left:20px;
bottom:20px;
width:180px;
padding:20px;
}

.book-badge h3{
font-size:42px;
}

.book-shoot-content h1{
font-size:40px;
}


  .nav-links,
  .book-btn {
    display: none;
  }

  .hero-btns {
    flex-direction: column;
  }

  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-img img {
    height: 420px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
}
/* ================= HERO SLIDER ================= */

.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 1s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* IMAGE */

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  animation: zoomSlider 10s linear infinite alternate;
}

/* OVERLAY */

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.88),
    rgba(0, 0, 0, 0.35)
  );
}

/* CONTENT */

.hero-slider .content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  max-width: 760px;
  color: #fff;
  z-index: 5;
}

.hero-slider .content span {
  display: block;
  font-size: 13px;
  letter-spacing: 6px;
  margin-bottom: 25px;
  color: #ddd;
}

.hero-slider .content h1 {
  line-height: 0.88;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 30px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-slider .content p {
  max-width: 620px;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 40px;
}

/* BUTTONS */

.hero-btns {
  display: flex;
  gap: 20px;
}

.hero-btns a {
  padding: 18px 42px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  transition: 0.4s;
}

.btn1 {
  background: #fff;
  color: #000;
}

.btn2 {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.hero-btns a:hover {
  transform: translateY(-5px);
}

/* DOTS */

.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: 0.4s;
}

.dot.active {
  background: #fff;
}

/* ANIMATION */

@keyframes zoomSlider {
  0% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1.15);
  }
}

/* MOBILE */

@media (max-width: 767px) {
  .content {
    left: 20px;
    right: 20px;
  }

  .content span {
    font-size: 11px;
    letter-spacing: 4px;
  }

  .hero-btns {
    flex-direction: row;
  }

  .hero-btns a {
    text-align: center;
  }
  .hero-btns a {
    padding: 10px 16px;
  }
  .hero-slider .content,
  .services-hero-content,
  .about-hero-content {
    max-width: 100%;
  }
  .hero-slider .content span,
  .services-hero-content span,
  .about-hero-content span {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .hero-slider .content h1,
  .hero-slider .content p,
  .services-hero-content h1,
  .services-hero-content p,
  .about-hero-content h1,
  .about-hero-content p {
    margin-bottom: 10px;
  }
 

  .about-page-img img {
    height: 450px;
  }

  .service-img img {
    height: 250px;
  }
  .gallery-page-grid{
grid-template-columns:1fr;
}

.gallery-item img{
height:300px;
}

.gallery-filter{
gap:10px;
}

.gallery-filter button{
padding:12px 20px;
font-size:12px;
}
.contact-form-box{
padding:30px 20px;
}

.map-section iframe{
height:350px;
}

  .steps {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 28px;
  }
      .choose-grid{
        grid-template-columns:1fr;
    }
    .choose-card{
      padding: 20px;
    }
.choose-card span {
    font-size: 49px;
    margin-bottom: 0;
}
}