:root {
    --primary: #111;
    --accent: #000;
    --light: #f5f5f5;
    --text: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.d-flex {
    display: flex;
}

.align-item-center {
    display: flex;
    align-items: center;
}

.justify-content-between {
    display: flex;
    justify-content: space-between;
}

.justify-content-between-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gap10 {
    gap: 10px;
}

.gap20 {
    gap: 20px;
}

.gap30 {
    gap: 30px;
}

.gap40 {
    gap: 40px;
}

/* ===== Header Top ===== */
.headerUp {
    background: #000;
    color: #fff;
    font-size: 14px;
    padding: 10px 60px;
}

.headerUp .location {
    display: flex;
    align-items: center;
    gap: 8px;
}

.headerUp .location a {
    color: #fff;
}

.headerUp .socialLink a {
    color: #fff;
    margin-left: 8px;
}

/* ================= NAVBAR ================= */

nav {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    z-index: 1000;
    transition: 0.3s;
}

nav.sticky {
    background: #111;
    padding: 15px 60px;
}

/* LEFT */
.nav-left {
    display: flex;
    gap: 40px;
}

.nav-left a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    transition: 0.3s;
}

.nav-left a:hover {
    color: #000;
}

nav.sticky .nav-left a {
    color: #fff !important;
}

/* CENTER LOGO */
.logo {
    /* position: absolute;
    left: 50%;
    transform: translateX(-50%); */
    color: #000;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo img {
    width: 60px;
}

/* RIGHT */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.book-btn {
    background: #000;
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
}
nav.sticky .book-btn {
    background: #fff;
    color: #000;
}

/* ================= HERO SLIDER ================= */

.hero {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 90%;
}

.hero-content h4 {
    font-style: italic;
    font-weight: 300;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 50px;
    margin-bottom: 30px;
}

.service-btn {
    padding: 15px 35px;
    border: none;
    background: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.5s all ease;
    color: #000;
}

.service-btn:hover,
.book-btn:hover {
    background: #fff;
    transition: 0.5s all ease;
    color: #000;
}

/* ================= HAMBURGER ================= */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #000;
    transition: 0.3s;
}

#navbar.sticky .menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}





/* About Section */
.about-section {
    background: #f5f3f1;
    padding: 80px 0;
    position: relative;
}

.about-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT IMAGE */
.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* RIGHT CONTENT */
.about-content {
    flex: 1;
}

.subtitle {
    color: #000;
    font-style: italic;
    display: block;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-content p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* FEATURES */
.about-features {
    display: flex;
    gap: 60px;
}

.about-features ul {
    list-style: none;
    padding: 0;
}

.about-features li {
    margin-bottom: 15px;
    color: #333;
    font-weight: 500;
}

.about-features i {
    color: #000;
    margin-right: 10px;
}

/* SCROLL BUTTON */
#scrollTopBtn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #000;
    border: none;
    padding: 14px 16px;
    cursor: pointer;
    display: none;
}

#scrollTopBtn i {
    color: #000;
}

/* About Section end*/

/* Price Start */
.price-section {
    width: 100%;
    background: #f5f3f1;
}

.price-section .container {
    padding: 0 15px;
    max-width: 1200px;
    margin: auto;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    font-size: 14px;
    color: var(--accent);
    font-style: italic;
    display: block;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.section-title h2 {
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: "";
    width: 50px;
    height: 2px;
    background: var(--accent);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Pricing Grid */
.price-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

/* Item */
.price-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-size: 15px;
    color: var(--primary);
}

.price-item i {
    margin-right: 10px;
    color: var(--accent);
    font-size: 14px;
}

.price-name {
    white-space: nowrap;
}

.price-dots {
    flex: 1;
    border-bottom: 1px dotted #bbb;
    margin: 0 10px;
}

.price {
    color: var(--accent);
    font-weight: 600;
}

/* Section spacing */
.service-block {
    margin-bottom: 80px;
}

/* Animation */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* Price end */


.appointment-section {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 520px) 1fr;
}

.appointment-image {
    background-size: cover;
    background-position: center;
}

.left-img {
    background-image: url("assets/images/slide5.jpeg");
}

.right-img {
    background-image: url("assets/images/slide6.jpeg");
}

.appointment-form {
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px;
}

.appointment-header {
    text-align: center;
    margin-bottom: 40px;
}

.appointment-header span {
    font-style: italic;
    color: var(--accent);
    display: block;
    margin-bottom: 8px;
}

.appointment-header h2 {
    font-size: 32px;
    letter-spacing: 2px;
    color: #fff;
}

.appointment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-box {
    position: relative;
}

.input-box input,
.input-box select {
    width: 100%;
    background: var(--primary);
    border: 1px solid #2a2a2a;
    padding: 14px 44px 14px 16px;
    color: #fff;
}

.input-box i,
.input-box svg {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.appointment-btn {
    grid-column: 1 / -1;
    background: var(--light);
    border: none;
    padding: 16px;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
}





.testimonial-section {
    padding: 100px 20px;
    text-align: center;
    background: #fff;
}

.testimonial-header span {
    color: var(--accent);
    font-style: italic;
    display: block;
    margin-bottom: 10px;
}

.testimonial-header h2 {
    font-size: 32px;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 50px;
}

.testimonial-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.testimonial-content {
    max-width: 700px;
}

.testimonial-content p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial-content h4 {
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.testimonial-stars i {
    color: var(--accent);
    margin: 0 2px;
}

.testimonial-avatars {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.testimonial-avatars img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    opacity: 0.4;
    cursor: pointer;
    transition: 0.3s;
}

.testimonial-avatars img.active {
    opacity: 1;
    transform: scale(1.1);
}

.testimonial-nav {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
    font-size: 22px;
}

.testimonial-nav svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
    display: none;
}



.lux-contact-gallery {
    background: var(--light);
    padding: 100px 20px;
}

/* Top Cards */
.lux-info-cards {
    max-width: 1100px;
    margin: 0 auto 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.lux-card {
    padding: 60px;
    text-align: center;
}

.visit-card {
    background: #f6d7bc;
}

.hours-card {
    background: #000;
    color: #fff;
}

.lux-card span {
    font-style: italic;
    color: var(--accent);
}

.lux-card h3 {
    margin: 15px 0;
    letter-spacing: 2px;
}

.lux-card p {
    color: var(--text);
    margin: 10px 0;
}

.hours-card p {
    color: #ccc;
}

.lux-card button {
    margin-top: 25px;
    padding: 12px 28px;
    border: none;
    background: var(--accent);
    cursor: pointer;
    font-weight: 600;
}

/* Gallery */
.lux-gallery {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.lux-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Instagram Overlay */
.lux-instagram {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #000;
    color: #fff;
    padding: 30px 40px;
    text-align: center;
}

.lux-instagram i {
    font-size: 28px;
    color: var(--accent);
    display: block;
    margin-bottom: 10px;
}

.services-wrapper {
    max-width: 1400px;
    margin: 40px auto;
    background: #ffffff;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.services-wrapper .title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.service-column {
    padding: 20px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    border: 1px solid #000;
    color: #000;
    font-size: 16px;
    margin-bottom: 8px;
}


.service-title {
    font-weight: 500;
}

.bookNowBtn {
    background: #000;
    color: #fff;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
}


.footer {
    background: #000;
    color: var(--light);
    padding-top: 60px;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

/* TOP SECTION */
.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--light);
}

.footer-col p {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-col span {
    color: var(--light);
}

.footer-col i {
    margin-right: 8px;
    color: var(--light);
}

.footer-col a {
    text-decoration: none;
    color: var(--light);
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--accent);
}

/* Phone Highlight */
.phone a {
    font-size: 20px;
    font-weight: bold;
    color: var(--light);
}

/* Social Icons */
.social-icons {
    margin-top: 15px;
}

.social-icons a {
    margin-right: 15px;
    font-size: 16px;
    color: var(--light);
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--light);
}

/* Newsletter */
.newsletter form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter input {
    padding: 12px;
    border: none;
    background: var(--primary);
    color: var(--light);
}

.newsletter input::placeholder {
    color: var(--text);
}

.newsletter button {
    padding: 12px;
    border: none;
    background: var(--light);
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter button:hover {
    opacity: 0.8;
}

#formMessage {
    margin-top: 10px;
    font-size: 13px;
}

/* BOTTOM SECTION */
.footer-bottom {
    border-top: 1px solid #222;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text);
}

.footer-bottom p {
    color: var(--light);
}
.footer-links a {
    margin-left: 20px;
    text-decoration: none;
    color: var(--light);
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--light);
}







/* ================= INSTAGRAM FEED ================= */
.ig-feed-section {
    padding: 100px 20px;
    text-align: center;
}

.ig-feed-section h2 {
    font-size: 36px;
    font-weight: 500;
    color: var(--accent);
}

.ig-subtitle {
    margin: 10px 0 50px;
    font-size: 12px;
    letter-spacing: 2px;
    color: #000;
}

/* GRID */
.ig-feed-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* POST CARD */
.ig-post {
    /* background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.02)),
    var(--glass-bg);

  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);

  box-shadow:
  0 30px 80px rgba(0, 0, 0, 0.55),
  inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-radius: 10px; */
    border: 1px solid #000;
    text-align: left;
}

/* HEADER */
.ig-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.ig-user {
    display: flex;
    gap: 10px;
    align-items: center;
}

.ig-user img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.ig-user strong {
    font-size: 13px;
    color: var(--accent);
}

.ig-user span {
    display: block;
    font-size: 11px;
    color: var(--muted);
}

.ig-btn {
    font-size: 12px;
    padding: 6px 10px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
}

/* MEDIA */
.ig-media img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

/* FOOTER */
.ig-footer {
    padding: 10px;
    font-size: 13px;
}

.ig-footer a {
    color: var(--accent);
    text-decoration: none;
    font-size: 12px;
}

.likes {
    margin: 6px 0;
    font-weight: 600;
    color: var(--muted);
}

.caption {
    line-height: 1.4;
    color: #888;
}

.comments {
    font-size: 12px;
    color: var(--muted);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1000px) {
    .ig-feed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ig-feed-grid {
        grid-template-columns: 1fr;
    }

    .ig-media img {
        height: 420px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}