body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.sticky-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    /* Official WhatsApp Green */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    text-decoration: none;
    z-index: 9999;
    /* Higher than header and all sections */
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Tooltip text that appears on hover */
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: #2C2C2C;
    color: #FDFBF9;
    padding: 8px 15px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #2C2C2C;
}

/* Hover Effects */
.sticky-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #20ba5a;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.sticky-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

/* Pulsing Animation to catch the eye */
@keyframes whatsapp-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.sticky-whatsapp {
    animation: whatsapp-glow 2s infinite;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .sticky-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }

    .whatsapp-tooltip {
        display: none;
        /* Hide tooltip on mobile to save space */
    }
}


/* --- Header Wrapper --- */
.main-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background-color: #FDFBF9;
    position: sticky;
    top: 0;
    z-index: 2000;
    height: 90px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

/* --- Logo --- */
.main-header-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.main-header-nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.main-header-link {
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff4564;
    transition: color 0.3s ease;
}

.main-header-link:hover {
    color: #ab112b;
}

/* --- Buttons --- */
.main-header-button {
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    background-color: #ff7088;
    color: #FDFBF9;
    padding: 14px 28px;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: inline-block;
}

.main-header-button:hover {
    background-color: #ff4564;
}

.mobile-only-btn {
    display: none;
    /* Hidden on Desktop */
}

.main-header-menu-toggle {
    display: none;
    font-size: 32px;
    color: #2C2C2C;
    cursor: pointer;
    position: relative;
    z-index: 3000;
    transition: transform 0.3s ease;
}

/* --- Mobile Responsive Drawer --- */
@media (max-width: 992px) {
    .main-header-menu-toggle {
        display: block;
    }

    .desktop-only-btn {
        display: none;
    }

    .main-header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: #FDFBF9;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 2500;
        box-shadow: -15px 0 40px rgba(0, 0, 0, 0.1);
    }

    .main-header-nav.active {
        right: 0;
    }

    .main-header-link {
        font-size: 20px;
    }

    .mobile-only-btn {
        display: inline-block;
        margin-top: 20px;
        width: 200px;
        text-align: center;
    }
}



/* home-hero-section-start */
/* .home-hero-section {
    background-color: #FDFBF9;
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    
}

.home-hero-wrapper {
    display: flex;
    align-items: center;
    max-width: 1200px;
    gap: 60px;
    width: 100%;
}

.home-hero-content-box {
    flex: 1;
}

.home-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    color: #2C2C2C;
    display: block;
    margin-bottom: 20px;
}

.home-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 1.1;
    color: #2C2C2C;
    margin-bottom: 25px;
}

.home-hero-title em {
    font-style: italic;
    font-weight: 400;
}

.home-hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    line-height: 1.8;
    color: #4A4A4A;
    margin-bottom: 40px;
    max-width: 450px;
}

.home-hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.home-hero-button-primary {
    background-color: #2C2C2C;
    color: #FDFBF9;
    padding: 18px 35px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.home-hero-button-primary:hover {
    background-color: #4A4A4A;
}

.home-hero-button-secondary {
    color: #2C2C2C;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #2C2C2C;
    padding-bottom: 5px;
    transition: opacity 0.3s ease;
}

.home-hero-button-secondary:hover {
    opacity: 0.6;
}

.home-hero-image-box {
    flex: 1;
    position: relative;
}

.home-hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: grayscale(10%) contrast(105%);
}

@media (max-width: 1024px) {
    .home-hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .home-hero-section {
        padding: 60px 20px;
    }

    .home-hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .home-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 25px;
    }

    .home-hero-image {
        height: 400px;
    }
} */



.home-hero-section {
    position: relative;
    height: 100vh;
    /* width: 100%; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    background: url('/assets/images/banner/about-hero.jpg') no-repeat center center/cover;
    overflow: hidden;
}

/* --- The Readability Overlay --- */
.home-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient: Darker on the left where text sits, fading to transparent on the right */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

/* --- Foreground Content --- */
.home-hero-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.home-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.home-hero-breadcrumb a {
    color: rgba(253, 251, 249, 0.7);
    text-decoration: none;
}

.home-hero-breadcrumb span {
    color: #FDFBF9;
    font-weight: 600;
}

.home-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: #FDFBF9;
    line-height: 1.1;
    margin-bottom: 25px;
}

.home-hero-italic {
    font-style: italic;
    font-weight: 400;
    color: #ff7088;
}

.home-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(253, 251, 249, 0.9);
    max-width: 600px;
    margin-bottom: 40px;
    font-weight: 300;
}

/* --- EST. Badge --- */

/* --- Animated Scroll Line --- */
.home-hero-scroll {
    position: absolute;
    bottom: 0;
    right: 5%;
    height: 100px;
    width: 1px;
    z-index: 10;
}

.scroll-line {
    width: 100%;
    height: 100%;
    background: rgba(253, 251, 249, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FDFBF9;
    animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

.home-hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.home-hero-button-primary {
    background-color: #ff7088;
    color: #FDFBF9;
    padding: 18px 35px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.home-hero-button-primary:hover {
    background-color: #ff4564;
}

.home-hero-button-secondary {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 5px;
    transition: opacity 0.3s ease;
}

.home-hero-button-secondary:hover {
    opacity: 0.6;
}


/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .home-hero-section {
        height: 80vh;
        text-align: center;
        justify-content: center;
    }

    .home-hero-overlay {
        background: rgba(0, 0, 0, 0.5);
        /* Solid overlay for mobile */
    }

    .home-hero-breadcrumb {
        justify-content: center;
    }

    .home-hero-title {
        font-size: 48px;
    }

    .home-hero-subtitle {
        margin: 0 auto 40px;
        font-size: 15px;
    }

    .home-hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 25px;
    }
}

/* home-hero-section-end   */



/* home-serivce-section-start */
.home-service-section {
    background-color: #FDFBF9;
    padding: 100px 5%;
    text-align: center;
}

.home-service-header {
    margin-bottom: 60px;
}

.home-service-subtitle {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 600;
    color: #ff4564;
    display: block;
    margin-bottom: 10px;
}

.home-service-title {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 600;
    color: #ff7088;
    margin-top: 20px;
}

.home-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.home-service-card {
    text-decoration: none;
    transition: all 0.4s ease;
}

.home-service-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

.home-service-item {
    padding: 40px 30px;
    background-color: #ffffff;
    border-radius: 18px;
    /* Subtle lift from background */
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-service-item:hover {
    transform: translateY(-10px);
}

.home-service-icon {
    width: 30%;
    margin-bottom: 25px;
    /* Optional: making icons slightly subtle */
    opacity: 0.8;
}

.home-service-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #ff7088;
    margin-bottom: 15px;
}

.home-service-item-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 600;
    color: #4A4A4A;
    /* max-width: 250px; */
}

.home-service-footer {
    display: flex;
    justify-content: center;
}

.home-service-button-all {
    display: inline-block;
    padding: 18px 45px;
    border: 1px solid #ff7088;
    color: #ff7088;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.home-service-button-all:hover {
    background-color: #ff4564;
    color: #FDFBF9;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .home-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .home-service-section {
        padding: 60px 20px;
    }

    .home-service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home-service-title {
        font-size: 32px;
    }

    .home-service-item {
        padding: 30px 20px;
    }
}

/* home-serivce-section-end   */






/* home-gallery-section-start */
.home-gallery-section {
    background-color: #FDFBF9;
    padding: 100px 2.5%;
    /* Expanded width */
}

.home-gallery-header {
    text-align: center;
    margin-bottom: 0px;
    color: #ff4564;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.home-gallery-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    color: #ff7088;
    margin-top: 10px;
}

.home-gallery-custom-grid {
    display: flex;
    gap: 15px;
    max-width: 100%;
    /* Spans the full width of the container */
}

.home-gallery-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.home-gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    background-color: #f4f4f4;
}

.home-gallery-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}


.home-gallery-item:hover .home-gallery-img {
    transform: scale(1.05);
}

/* --- Lightbox --- */
.home-gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 44, 44, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.home-gallery-lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.gallery-close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 10002;
}

.home-gallery-lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {

    .home-gallery-custom-grid {
        flex-wrap: wrap;
    }

    .home-gallery-column {
        flex: 1 1 45%;
        /* 2 columns on tablet */
    }
}

@media (max-width: 600px) {
    .home-gallery-section {
        display: none;
    }

    .home-gallery-column {
        flex: 1 1 100%;
        /* 1 column on mobile */
    }

    .item-big,
    .home-gallery-item {
        height: 350px !important;
    }
}



/* home-gallery-section-end   */


/* mobile-gallery-section-start */

.mobile-gallery-section {
    display: none;
}

@media (max-width: 600px) {
    .mobile-gallery-section {
        display: block;
        padding: 60px 0;
        background-color: #ffffff;
        overflow: hidden;
    }

    .mobile-gallery-header {
        text-align: center;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .mobile-gallery-subtitle {
        font-family: 'Montserrat', sans-serif;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 4px;
        color: #ff4564;
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
    }

    .mobile-gallery-title {
        font-family: 'Playfair Display', serif;
        font-size: 60px;
        color: #ff7088;
    }

    .mobile-gallery-swiper {
        width: 100%;
        padding-bottom: 20px;
    }

    .mobile-gallery-item {
        width: 80%;
        /* Adjust this to see more/less of the next slide */
        transition: transform 0.5s ease;
        height: 10%;
    }

    .mobile-gallery-img {
        width: 100%;
        height: 480px;
        /* High-end vertical gallery look */
        object-fit: cover;
        border-radius: 12px;
        user-select: none;
        -webkit-user-drag: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .swiper-wrapper{
        height: 75% !important;
    }
}

/* mobile-gallery-section-end   */


/* home-highlight-section-start */
.home-highlight-section {
    background-color: #FDFBF9;
    padding: 100px 5%;
    text-align: center;
    overflow: hidden;
}

.home-highlight-header {
    margin-bottom: 80px;
}

.home-highlight-subtitle {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 12px;
    color: #ff4564;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.home-highlight-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    color: #ff7088;
    margin-top: 20px;
}

.home-highlight-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.home-highlight-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 0 40px;
}

/* Text alignment for symmetry */
.home-highlight-column:first-child {
    text-align: right;
}

.home-highlight-column:last-child {
    text-align: left;
}

.home-highlight-divider {
    width: 2px;
    background-color: #ff4564;
    margin: 0 20px;
}

.home-highlight-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #ff9faf;
    margin-bottom: 15px;
    font-weight: 600;
}

.home-highlight-item-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 600;
    letter-spacing: 0.7px;
    color: #555;
    /* max-width: 350px; */
    /* Keeps the description aligned to the correct side */
    display: inline-block;
}

.home-highlight-footer {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(44, 44, 44, 0.1);
    padding-top: 30px;
    margin-left: auto;
    margin-right: auto;
}

.home-highlight-item.centered {
    text-align: center;
    /* max-width: 500px; */
}

/* Mobile Responsiveness */
@media (max-width: 850px) {
    .home-highlight-container {
        flex-direction: column;
    }

    .home-highlight-divider {
        display: none;
    }

    .home-highlight-column {
        text-align: center !important;
        padding: 0;
        gap: 40px;
    }

    .home-highlight-column:first-child {
        margin-bottom: 40px;
    }

    .home-highlight-item-desc {
        max-width: 100%;
    }
}

/* home-highlight-section-end   */



/* home-cta-section-start */
.home-cta-section {
    position: relative;
    padding: 140px 5%;
    background-image: url('https://images.unsplash.com/photo-1632345031435-8727f6897d53?q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.home-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #d27787c2;
    z-index: 1;
}

.home-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: #000000;
}

.home-cta-subtitle {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 13px;
    display: block;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 1000;
}

.home-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 6vw, 64px);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
    color: #7f0015;
}

.home-cta-description {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.8;
    margin-bottom: 45px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    font-weight: 600;
    margin-right: auto;
}

.home-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 50px;
    background-color: #FDFBF9;
    color: #2C2C2C;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.home-cta-btn i {
    font-size: 18px;
    transition: transform 0.4s ease;
}

.home-cta-btn:hover {
    background-color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.home-cta-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .home-cta-section {
        background-attachment: scroll;
        padding: 100px 5%;
    }
}

/* home-cta-section-end   */



/* home-about-section-start */
.home-about-section {
    background-color: #FDFBF9;
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.home-about-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Big Ghost Text Background */
.home-about-backdrop {
    position: absolute;
    top: -40px;
    right: -20px;
    font-family: 'Playfair Display', serif;
    font-size: 250px;
    color: #ff7088;
    opacity: 0.2;
    font-style: italic;
    pointer-events: none;
    z-index: 1;
}

.home-about-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

/* Image Box Styling - The "Editorial" look */
.home-about-image-box {
    width: 100%;
    position: relative;
    margin-top: 60px;
}

.home-about-image {
    width: 100%;
    height: 800px;
    object-fit: cover;
    /* filter: sepia(20%) contrast(105%); */
}

.home-about-image-caption {
    position: absolute;
    bottom: -3%;
    right: -8%;
    background-color: #ff7088;
    color: #FDFBF9;
    padding: 15px 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Text Box Styling */
.home-about-text-box {
    width: 100%;
}

.home-about-subtitle {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 12px;
    color: #ff4564;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.home-about-title {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    line-height: 1.1;
    color: #ff7088;
    margin-bottom: 40px;
}

.home-about-description {
    font-family: 'Montserrat', sans-serif;
    max-width: 550px;
}

.home-about-para {
    font-size: 15px;
    line-height: 1.8;
    color: #4A4A4A;
    margin-bottom: 25px;
}

.home-about-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 24px;
    color: #ff7088;
    margin: 40px 0;
    padding-left: 30px;
    border-left: 2px solid #ff7088;
    line-height: 1.4;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .home-about-content-wrapper {
        flex-direction: column;
        gap: 60px;
    }

    .home-about-backdrop {
        font-size: 150px;
        top: 20px;
    }

    .home-about-image-box {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .home-about-title {
        font-size: 42px;
    }
}

/* home-about-section-end   */




/* home-testimonial-section-start */
/* --- Home Testimonial Section --- */
.home-testimonial-section {
    background-color: #FDFBF9;
    padding: 120px 5%;
    text-align: center;
    position: relative;
}

.home-testimonial-header {
    margin-bottom: 60px;
}

.home-testimonial-subtitle {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 12px;
    font-weight: 600;
    color: #ff4564;
    display: block;
    margin-bottom: 15px;
}

.home-testimonial-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    color: #ff7088;
    font-weight: 600;
}

/* --- Carousel Container --- */
.home-testimonial-carousel-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    /* Space for arrows to live outside the text */
    padding: 0 40px;
}

/* --- Arrow Alignment (Vertically Centered) --- */
.home-testimonial-nav {
    position: absolute;
    top: 50%;
    left: -60px;
    /* Adjust this to move arrows further out or closer in */
    right: -60px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 100;
    pointer-events: none;
}

.home-testimonial-nav i {
    font-size: 32px;
    color: #ff7088;
    cursor: pointer;
    pointer-events: auto;
    padding: 15px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.home-testimonial-nav i:hover {
    opacity: 0.5;
    transform: scale(1.1);
}

/* --- Slick Wrapper Reset --- */
.home-testimonial-slick {
    display: flex !important;
    flex-direction: column;
    /* Forces dots to follow content flow */
    margin-bottom: 0 !important;
}

.home-testimonial-item {
    outline: none !important;
    padding: 10px 0;
}

/* --- Content Styling --- */
.home-testimonial-stars {
    color: #ff7088;
    font-size: 16px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.home-testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 4vw, 28px);
    font-style: italic;
    line-height: 1.6;
    color: #2C2C2C;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.home-testimonial-author {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.home-testimonial-service {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Custom Slick Dots (Pill Design Fix) --- */
.slick-dots {
    /* Overrides Slick's absolute positioning that pushes dots to the bottom */
    position: static !important;
    list-style: none;
    padding: 0;
    margin: 40px 0 0 0 !important;
    /* Controlled gap from text */
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.slick-dots li {
    margin: 0 5px;
    display: inline-block;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 2px;
    padding: 0;
    background: #ff7088;
    border: 0;
    outline: none;
    cursor: default;
    /* Keep non-interactable as requested */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slick-dots li.slick-active button {
    background: #980c23;
    width: 45px;
    /* Modern expanded effect */
}

/* --- Responsive Layout --- */
@media (max-width: 1150px) {

    /* Move arrows inside the padding when screen narrows */
    .home-testimonial-nav {
        left: 0;
        right: 0;
    }
}

@media (max-width: 768px) {
    .home-testimonial-section {
        padding: 80px 5%;
    }

    .home-testimonial-nav {
        display: none;
        /* Mobile users use autoplay/swipe (if enabled) */
    }

    .home-testimonial-carousel-container {
        padding: 0;
    }

    .home-testimonial-main-title {
        font-size: 32px;
    }

    .home-testimonial-quote {
        font-size: 18px;
    }
}

/* home-testimonial-section-end   */


/* footer-section-start */
.home-footer {
    background-color: #FDFBF9;
    padding: 100px 5% 40px;
    border-top: 1px solid #eeeeee;
    color: #2C2C2C;
}

.home-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
}

.home-footer-logo {
    width: 50%;
}

/* Logo & About Column */
.home-footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-weight: 700;
}

.home-footer-logo span {
    color: #888;
}

.home-footer-about {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.home-footer-socials {
    display: flex;
    gap: 15px;
}

.home-footer-socials a {
    font-size: 20px;
    text-decoration: none;
    color: #2C2C2C;
    transition: transform 0.3s ease, color 0.3s ease;
}

.home-footer-socials a:hover {
    color: #ff7088;
    transform: translateY(-3px);
}

/* Titles & Lists */
.home-footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    font-weight: 600;
}

.home-footer-links,
.home-footer-contact {
    list-style: none;
    padding: 0;
}

.home-footer-links li,
.home-footer-contact li {
    margin-bottom: 15px;
}

.home-footer-links a,
.home-footer-contact a {
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.home-footer-links a:hover {
    color: #ff7088;
    padding-left: 5px;
}

.home-footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-footer-contact i {
    font-size: 18px;
    color: #2C2C2C;
}

.home-footer-contact p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    /* display: flex; */
    align-items: center;
    gap: 10px;
}

/* Bottom Bar */
.home-footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid #eeeeee;
    text-align: center;
}

.home-footer-bottom p {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #999;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .home-footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .home-footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .home-footer-socials,
    .home-footer-contact a {
        justify-content: center;
    }

    .home-footer-links a:hover {
        padding-left: 0;
    }
}

/* footer-section-end   */



/* service-hero-section-start */
.service-hero-section {
    background-color: #FDFBF9;
    height: 80vh;
    /* Shorter than home hero, focused on content */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 5%;
}

/* --- Creative Abstract Elements --- */

/* Massive Outlined Text in Background */
.service-hero-bg-text {
    position: absolute;
    bottom: -20px;
    font-family: 'Playfair Display', serif;
    font-size: 25vw;
    /* Reactive sizing */
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px #ff70882d;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

/* Soft ambient glow instead of an image */
.service-hero-circle-blur {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 400px;
    height: 400px;
    background: #ff708854;
    filter: blur(60px);
    z-index: 1;
    opacity: 0.3;
    border-radius: 50%;
}

/* --- Foreground Content --- */

.service-hero-container {
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.service-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-hero-breadcrumb a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-hero-breadcrumb a:hover {
    color: #2C2C2C;
}

.service-hero-breadcrumb span {
    color: #2C2C2C;
    font-weight: 600;
}

.service-hero-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 8vw, 90px);
    color: #2C2C2C;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 600;
}

.service-hero-highlight {
    font-style: italic;
    font-weight: 400;
    color: #ff7088;
    /* Subtle contrast */
}

.service-hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.8;
    color: #4A4A4A;
    max-width: 500px;
}

/* --- Scroll Indicator --- */
.service-hero-scroll-indicator {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-hero-scroll-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ff4564;
}

.service-hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #ff4564, transparent);
    position: relative;
    overflow: hidden;
}

.service-hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FDFBF9;
    animation: scroll-line-anim 2s infinite;
}

@keyframes scroll-line-anim {
    0% {
        top: -60px;
    }

    100% {
        top: 60px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .service-hero-section {
        height: auto;
        padding: 120px 5% 80px;
        text-align: center;
    }

    .service-hero-breadcrumb {
        justify-content: center;
    }

    .service-hero-description {
        margin: 0 auto;
    }

    .service-hero-scroll-indicator {
        align-items: center;
    }

    .service-hero-bg-text {
        bottom: 0px;
    }
}

/* service-hero-section-end   */



/* service-list-section-start */
.service-list-section {
    background-color: #FDFBF9;
    padding: 100px 5%;
    overflow: hidden;
}

.service-list-container {
    max-width: 1500px;
    margin: 0 auto;
}

.service-tag {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    color: #ff4564;
    margin-bottom: 0px;
    font-weight: 600;
    display: block;
}

.service-main-heading {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    margin-bottom: 20px;
    color: #ff7088;
}

.service-main-subtext {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    max-width: 600px;
    margin-bottom: 60px;
}


.service-list-btn {
    border: 1px solid #ff7088;
    padding: 15px 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    color: #ff7088;
    transition: all 0.4s ease;
}

.service-list-btn:hover {
    background-color: #ff4564;
    color: #fff;
}

/* --- Accordion Styling --- */
.service-nail-accordion {
    margin-bottom: 120px;
    /* border-top: 1px solid #eee; */
}

.service-nail-item {
    border-bottom: 1px solid #ffdae0;
    transition: border-color 0.4s ease;
}

.service-nail-item.active {
    border-color: #ff7088;
}

.service-nail-trigger {
    padding: 30px 0px 0px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

.service-nail-trigger h3 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 500;
}

.service-nail-trigger i {
    font-size: 24px;
    transition: transform 0.3s ease;
    color: #ff7088;
}

.service-nail-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-nail-content p {
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 30px;
    color: #666;
    line-height: 1.8;
    font-weight: 600;
    letter-spacing: 0.7px;
    /* max-width: 800px; */
}


/* Accordion Active State */
.service-nail-item.active .service-nail-content {
    max-height: 500px;
}

.service-nail-item.active .service-nail-trigger i {
    transform: rotate(45deg);
}

/* --- Hand & Foot Cards --- */
.service-care-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.service-care-card {
    background: #fff;
    padding: 50px;
    border: 1px solid #f0f0f0;
}

.service-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 20px;
    color: #ff7088;
}

.service-card-text {
    font-family: 'Montserrat', sans-serif;
    color: #555;
    line-height: 1.4;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
}

.service-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.service-feature-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-care-btn {
    border: 1px solid #ff7088;
    padding: 15px 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    color: #ff7088;
    transition: all 0.4s ease;
}

.service-care-btn:hover {
    background-color: #ff4564;
    color: #fff;
}


/* --- Promise Banner --- */
.service-promise-banner {
    background: #ff4564;
    color: #FDFBF9;
    padding: 100px 5%;
    text-align: center;
}

.service-promise-heading {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 60px;
}

.service-promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.promise-item h4 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 15px;
}

.promise-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.6;
}

@media (max-width: 768px) {

    .service-care-grid,
    .service-promise-grid {
        grid-template-columns: 1fr;
    }

    .service-main-heading {
        font-size: 40px;
    }

    .service-nail-trigger h3 {
        font-size: 25px;
    }

    .service-nail-content p {
        font-size: 15px;
    }

    .service-care-card {
        padding: 20px;
    }

    .service-card-text {
        font-size: 15px;
    }
}

/* service-list-section-end   */




/* gallery-hero-section-start */
/* --- Gallery Hero Section --- */
.gallery-hero-section {
    background-color: #FDFBF9;
    height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 5%;
}

.gallery-hero-circle-blur {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 400px;
    height: 400px;
    background: #ff708854;
    filter: blur(60px);
    z-index: 1;
    opacity: 0.3;
    border-radius: 50%;
}

/* --- Decorative Background Elements --- */
.gallery-hero-bg-text {
    position: absolute;
    bottom: -10%;
    font-family: 'Playfair Display', serif;
    font-size: 22vw;
    /* Massive and responsive */
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px #ff70882d;
    /* Extremely subtle outline */
    pointer-events: none;
    z-index: 1;
}


/* --- Foreground Content --- */
.gallery-hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.gallery-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-hero-breadcrumb a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gallery-hero-breadcrumb a:hover {
    color: #2C2C2C;
}

.gallery-hero-breadcrumb span {
    color: #2C2C2C;
    font-weight: 600;
}

.gallery-hero-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(50px, 9vw, 100px);
    /* Massive but fluid */
    color: #2C2C2C;
    line-height: 1;
    margin-bottom: 30px;
    font-weight: 600;
}

.gallery-hero-highlight {
    font-style: italic;
    font-weight: 400;
    color: #ff7088;
}

.gallery-hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.8;
    color: #4A4A4A;
    max-width: 550px;
    margin-bottom: 60px;
}

/* --- Bottom Hint / Line --- */
.gallery-hero-filter-hint {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gallery-hero-line {
    width: 80px;
    height: 1px;
    background-color: #2C2C2C;
}

.gallery-hero-hint-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #888;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .gallery-hero-section {
        height: auto;
        padding: 50px 5% 100px 5%;
        text-align: center;
    }

    .gallery-hero-breadcrumb {
        justify-content: center;
    }

    .gallery-hero-description {
        margin: 0 auto 50px;
    }

    .gallery-hero-filter-hint {
        justify-content: center;
    }

    .gallery-hero-bg-text {
        bottom: 0px;
    }
}

@media (max-width: 480px) {
    .gallery-hero-main-title {
        font-size: 45px;
    }
}

/* gallery-hero-section-end   */





/* contact-hero-section-start */
/* --- Contact Hero Core --- */
.contact-hero-section {
    background-color: #FDFBF9;
    height: 70vh;
    /* Slightly shorter to bring the form up sooner */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 5%;
}

/* --- Massive Watermark Effect --- */
.contact-hero-bg-text {
    position: absolute;
    bottom: 5%;
    left: 14%;
    font-family: 'Playfair Display', serif;
    font-size: 15vw;
    line-height: 0.8;
    font-weight: 1000;
    color: transparent;
    -webkit-text-stroke: 2px #ff70882d;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

/* --- Foreground Layout --- */
.contact-hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.contact-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-hero-breadcrumb a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-hero-breadcrumb span {
    color: #2C2C2C;
    font-weight: 600;
}

.contact-hero-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(50px, 8vw, 110px);
    color: #2C2C2C;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 600;
}

.contact-hero-highlight {
    font-style: italic;
    font-weight: 400;
    color: #ff7088;
    /* Tan/Gold accent color */
}

.contact-hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #4A4A4A;
    max-width: 500px;
}

/* --- Animated Scroll Prompt --- */
.contact-hero-scroll-prompt {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-hero-scroll-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #2C2C2C;
}

.contact-hero-scroll-bar {
    width: 40px;
    height: 1px;
    background-color: #2C2C2C;
    position: relative;
    overflow: hidden;
}

.contact-hero-scroll-bar::after {
    content: '';
    position: absolute;
    left: -40px;
    width: 100%;
    height: 100%;
    background-color: #D2B48C;
    animation: scroll-slide 2s infinite;
}

@keyframes scroll-slide {
    0% {
        left: -40px;
    }

    50% {
        left: 40px;
    }

    100% {
        left: 40px;
    }
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .contact-hero-section {
        height: auto;
        padding: 140px 5% 100px;
        text-align: center;
    }

    .contact-hero-breadcrumb {
        justify-content: center;
    }

    .contact-hero-description {
        margin: 0 auto;
    }

    .contact-hero-scroll-prompt {
        justify-content: center;
    }
}

/* contact-hero-section-end   */




/* contact-form-section-start */
.contact-form-section {
    background-color: #FDFBF9;
    padding: 150px 5%;
}

.contact-form-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.contact-form-group.full-width {
    grid-column: span 2;
}

.contact-form-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 8px;
}

.contact-form-input,
.contact-form-textarea {
    border: none;
    border-bottom: 1px solid #ff7088;
    background: transparent;
    padding: 15px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #2C2C2C;
    outline: none;
    transition: border-color 0.4s ease;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    border-bottom-color: #750215;
}

.contact-form-textarea {
    min-height: 150px;
    resize: none;
}

/* Validation Feedback */
.contact-form-error {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    color: #d9534f;
    margin-top: 8px;
    display: none;
    letter-spacing: 1px;
}

.contact-form-group.invalid .contact-form-error {
    display: block;
}

.contact-form-group.invalid .contact-form-input {
    border-bottom-color: #d9534f;
}

/* Submit Button */
.contact-form-submit {
    margin-top: 60px;
    background-color: #2C2C2C;
    color: #FDFBF9;
    border: none;
    padding: 20px 60px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form-submit:hover {
    background-color: #444;
    padding-left: 70px;
}

@media (max-width: 768px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-group.full-width {
        grid-column: span 1;
    }
}

/* contact-form-section-end   */




/* contact-map-section-start */
/* --- Contact Map Section --- */
.contact-map-section {
    width: 100%;
    height: 500px;
    /* Adjust height as needed */
    background-color: #FDFBF9;
    overflow: hidden;
    line-height: 0;
    /* Removes tiny gap at bottom of iframe */
}

.contact-map-wrapper {
    width: 100%;
    height: 100%;
    /* Start desaturated to match minimalist theme */
    /* filter: grayscale(100%) opacity(0.8); */
    transition: filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-map-wrapper:hover {
    /* Transitions to full color when user interacts */
    filter: grayscale(0%) opacity(1);
}

.google-map-iframe {
    width: 100%;
    height: 100%;
    filter: contrast(1.1);
    /* Slightly sharpens the map appearance */
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .contact-map-section {
        height: 350px;
        /* Shorter map on mobile devices */
    }
}

/* contact-map-section-end   */




/* about-hero-section-start */
/* --- About Hero Section --- */
/* .about-hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    background: url('/assets/images/banner/about-hero.png') no-repeat center center/cover;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.about-hero-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.about-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-hero-breadcrumb a {
    color: rgba(253, 251, 249, 0.7);
    text-decoration: none;
}

.about-hero-breadcrumb span {
    color: #FDFBF9;
    font-weight: 600;
}

.about-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(45px, 7vw, 95px);
    color: #FDFBF9;
    line-height: 1.1;
    margin-bottom: 25px;
}

.about-hero-italic {
    font-style: italic;
    font-weight: 400;
    color: rgba(253, 251, 249, 0.8);
}

.about-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(253, 251, 249, 0.9);
    max-width: 600px;
    margin-bottom: 40px;
    font-weight: 300;
}

.about-hero-badge {
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-line {
    width: 40px;
    height: 1px;
    background-color: #FDFBF9;
}

.badge-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    color: #FDFBF9;
}

.about-hero-scroll {
    position: absolute;
    bottom: 0;
    right: 5%;
    height: 100px;
    width: 1px;
    z-index: 10;
}

.scroll-line {
    width: 100%;
    height: 100%;
    background: rgba(253, 251, 249, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FDFBF9;
    animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        height: 80vh;
        text-align: center;
        justify-content: center;
    }

    .about-hero-overlay {
        background: rgba(0, 0, 0, 0.5);
    }

    .about-hero-breadcrumb {
        justify-content: center;
    }

    .about-hero-subtitle {
        margin: 0 auto 40px;
        font-size: 15px;
    }

    .about-hero-badge {
        justify-content: center;
    }
} */



.about-hero-section {
    background-color: #FDFBF9;
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

}

.about-hero-wrapper {
    display: flex;
    align-items: center;
    max-width: 1200px;
    gap: 60px;
    width: 100%;
}

.about-hero-content-box {
    flex: 1;
}

.about-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    color: #2C2C2C;
    display: block;
    margin-bottom: 20px;
}

.about-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 1.1;
    color: #2C2C2C;
    margin-bottom: 25px;
}

.about-hero-title em {
    font-style: italic;
    font-weight: 400;
    color: #ff7088;
}

.about-hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    line-height: 1.8;
    color: #4A4A4A;
    margin-bottom: 40px;
    max-width: 450px;
}

.about-hero-image-box {
    flex: 1;
    position: relative;
}

.about-hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: grayscale(10%) contrast(105%);
}


.about-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-hero-breadcrumb a {
    color: rgba(81, 81, 81, 0.7);
    text-decoration: none;
}

.about-hero-breadcrumb span {
    color: #000000;
    font-weight: 600;
}


.about-hero-badge {
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-line {
    width: 40px;
    height: 1px;
    background-color: #000000;
}

.badge-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    color: #696969;
}

@media (max-width: 1024px) {
    .about-hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 60px 20px;
    }

    .about-hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .about-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .about-hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 25px;
    }

    .about-hero-image {
        height: 400px;
    }

    .about-hero-breadcrumb {
        justify-content: center;
    }

    .about-hero-badge {
        justify-content: center;
    }
}

/* about-hero-section-end   */




/* who-are-we-section-start */
/* --- Section Base --- */
.who-we-are-section {
    background-color: #FDFBF9;
    padding: 150px 5%;
    position: relative;
    overflow: hidden;
}

.who-we-are-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

/* --- Vertical Decorative Text --- */
.who-we-are-vertical-title {
    position: absolute;
    left: -80px;
    top: 50px;
    transform: rotate(-90deg);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: #ff7088;
    /* Tan Accent */
    opacity: 1;
}

/* --- Grid Layout --- */
.who-we-are-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
}

/* --- Text Styling --- */
.who-we-are-top-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #888;
    display: block;
    margin-bottom: 20px;
    padding-left: 20px;
}

.who-we-are-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(35px, 4vw, 55px);
    color: #2C2C2C;
    line-height: 1.2;
    margin-bottom: 40px;
}

.who-we-are-description p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #4A4A4A;
    margin-bottom: 25px;
}

.description-accent {
    font-weight: 500;
    color: #ff4564 !important;
    border-left: 2px solid #ff7088;
    padding-left: 20px;
    /* font-style: italic; */
}

/* --- Stats Area --- */
.who-we-are-stats {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #2C2C2C;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

/* --- Video & Image Block --- */
.who-we-are-image-block {
    position: relative;
    padding-bottom: 100px;
}

.image-wrapper-main {
    position: relative;
    width: 90%;
    z-index: 2;
    /* This ensures the zoom-in animation doesn't cause overflow issues */
    overflow: visible;
}

/* Updated for Video Tag */
.who-we-are-video {
    width: 100%;
    height: 600px;
    object-fit: cover;
    /* Acts like background-size: cover */
    display: block;
    box-shadow: 30px 30px 0px #F5F1ED;
    border-radius: 2px;
    /* Subtle edge smoothing */
}

.image-accent-frame {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    border: 1px solid #D2B48C;
    z-index: -1;
}

.image-wrapper-sub {
    position: absolute;
    bottom: 0;
    right: -10%;
    width: 250px;
    height: 350px;
    z-index: 3;
    border: 10px solid #D2B48C;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.image-wrapper-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .who-we-are-section {
        padding: 80px 5%;
    }

    .who-we-are-content-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .who-we-are-vertical-title {
        display: none;
    }

    .who-we-are-image-block {
        order: -1;
        /* Video comes first on mobile */
        padding-bottom: 50px;
    }

    .who-we-are-video {
        height: 400px;
        box-shadow: 15px 15px 0px #F5F1ED;
    }

    .image-wrapper-sub {
        right: 0;
        width: 180px;
        height: 250px;
    }
}

/* who-are-we-section-end   */




/* ms-section-start */
/* --- Mission & Vision Section --- */
.ms-mission-vision-section {
    background-color: #FDFBF9;
    padding: 80px 5%;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.ms-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ms-flex-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

/* --- Title Side --- */
.ms-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #ff4564;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.ms-main-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5vw, 65px);
    color: #2C2C2C;
    line-height: 1.1;
    font-weight: 600;
}

.ms-italic {
    font-style: italic;
    font-weight: 400;
    color: #ff7088;
    /* Tan Accent */
}

.ms-decorative-line {
    width: 60px;
    height: 2px;
    background-color: #2C2C2C;
    margin-top: 40px;
}

/* --- Cards Side --- */
.ms-content-side {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ms-card {
    background-color: #ffffff;
    padding: 50px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.4s ease;
}

.ms-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    border-color: #ff7088;
}

.ms-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.ms-card-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ff7088;
}

.ms-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #2C2C2C;
}

.ms-card-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* Small bottom accent that grows on hover */
.ms-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #ff7088;
    transition: width 0.4s ease;
}

.ms-card:hover .ms-card-accent {
    width: 100%;
}

/* --- Responsive Layout --- */
@media (max-width: 992px) {
    .ms-flex-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .ms-title-side {
        text-align: center;
    }

    .ms-decorative-line {
        margin: 30px auto 0;
    }

    .ms-card {
        padding: 40px 30px;
    }
}

/* ms-section-end   */




/* what-makes-different-section-start */
.wmd3-modern-section {
    background-color: #FDFBF9;
    padding: 100px 5% 0px 5%;
    position: relative;
}

.wmd3-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 10%;
}

/* --- Left Side: Sticky Header --- */
.wmd3-sticky-box {
    position: sticky;
    top: 150px;
    width: 35%;
    height: auto;
}

.wmd3-small-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #ff7088;
    font-weight: 700;
}

.wmd3-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 4.5vw, 70px);
    color: #1A1A1A;
    line-height: 1.1;
    margin-top: 20px;
}

.wmd3-main-title em {
    font-style: italic;
    font-weight: 400;
}

/* Vertical Progress Bar */
.wmd3-progress-line {
    width: 1px;
    height: 150px;
    background: rgba(0, 0, 0, 0.05);
    margin-top: 40px;
    position: relative;
}

.wmd3-progress-filler {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: #D2B48C;
}

/* --- Right Side: Content --- */
.wmd3-content-stack {
    width: 55%;
}

.wmd3-step {
    padding-bottom: 80px;
    /* Large space between steps */
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    margin-bottom: 120px;
}

.wmd3-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.wmd3-meta {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    color: #ff4564;
    margin-bottom: 30px;
    font-weight: 1000;
    text-transform: uppercase;
}

.wmd3-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 3vw, 45px);
    color: #1A1A1A;
    margin-bottom: 25px;
    line-height: 1.2;
}

.wmd3-step p {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    max-width: 500px;
}

/* --- Mobile Fix --- */
@media (max-width: 992px) {
    .wmd3-container {
        flex-direction: column;
    }

    .wmd3-sticky-box {
        position: relative;
        top: 0;
        width: 100%;
        margin-bottom: 80px;
        text-align: center;
    }

    .wmd3-progress-line {
        display: none;
        /* margin: 30px auto; */
    }

    .wmd3-content-stack {
        width: 100%;
    }

    .wmd3-step {
        text-align: center;
        padding-bottom: 80px;
        margin-bottom: 80px;
    }

    .wmd3-step p {
        margin: 0 auto;
    }
}

/* what-makes-different-section-end   */



/* about-team-section-start */
/* --- Team Section Base --- */
.about-team-section {
    background-color: #ffffff;
    padding: 120px 5%;
}

.about-team-container {
    max-width: 1300px;
    margin: 0 auto;
}

.about-team-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-team-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    color: #ff4564;
    /* Tan Accent */
    display: block;
    margin-bottom: 15px;
}

.about-team-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 3.5vw, 48px);
    color: #ff7088;
    line-height: 1.2;
}

/* --- Team Grid --- */
.about-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.about-team-card {
    text-align: center;
}

/* --- Image & Hover Effects --- */
.about-team-image-wrapper {
    width: 100%;
    aspect-ratio: 3 / 4;
    /* Professional portrait ratio */
    overflow: hidden;
    margin-bottom: 25px;
    background-color: #f8f8f8;
}

.about-team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-team-card:hover .about-team-img {
    transform: scale(1.08);
    /* Slow zoom effect */
}

/* --- Member Info --- */
.about-team-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #2C2C2C;
    margin-bottom: 8px;
}

.about-team-specialist {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    font-weight: 500;
}

/* --- Responsive Layout --- */
@media (max-width: 1024px) {
    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .about-team-grid {
        grid-template-columns: 1fr;
    }

    .about-team-section {
        padding: 80px 5%;
    }
}

/* about-team-section-end   */



/* about-insta-cta-start */
/* --- Instagram CTA Section --- */
.about-insta-cta {
    background-color: #FDFBF9;
    /* Matches Who We Are section background */
    padding: 120px 5%;
    text-align: center;
}

.about-insta-container {
    max-width: 800px;
    /* Narrower width for better readability */
    margin: 0 auto;
}

.about-insta-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #ff4564;
    font-weight: 600;
    /* Tan Accent */
    display: block;
    margin-bottom: 25px;
}

.about-insta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 52px);
    color: #2C2C2C;
    line-height: 1.2;
    margin-bottom: 30px;
}

.about-insta-title em {
    font-style: italic;
    font-weight: 400;
}

.about-insta-para {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

/* --- Premium Button Styling --- */
.about-insta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #ff7088;
    /* Dark Charcoal */
    color: #ffffff;
    padding: 18px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 1px solid #ff7088;
}

.about-insta-btn i {
    font-size: 18px;
}

.about-insta-btn:hover {
    background-color: transparent;
    color: #ff7088;
    transform: translateY(-5px);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .about-insta-cta {
        padding: 80px 5%;
    }
}

/* about-insta-cta-end   */