/* Local Custom Bengali Font Import */
@font-face {
    font-family: 'mayukh';
    src: url('data:fonts/mayukh.woff2;charset=utf-8;base64,d09GMgABAAAAA...') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* =========================
   WHATSAPP CHAT WIDGET
========================= */

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.whatsapp-chat {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
    pointer-events: none;
}

.whatsapp-chat-panel {
    width: min(370px, calc(100vw - 32px));
    overflow: hidden;
    border-radius: 24px;
    background: #f3f2f0;
    box-shadow: 0 18px 50px rgba(8, 28, 37, 0.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.96);
    transform-origin: bottom right;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

.whatsapp-chat.is-open .whatsapp-chat-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.whatsapp-chat-header {
    min-height: 92px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, #075e54, #087468);
}

.whatsapp-chat-avatar-wrap {
    position: relative;
    flex: 0 0 auto;
}

.whatsapp-chat-avatar {
    width: 64px;
    height: 64px;
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    object-fit: cover;
}

.whatsapp-online-dot {
    position: absolute;
    right: 0;
    bottom: 2px;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: #35c98b;
}

.whatsapp-chat-person {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.whatsapp-chat-person strong {
    font-size: 1.28rem;
    line-height: 1.2;
}

.whatsapp-chat-person span {
    margin-top: 2px;
    font-size: 0.95rem;
}

.whatsapp-chat-close {
    width: 42px;
    height: 42px;
    margin-left: auto;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: transparent;
    font-size: 1.65rem;
    cursor: pointer;
}

.whatsapp-chat-body {
    min-height: 220px;
    padding: 24px 18px;
    background-color: #e9e5df;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    background-repeat: repeat;
    background-position: center;
    background-size: 420px auto;
}

.whatsapp-typing-bubble {
    position: relative;
    width: 88px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 4px 22px 22px 22px;
    background: #e4f6ef;
    box-shadow: 0 4px 14px rgba(24, 39, 46, 0.08);
}

.whatsapp-typing-bubble[hidden],
.whatsapp-chat-message[hidden] {
    display: none !important;
}

.whatsapp-typing-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    border-top: 12px solid #e4f6ef;
    border-left: 12px solid transparent;
}

.whatsapp-typing-bubble span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #afd7c8;
    animation: whatsapp-typing 1.05s infinite ease-in-out;
}

.whatsapp-typing-bubble span:nth-child(2) {
    animation-delay: 0.14s;
}

.whatsapp-typing-bubble span:nth-child(3) {
    animation-delay: 0.28s;
}

@keyframes whatsapp-typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.55; }
    30% { transform: translateY(-4px); opacity: 1; }
}

.whatsapp-chat-message {
    position: relative;
    width: min(100%, 270px);
    padding: 16px 18px 28px;
    border-radius: 4px 18px 18px 18px;
    color: #202124;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(24, 39, 46, 0.1);
}

.whatsapp-chat-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    border-top: 12px solid #ffffff;
    border-left: 12px solid transparent;
}

.whatsapp-chat-message strong {
    display: block;
    margin-bottom: 8px;
    color: #7a7a7a;
    font-size: 0.95rem;
}

.whatsapp-chat-message p {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.45;
}

.whatsapp-chat-time {
    position: absolute;
    right: 14px;
    bottom: 9px;
    display: inline-flex;
    align-items: center;
    color: #929292;
    font-size: 0.75rem;
}

.whatsapp-delivery-ticks {
    margin-left: 7px;
    width: 20px;
    height: 14px;
    flex: 0 0 auto;
    color: #929292;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.whatsapp-chat-form {
    display: grid;
    grid-template-columns: 1fr 48px;
    gap: 8px;
    padding: 14px;
    background: #f3f3f3;
}

.whatsapp-chat-form input {
    min-width: 0;
    height: 48px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 24px;
    outline: none;
    color: #222222;
    background: #ffffff;
    font: inherit;
}

.whatsapp-chat-form input:focus {
    border-color: rgba(7, 94, 84, 0.34);
}

.whatsapp-chat-form button,
.whatsapp-chat-launcher {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: #25d366;
    cursor: pointer;
}

.whatsapp-chat-form button {
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
}

.whatsapp-chat-launcher {
    width: 64px;
    height: 64px;
    pointer-events: auto;
    border: 0;
    box-shadow: 0 10px 28px rgba(10, 70, 46, 0.26);
    font-size: 2rem;
    transition: transform 0.2s ease;
    animation: whatsapp-launcher-pulse 2s infinite;
}

.whatsapp-chat-notification {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 21px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: #e53935;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.2s ease, transform 0.25s ease;
    pointer-events: none;
}

.whatsapp-chat.has-notification .whatsapp-chat-notification {
    opacity: 1;
    transform: scale(1);
}

@keyframes whatsapp-launcher-pulse {
    0% {
        box-shadow: 0 10px 28px rgba(10, 70, 46, 0.26), 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 10px 28px rgba(10, 70, 46, 0.26), 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 10px 28px rgba(10, 70, 46, 0.26), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-chat.is-open .whatsapp-chat-launcher {
    animation: none;
}

.whatsapp-chat-launcher:active {
    transform: scale(0.94);
}

.whatsapp-chat.is-open .whatsapp-chat-launcher i::before {
    content: "\f00d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

@media (max-width: 600px) {
    .whatsapp-chat {
        display: none;
    }

    .whatsapp-chat-panel {
        width: min(350px, calc(100vw - 28px));
        border-radius: 20px;
    }

    .whatsapp-chat-header {
        min-height: 82px;
        padding: 12px 14px;
    }

    .whatsapp-chat-avatar {
        width: 56px;
        height: 56px;
    }

    .whatsapp-chat-body {
        min-height: 190px;
        padding: 22px 16px;
    }

    .whatsapp-chat-launcher {
        width: 58px;
        height: 58px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

*:focus:not(:focus-visible) {
    outline: none;
}

body {
    background: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =========================
   TOP BAR (DYNAMIC GLASSMORPHISM)
========================= */

.top-bar {
    width: 100%;
    height: 85px;
    background-color: #12315b;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #6bc2ed;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: background-color 0.2s ease, backdrop-filter 0.2s ease, -webkit-backdrop-filter 0.2s ease, border-color 0.2s ease;
}

.top-bar.scrolled {
    background-color: rgba(18, 49, 91, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: #6bc2ed;
    border-bottom-width: 2px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: background-color 1.5s ease, backdrop-filter 1.5s ease, -webkit-backdrop-filter 1.5s ease, border-color 1.5s ease;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
}

.top-logo {
    width: 140px;
    height: auto;
    display: block;
    position: static;
    flex-shrink: 0;
    margin-right: 40px;
}

.nav-links {
    display: flex;
    margin-right: 160px;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 32px;
}

.nav-item {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, sans-serif;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 300;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    text-shadow: 0 0 0 transparent;
    transform: scale(1);
    transform-origin: center;
    transition: color 0.32s ease, font-weight 0.75s linear, opacity 0.32s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), text-shadow 0.32s ease;
    white-space: nowrap;
}

.nav-item.active {
    color: #6bc2ed;
    font-weight: 700;
}

.nav-item.is-pressing {
    font-weight: 700;
    transition: none;
}

/* Reserve the widest required label space so weight changes never shift its neighbours. */
@media (min-width: 601px) {
    .nav-item {
        text-align: center;
    }

    .nav-item:nth-child(1) { min-width: 66px; }
    .nav-item:nth-child(2) { min-width: 84px; }
    .nav-item:nth-child(3) { min-width: 78px; }
    .nav-item:nth-child(4) { min-width: 86px; }
    .nav-item:nth-child(5) { min-width: 112px; }
}


/* =========================
   HERO CONTAINER & SECTION
========================= */

html {
    -webkit-touch-callout: none;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.scroll-reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .scroll-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

img,
video {
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}

.hero-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 350px;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .hero {
        height: 92vh;
        min-height: 403px;
        max-height: 690px;
    }
}


/* =========================
   SLIDES
========================= */

.slides {
    width: 100%;
    height: auto;
    flex: 1;
    min-height: 0;
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide picture {
    width: 100%;
    height: 100%;
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

/* =========================
   DOTS
========================= */

.dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 30;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 25px;
    border-radius: 10px;
    background: white;
}


/* QUICK ACTIONS BELOW HERO */
.hero-actions {
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
    padding: 26px 32px;
    background: #ffffff;
    box-shadow: 0 12px 22px -14px rgba(31, 58, 68, 0.45);
}

.hero-action-card {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    isolation: isolate;
    overflow: hidden;
    min-height: 158px;
    padding: 34px 42px;
    border: 0;
    border-radius: 22px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    box-shadow: 0 14px 32px rgba(13, 23, 42, 0.12);
}

.hero-action-card::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -36px;
    background-position: center;
    background-size: cover;
    filter: blur(36px) saturate(0.75);
    opacity: 0.28;
    transform: scale(1.16);
    pointer-events: none;
}

.hero-action-card--plan { background: linear-gradient(135deg, #d9efde 0%, #bce1c5 100%); }
.hero-action-card--gallery { background: linear-gradient(135deg, #cceffc 0%, #89cce5 100%); }
.hero-action-card--plan::before { background-image: url("https://ik.imagekit.io/d3ycnoiwd/PrantikWebsite/hero-desk1.jpg"); }
.hero-action-card--gallery::before { background-image: url("https://ik.imagekit.io/d3ycnoiwd/PrantikWebsite/hero-desk2.jpg"); }
.hero-action-card--gallery::before {
    filter: blur(36px) grayscale(1);
    opacity: 0.18;
}
.gallery-subtext-mobile { display: none; }
.hero-action-card--plan .hero-action-copy { color: #17472d; }
.hero-action-card--gallery .hero-action-copy { color: #103f55; }
.hero-action-card .hero-action-copy p { color: rgba(16, 50, 62, 0.68); }
.hero-action-copy { max-width: 540px; position: relative; z-index: 1; }
.hero-action-copy h2 { margin: 0 0 8px; font-size: clamp(1.7rem, 2vw, 2.35rem); font-weight: 600; line-height: 1.1; }
.hero-action-copy h2 span { color: #dc3545; }
.hero-action-copy p { margin: 0; color: rgba(255, 255, 255, 0.72); font-size: 1.05rem; line-height: 1.4; }
.hero-action-btn { position: relative; z-index: 1; flex: 0 0 auto; width: 164px; box-sizing: border-box; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 11px 18px; border: 1.5px solid #fff; border-radius: 50px; text-decoration: none; font-size: 1.1rem; font-weight: 500; line-height: 1; white-space: nowrap; transition: all .3s ease; }
.hero-action-btn:hover { transform: translateY(-2px); }
.hero-action-btn--whatsapp {
    color: #dcebe1;
    background: #3f7251;
    border-color: #3f7251;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.hero-action-btn--whatsapp:hover {
    background: #345f44;
    border-color: #345f44;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.hero-action-btn--whatsapp i { color: #dcebe1; }
.hero-action-btn--gallery {
    position: relative;
    z-index: 10;
    color: #dceef5;
    background: #155a76;
    border-color: #155a76;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
    cursor: pointer;
}
.hero-action-btn--gallery:hover {
    background: #0f4860;
    border-color: #0f4860;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.hero-action-gallery-icon {
    width: 0.92em;
    height: 0.92em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.15;
    vector-effect: non-scaling-stroke;
}

@media (min-width: 768px) {
    .hero-actions {
        width: 100%;
        max-width: none;
        margin: 0;
        gap: 28px;
        padding-inline: max(8vw, 48px);
    }

    .hero-action-btn {
        width: auto;
        min-width: 0;
        padding: 14px 32px;
        font-size: 1.1rem;
    }

    .hero-action-card--gallery .hero-action-copy h2 {
        font-size: clamp(1.45rem, 1.65vw, 2rem);
        white-space: nowrap;
    }
}

@media (max-width: 767px) {
    .hero-actions {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 14px;
        box-shadow: 0 12px 22px -12px rgba(31, 58, 68, 0.48);
    }
    .hero-action-card {
        min-height: 82px;
        padding: 11px 18px;
        border-radius: 18px;
        align-items: center;
        flex-direction: row;
        gap: 12px;
    }
    .hero-action-copy { flex: 1 1 auto; min-width: 0; }
    .hero-action-copy h2 { font-size: clamp(.9rem, 3.8vw, 1.05rem); font-weight: 600; margin-bottom: 4px; }
    .hero-action-copy p { display: none; }
    .gallery-subtext-desktop { display: none; }
    .hero-action-btn {
        flex: 0 0 auto;
        padding: 12px 24px;
        font-size: 1.05rem;
        gap: 6px;
        white-space: nowrap;
    }
}

@media (max-width: 370px) {
    .hero-action-card { min-height: 76px; padding: 9px 14px; gap: 9px; }
    .hero-action-copy h2 { font-size: .9rem; }
    .hero-action-copy p { font-size: .72rem; }
    .hero-action-btn { padding: 12px 24px; font-size: 1.05rem; }
}


/* =========================
   FOUNDER PROFILE SECTION
========================= */

.profile-section {
    width: 100%;
    box-sizing: border-box;
    background:
        linear-gradient(to bottom, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.34) 30%, transparent 56%),
        radial-gradient(circle at 14% 10%, rgba(255, 255, 255, 0.72), transparent 35%),
        radial-gradient(circle at 88% 82%, rgba(67, 167, 184, 0.18), transparent 42%),
        linear-gradient(135deg, #e8fbfc 0%, #d8f3f6 48%, #c9e9ee 100%);
    padding: 48px 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: inset 0 -20px 20px -15px rgba(31, 58, 68, 0.15);
}

.profile-section > .hero-actions {
    flex: 0 0 auto;
    width: 100%;
    margin-inline: auto;
    padding: 0;
    margin: 0 0 44px;
    background: transparent;
    box-shadow: none;
}

.profile-card {
    max-width: 480px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-bangla-text {
    display: block;
    width: min(100%, 344px);
    height: auto;
    margin: 0 0 34px;
}

.image-wrapper {
    width: 280px;
    height: 320px;
    border-radius: 38px;
    border: 7px solid #ffffff;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(31, 58, 68, 0.18);
    margin-bottom: 22px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.profile-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0d172a;
    margin: 0 0 6px;
    letter-spacing: -0.5px;
}

.profile-title {
    font-size: 1.25rem;
    color: rgba(13, 23, 42, 0.38);
    font-weight: 400;
    margin: 0 0 26px;
}

.profile-quote {
    font-size: 1.2rem;
    line-height: 1.45;
    color: #172b33;
    font-weight: 350;
    font-style: normal;
    max-width: 680px;
    margin: 0 0 42px;
}

.learn-more-btn {
    display: inline-block;
    background-color: transparent;
    color: #0d172a;
    border: 1.5px solid #0d172a;
    padding: 11px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background-color: rgba(13, 23, 42, 0.08);
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .profile-section {
        min-height: 570px;
        padding: 28px 6vw 57px;
        overflow: hidden;
        isolation: isolate;
    }

    .profile-section > .hero-actions {
        margin-bottom: 88px;
    }

    .profile-card {
        max-width: 1065px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(255px, 323px);
        grid-template-rows: auto auto auto auto;
        column-gap: clamp(54px, 7.5vw, 135px);
        align-items: start;
    }

    .profile-bangla-text {
        grid-column: 1;
        grid-row: 1;
        width: min(100%, 376px);
        margin: 36px auto 57px;
    }

    .profile-quote {
        grid-column: 1;
        grid-row: 2 / span 3;
        max-width: 600px;
        margin: 0 auto;
        font-size: clamp(1.15rem, 1.35vw, 1.4rem);
        line-height: 1.48;
        align-self: start;
    }

    .image-wrapper {
        grid-column: 2;
        grid-row: 1;
        width: min(100%, 323px);
        height: 353px;
        justify-self: center;
        margin: 0 0 27px;
        border-radius: 39px;
    }

    .profile-name {
        grid-column: 2;
        grid-row: 2;
        justify-self: center;
        font-size: 1.99rem;
        margin: 0 0 6px;
    }

    .profile-title {
        grid-column: 2;
        grid-row: 3;
        justify-self: center;
        font-size: 1.01rem;
        margin: 0 0 23px;
    }

    .learn-more-btn {
        grid-column: 2;
        grid-row: 4;
        justify-self: center;
        font-size: 1.1rem;
        padding: 11px 32px;
    }
}


/* =========================
   FEATURED WORKS SECTION
========================= */

.featured-section {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 60px 24px 0px 24px;
}

.featured-header {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    text-align: center;
}

.featured-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0d172a;
    letter-spacing: -0.5px;
    margin-top: -30px;
    margin-bottom: 8px;
}

.featured-title span {
    color: #e11d48;
}

.featured-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.grid-wrapper {
    position: relative;
    max-width: 1200px;
    max-height: 650px;
    margin: 0 auto;
    overflow: hidden;
}

.grid-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 180px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 10;
    pointer-events: none;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.grid-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.work-item {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.work-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.work-item:hover img {
    transform: scale(1.03);
}

.see-more-container {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    text-align: center;
    width: 100%;
}

.see-more-btn {
    display: inline-block;
    background-color: transparent;
    color: #ffffff;
    border: 1.5px solid #ffffff;
    padding: 11px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.see-more-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}


/* =========================
   COUNTER STATS SECTION
========================= */

.stats-section {
    width: 100%;
    background-color: #ffffff;
    padding: 19px 29px;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 19px;
}

.stat-card {
    aspect-ratio: 1;
    min-height: 0;
    padding: 32px 18px;
    border: 1px solid #79bdc6;
    border-radius: 22px;
    background: linear-gradient(145deg, #d9f5f7 0%, #c7ebef 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card.is-selecting {
    transform: scale(0.975);
}

.stat-icon {
    margin-bottom: 24px;
    color: #6e929a;
    font-size: 3.25rem;
}

.stat-map-icon {
    width: 4.3rem;
    height: 4.3rem;
    object-fit: contain;
}

.stat-rings-icon {
    width: 3.75rem;
    height: 3.75rem;
    object-fit: contain;
}

.stat-value {
    margin: 0 0 5px;
    color: #10212a;
    font-size: 2.3rem;
    font-weight: 600;
    line-height: 1.05;
}

.stat-value--full {
    margin: 0;
    font-size: 1.58rem;
    font-weight: 500;
    line-height: 1.22;
}


/* =========================
   DIGITAL INVITATION SECTION
========================= */

.invitation-section {
    width: 100%;
    background-color: #133454;
    background-image:
        radial-gradient(circle at 12% 18%, rgba(75, 126, 161, 0.42) 0%, rgba(75, 126, 161, 0) 34%),
        radial-gradient(circle at 88% 82%, rgba(50, 125, 137, 0.3) 0%, rgba(50, 125, 137, 0) 38%),
        linear-gradient(135deg, #0b2138 0%, #153d58 48%, #123d48 100%);
    position: relative;
    padding: 60px 0px 80px 24px;
    overflow: hidden;
    box-shadow: inset 0 20px 20px -15px rgba(0, 0, 0, 0.35);
}

.invitation-container {
    max-width: 100%;
    margin: 0 0 0 auto;
    position: relative;
    z-index: 5;
}

.invitation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 0px;
}

.invitation-video-wrapper--secondary {
    display: none;
}

@media (min-width: 768px) {
    .invitation-section {
        padding-right: calc(28px + 7vw);
    }

    .invitation-leaf-bg {
        width: 168px;
    }

    .invitation-grid {
        grid-template-columns: minmax(240px, 1fr) minmax(160px, 280px) minmax(160px, 280px);
        gap: 28px;
    }

    .invitation-grid .invitation-text-content {
        padding-left: 0;
        justify-self: center;
        text-align: center;
    }

    .invitation-grid .invitation-buttons {
        justify-content: center;
    }

    .invitation-video-wrapper--secondary {
        display: block;
        border-radius: 30px;
        border: 3.5px solid #facc15;
    }

    .invitation-video-wrapper {
        max-width: 280px;
        justify-self: end;
        margin-left: 0;
        border: 3.5px solid #facc15;
        border-radius: 30px;
    }
}

.invitation-text-content {
    color: #ffffff;
    padding-left: max(0px, calc((100vw - 1100px) / 2));
}

.invitation-title {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0px;
    margin-bottom: 16px;
}

.invitation-title span {
    color: #e11d48;
}

.invitation-price {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    margin-bottom: 28px;
}

.invitation-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    position: relative;
    z-index: 10;
}

.invitation-btn-filled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #2563eb;
    color: #ffffff;
    border: 1.5px solid #2563eb;
    padding: 11px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.invitation-btn-filled:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-2px);
}

.invitation-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #ffffff;
    border: 1.5px solid #ffffff;
    padding: 11px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.invitation-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.invitation-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin-left: auto;
    margin-right: 0px;
    aspect-ratio: 9 / 16;
    border-radius: 30px 0px 0px 30px;
    border: 3.5px solid #facc15;
    border-right: none;
    overflow: hidden;
    box-shadow: -8px 16px 36px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    background-color: #000000;
}

@media (min-width: 768px) {
    .invitation-grid .invitation-video-wrapper {
        border: 3.5px solid #facc15;
        border-right: 3.5px solid #facc15;
        border-radius: 30px;
    }
}

.invitation-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.75);
    transition: transform 0.4s ease, filter 0.4s ease, opacity 0.4s ease;
}

.invitation-video-wrapper picture {
    display: block;
    width: 100%;
    height: 100%;
}

.invitation-video-wrapper:hover .invitation-thumbnail {
    transform: scale(1.02);
    filter: brightness(0.85);
}

@media (min-width: 768px) {
    .invitation-video-wrapper:hover .invitation-thumbnail {
        filter: brightness(1);
        opacity: 1;
    }
}

.invitation-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.8rem;
    padding-left: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    animation: pulsePlay 2s infinite;
}

.invitation-video-wrapper:hover .play-button-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 255, 255, 0.4);
}

@keyframes pulsePlay {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.invitation-leaf-bg {
    position: absolute;
    left: -30px;
    bottom: 40px;
    width: 240px;
    height: auto;
    pointer-events: none;
    z-index: 1;
    opacity: 0.9;
    filter: drop-shadow(10px 12px 14px rgba(0, 0, 0, 0.34));
}

@media (min-width: 768px) {
    .invitation-section .invitation-leaf-bg {
        width: 168px;
    }
}

.invitation-alpona-bottom {
    width: 100%;
    height: 35px;
    background: url('https://ik.imagekit.io/2u47biiyv/ppimages/alpona-pattern.png') repeat-x center bottom;
    background-size: contain;
    position: absolute;
    bottom: 12px;
    left: 0;
    opacity: 0.4;
}


/* =========================
   ALBUMS SECTION
========================= */

.albums-section {
    width: 100%;
    height: auto;
    background-color: #d8f3f6;
    background-image:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 32%),
        radial-gradient(circle at 88% 78%, rgba(191, 175, 224, 0.3) 0%, rgba(191, 175, 224, 0) 34%),
        linear-gradient(135deg, #eaf9fa 0%, #d3edf1 48%, #e4deee 100%);
    padding: 60px 0px 0px 0px;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: none;
}

.albums-header {
    max-width: 600px;
    margin: 0 auto 30px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.albums-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #0d172a;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 8px;
}

.albums-title span {
    color: #e11d48;
}

.albums-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3.0rem;
    font-weight: 550;
    font-style: italic;
    color: #0d172a;
    margin-bottom: 24px;
}

.albums-subtitle span {
    color: #2563eb;
    font-style: italic;
}

.albums-order-btn {
    display: inline-block;
    background-color: transparent;
    color: #0d172a;
    border: 1.5px solid #0d172a;
    padding: 11px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 16px;
    margin-bottom: 28px;
}

.albums-order-btn:hover {
    background-color: rgba(13, 23, 42, 0.08);
    transform: translateY(-2px);
}

.albums-features {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 48px;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 500;
    color: #0d172a;
}

.feature-item i {
    font-size: 1.25rem;
    color: #0d172a;
}

.albums-carousel-container {
    width: 100%;
    overflow: hidden;
    pointer-events: none;
    position: relative;
    margin-top: -20px;
    margin-bottom: 40px;
    scroll-behavior: smooth;
    scroll-snap-type: none;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.albums-carousel-container::-webkit-scrollbar {
    display: none;
}

.albums-carousel-track {
    display: flex;
    gap: 16px;
    width: max-content;
    padding: 0 calc(50vw - 130px);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.album-card {
    width: 260px;
    height: 280px;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    background-color: #262626;
    border: 2px solid #95c1cf;
    scroll-snap-align: center;
}

.album-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.albums-carousel-track.is-resetting .album-card {
    transition: none !important;
}

@media (min-width: 768px) {
    .albums-section {
        display: grid;
        height: 80vh;
        min-height: 520px;
        max-height: 750px;
        grid-template-columns: minmax(300px, 1fr) minmax(420px, 1fr);
        grid-template-rows: 1fr 1fr;
        column-gap: clamp(48px, 7vw, 120px);
        row-gap: 8px;
        align-items: center;
        padding: 0 max(5vw, calc((100vw - 1280px) / 2));
        text-align: left;
    }

    .albums-header {
        grid-column: 2;
        grid-row: 1;
        max-width: none;
        margin: 0;
        padding: 0;
        align-items: center;
        align-self: end;
        text-align: center;
    }

    .albums-features {
        grid-column: 2;
        grid-row: 2;
        margin: 40px 0 0;
        align-self: start;
        justify-self: center;
    }

    .albums-section .feature-item {
        font-size: 1.5rem;
    }

    .albums-section .feature-item i {
        font-size: 1.56rem;
    }

    .albums-carousel-container {
        grid-column: 1;
        grid-row: 1 / span 2;
        width: 100%;
        height: 100%;
        margin: 0;
        overflow: hidden;
        scroll-snap-type: none;
    }

    .albums-carousel-track {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 45px 0;
    }

    .album-card {
        width: min(100%, 352px);
        height: 400px;
        scroll-snap-align: center;
        opacity: 0.5;
        transform: scale(0.92);
        box-shadow: 0 0 0 rgba(13, 23, 42, 0);
        transition: opacity 0.45s ease, transform 0.45s ease, box-shadow 0.45s ease;
    }

    .album-card.is-current {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 30px rgba(13, 23, 42, 0.28);
    }

}


/* =========================
   WEDDING FILM VIDEO BANNER SECTION
========================= */

.wedding-film-section {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 520px;
    max-height: 750px;
    overflow: hidden;
    background-color: #000000;
}

.wedding-film-section::before {
    content: "";
    position: absolute;
    z-index: 3;
    inset: 0;
    pointer-events: none;
    box-shadow: none;
}

.wedding-film-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.wedding-film-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.35) 45%, transparent 72%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 0px 20px 60px 20px;
    text-align: center;
    z-index: 2;
}

.wedding-film-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 6px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0);
    letter-spacing: -0.2px;
}

.wedding-film-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.wedding-film-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.youtube-watch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    border: 1.5px solid #ffffff;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0);
}

.wedding-film-see-more {
    background-color: #2563eb;
    border-color: #2563eb;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.3);
}

.yt-logo-img {
    height: 20px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

.youtube-watch-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.wedding-film-see-more:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.42);
}


/* =========================
   CAMERA HAND BANNER SECTION
========================= */

.camera-hand-section {
    width: 100%;
    height: 80vh;
    min-height: 520px;
    max-height: 750px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    padding: 48px max(7vw, calc((100vw - 1440px) / 2));
    overflow: hidden;
    position: relative;
}

.camera-hand-content {
    position: relative;
    z-index: 3;
    width: min(32%, 480px);
}

.camera-hand-title {
    margin: 0;
    color: #090909;
    font-size: clamp(2.7rem, 3.45vw, 3.45rem);
    line-height: 0.98;
    font-weight: 400;
    letter-spacing: normal;
}

.camera-hand-title span {
    color: #e11d48;
}

.camera-hand-title .camera-title-line {
    display: inline-block;
    color: #090909;
    white-space: nowrap;
}

.camera-hand-title .camera-title-line span {
    color: #e11d48;
}

.camera-hand-price {
    margin: 16px 0 42px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 1.4rem;
    font-weight: 400;
}

.camera-hand-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 11px 32px;
    border: 1.5px solid #111111;
    border-radius: 999px;
    background-color: transparent;
    color: #111111;
    font-size: 1.1rem;
    font-weight: 400;
    text-decoration: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.camera-hand-cta:hover {
    background-color: rgba(17, 17, 17, 0.08);
    transform: translateY(-2px);
    box-shadow: none;
}

.camera-hand-offer {
    margin: 10px 0 0;
    color: #000000;
    font-size: 0.78rem;
    font-weight: 500;
}

.camera-hand-img-wrapper {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    border: 0;
    box-shadow: none;
}

.camera-hand-img-wrapper picture {
    display: block;
    width: auto;
    height: 100%;
}

.camera-hand-img-wrapper img {
    height: 100%;
    width: auto;
    max-width: none;
    display: block;
}

.camera-section-wedding-photo {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 55%;
    width: clamp(219px, 22.7vw, 359px);
    height: clamp(292px, 30.3vw, 478px);
    box-sizing: border-box;
    aspect-ratio: 3 / 4;
    padding: clamp(8px, 1vw, 16px);
    border: 0;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.13);
    transform: translate(-50%, -50%);
    transition: none;
}

.camera-section-wedding-photo::before,
.camera-section-wedding-photo::after,
.camera-photo-guides::before,
.camera-photo-guides::after {
    position: absolute;
    z-index: 2;
    display: block;
    content: "";
    pointer-events: none;
}

.camera-section-wedding-photo::before {
    top: -40px;
    bottom: -38px;
    left: 0;
    width: 2px;
    background: rgba(20, 20, 20, 0.58);
}

.camera-section-wedding-photo::after {
    top: -40px;
    right: 0;
    bottom: -38px;
    width: 2px;
    background: rgba(20, 20, 20, 0.58);
}

.camera-photo-guides::before,
.camera-photo-guides::after {
    right: -36px;
    left: -36px;
    height: 2px;
    background: rgba(20, 20, 20, 0.58);
}

.camera-photo-guides::before {
    top: 0;
}

.camera-photo-guides::after {
    bottom: 0;
}

.camera-section-wedding-photo-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.camera-section-wedding-photo-inner::after {
    position: absolute;
    z-index: 2;
    inset: 0;
    content: "";
    pointer-events: none;
    box-shadow: inset 0 0 26px rgba(0, 0, 0, 0.45);
}

.camera-section-wedding-photo-inner img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
    .camera-section-wedding-photo:hover .camera-section-wedding-photo-inner img {
        transform: scale(1.06);
    }
}

@media (max-width: 600px) {
    .frame-photo-hint-desktop {
        display: none;
    }

    .frame-photo-hint-mobile {
        display: inline;
    }

    .framed-photo-container {
        -webkit-tap-highlight-color: transparent;
        outline: none;
    }

    .camera-section-wedding-photo {
        cursor: zoom-in;
        touch-action: manipulation;
    }

    .camera-section-wedding-photo:hover .camera-section-wedding-photo-inner img {
        transform: none;
    }

    .camera-section-wedding-photo.is-zoomed {
        cursor: zoom-out;
    }

    .camera-section-wedding-photo.is-zoomed .camera-section-wedding-photo-inner img {
        transform: scale(1.16);
    }
}


/* =========================
   PHOTO FRAMES SECTION
========================= */

.photo-frames-section {
    position: relative;
    width: 100%;
    padding: 80px 20px 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: url('https://ik.imagekit.io/2u47biiyv/ppimages/frame-bg-desk.jpg') no-repeat center center / cover;
    box-shadow: inset 0 20px 20px -15px rgba(0, 0, 0, 0.4);
}

.frames-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0);
}

.frames-title span {
    color: #e11d48;
}

.frames-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-style: italic;
    font-weight: 550;
    color: #ffffff;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0);
}

.frames-subtitle span {
    color: #ff8e59;
    font-style: italic;
}

.frames-order-btn {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #ffffff;
    border: 1.5px solid #ffffff;
    padding: 11px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 45px;
    transition: all 0.3s ease;
}

.frames-order-btn:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.framed-photo-container {
    position: relative;
    max-width: 480px;
    width: 100%;
    background-color: #ffffff;
    border: 10px solid #1f120a;
    border-radius: 4px;
    padding: 16px;
    box-shadow: 10px 6px 10px rgba(0, 0, 0, 0.456), inset 0 0 10px rgba(0, 0, 0, 0.217);
    margin: 0 auto;
    cursor: pointer;
}

.frame-photo-hint {
    position: absolute;
    top: calc(100% + 38px);
    left: 50%;
    z-index: 1;
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    font-weight: 500;
    white-space: nowrap;
    transform: translateX(-50%);
    pointer-events: none;
    transition: opacity 0.55s ease;
}

.frame-photo-hint.is-hidden {
    opacity: 0;
}

.frame-photo-hint-mobile {
    display: none;
}

@media (max-width: 600px) {
    .frame-photo-hint-desktop {
        display: none;
    }

    .frame-photo-hint-mobile {
        display: inline;
    }
}

.framed-photo-container img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.frame-photo-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 1300 / 794;
    overflow: hidden;
}

.frame-photo-stage::after {
    position: absolute;
    z-index: 2;
    inset: 0;
    content: "";
    pointer-events: none;
    box-shadow: inset 0 0 22px rgba(0, 0, 0, 0.38);
}

.frame-photo-stage img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

.frame-photo-stage .frame-photo-entering {
    animation: frame-photo-slide-in 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.frame-photo-stage .frame-photo-leaving {
    animation: frame-photo-slide-out 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes frame-photo-slide-in {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@keyframes frame-photo-slide-out {
    from { transform: translateY(0); }
    to { transform: translateY(-100%); }
}

@media (min-width: 768px) {
    .camera-hand-content {
        text-align: center;
    }

    .photo-frames-section {
        height: 80vh;
        min-height: 520px;
        max-height: 750px;
        box-sizing: border-box;
        display: grid;
        grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
        align-items: center;
        column-gap: clamp(48px, 8vw, 140px);
        padding: 48px max(7vw, calc((100vw - 1440px) / 2));
        background-position: center top;
    }

    .photo-frames-content {
        text-align: center;
        justify-self: end;
    }

    .photo-frames-content .frames-order-btn {
        margin-bottom: 0;
    }

    .photo-frames-section .framed-photo-container {
        justify-self: start;
        margin: 0;
        padding: 24px;
    }
}


/* =========================
   SERVICES SECTION
========================= */

.services-section {
    position: relative;
    isolation: isolate;
    width: 100%;
    height: 80vh;
    min-height: 520px;
    max-height: 750px;
    padding: 52px 24px 58px;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    color: #ffffff;
    background-color: #081d30;
    background-image:
        radial-gradient(circle at 18% 12%, rgba(63, 114, 168, 0.28) 0%, rgba(63, 114, 168, 0) 34%),
        radial-gradient(circle at 82% 88%, rgba(37, 99, 150, 0.3) 0%, rgba(37, 99, 150, 0) 38%),
        linear-gradient(135deg, #07182c 0%, #173b5a 50%, #0d2c47 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -20px 20px -15px rgba(0, 10, 22, 0.38);
}

.services-content {
    position: relative;
    z-index: 2;
    width: min(100%, 680px);
    margin: 0 auto;
    text-align: center;
}

.services-title {
    margin: 0 0 8px;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.5px;
}

.services-title span {
    color: #ef233c;
}

.services-subtitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.5;
}

.services-subtitle span {
    color: rgba(255, 255, 255, 0.78);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 28px;
    width: min(100%, 610px);
    margin: 72px auto 0;
}

.service-pill {
    display: flex;
    position: relative;
    isolation: isolate;
    box-sizing: border-box;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    height: 56px;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 1.25px solid rgba(230, 249, 255, 0.56);
    border-radius: 28px;
    color: rgba(255, 255, 255, 0.96);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
    background-clip: padding-box;
    -webkit-backdrop-filter: blur(16px) saturate(135%);
    backdrop-filter: blur(16px) saturate(135%);
    box-shadow:
        inset 0 0 5px rgba(255, 255, 255, 0.18),
        inset 0 0 10px rgba(151, 220, 239, 0.1),
        0 12px 30px rgba(1, 12, 24, 0.24);
    font-size: 1.2rem;
    font-weight: 400;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.service-pill::after {
    content: '';
    position: absolute;
    inset: 1px;
    z-index: 1;
    border-radius: inherit;
    background: transparent;
    box-shadow: inset 0 0 4px rgba(225, 247, 255, 0.24);
    filter: blur(1.2px);
    opacity: 0.7;
    pointer-events: none;
}

.service-pill.is-selecting,
.service-pill.is-selecting:hover {
    transform: scale(0.975);
}

.service-pill--last {
    grid-column: 1 / -1;
    width: calc(50% - 14px);
    justify-self: center;
}

.services-mandala {
    position: absolute;
    z-index: 1;
    width: clamp(210px, 24vw, 370px);
    height: auto;
    opacity: 0.14;
    pointer-events: none;
}

.services-mandala--top {
    width: clamp(195px, 18vw, 285px);
    top: clamp(-150px, -9vw, -75px);
    left: clamp(-150px, -9vw, -65px);
    transform: rotate(22.5deg);
}

.services-mandala--bottom {
    width: clamp(440px, 42vw, 680px);
    right: clamp(-360px, -21.5vw, -220px);
    bottom: clamp(-360px, -21.5vw, -220px);
    transform: rotate(22.5deg);
}

@media (max-width: 600px) {
    .services-section {
        height: 700px;
        min-height: 700px;
        max-height: none;
        padding: 48px 22px 54px;
    }

    .services-title {
        font-size: 2.5rem;
    }

    .services-subtitle {
        max-width: 310px;
        margin-inline: auto;
        font-size: 1.15rem;
        line-height: 1.45;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        width: min(100%, 300px);
        margin-top: 48px;
    }

    .service-pill {
        height: 50px;
        min-height: 50px;
        border-radius: 25px;
        font-size: 1.08rem;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        background: linear-gradient(135deg, rgba(80, 126, 151, 0.22), rgba(25, 63, 83, 0.3));
        box-shadow:
            inset 0 0 4px rgba(255, 255, 255, 0.15),
            inset 0 0 8px rgba(151, 220, 239, 0.08),
            0 8px 20px rgba(1, 12, 24, 0.18);
    }

    .service-pill::after {
        filter: none;
        opacity: 0.5;
    }

    .service-pill:nth-last-child(-n + 3) {
        -webkit-backdrop-filter: blur(4px) saturate(110%);
        backdrop-filter: blur(4px) saturate(110%);
    }

    .service-pill--last {
        grid-column: auto;
        width: 100%;
    }

    .services-mandala--top {
        width: 280px;
        top: -148px;
        left: -148px;
    }

    .services-mandala--bottom {
        width: 540px;
        right: -280px;
        bottom: -280px;
    }
}


/* =========================
   CONNECT WITH US (INSTAGRAM) SECTION
========================= */

.instagram-section {
    width: 100%;
    background: linear-gradient(180deg, #d8f3f6 0%, #d8f3f6 50%, #3c6d7c 100%);
    padding: 60px 20px 0px 20px;
    display: flex;
    height: 700px !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

.instagram-section::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 -15px 25px -10px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    z-index: 50;
}

.instagram-title {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.instagram-title span {
    color: #e11d48;
}

.instagram-subtitle {
    font-size: 1.25rem;
    color: #475569;
    font-weight: 400;
    margin-bottom: 18px;
}

.phone-mockup-outer {
    position: relative;
    display: inline-block;
    margin-top: 55px;
    pointer-events: auto !important;
}

.phone-mockup-wrapper {
    position: relative;
    width: 320px;
    height: 520px !important;
    background: #ffffff;
    border-radius: 44px !important;
    border: 8px solid #000000 !important;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.42);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden !important;
    box-sizing: border-box;
}

/* PHONE BEZEL BUTTONS (DESKTOP) */
.phone-button {
    position: absolute;
    background-color: #000000;
    z-index: 5;
}

.phone-button-mute {
    left: -3px;
    /* Changed from -11px */
    top: 75px;
    width: 3px;
    height: 18px;
    border-radius: 3px 0 0 3px;
}

.phone-button-vol-up {
    left: -3px;
    /* Changed from -11px */
    top: 115px;
    width: 3px;
    height: 38px;
    border-radius: 3px 0 0 3px;
}

.phone-button-vol-down {
    left: -3px;
    /* Changed from -11px */
    top: 165px;
    width: 3px;
    height: 38px;
    border-radius: 3px 0 0 3px;
}

.phone-button-power {
    right: -3px;
    /* Changed from -11px */
    top: 125px;
    width: 3px;
    height: 52px;
    border-radius: 0 3px 3px 0;
}

/* STATUS BAR & DYNAMIC ISLAND */
.phone-status-bar {
    width: 100%;
    height: 38px;
    padding: 10px 20px 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 12;
    background: #ffffff;
    color: #000000;
    font-size: 0.85rem;
    font-weight: 600;
    pointer-events: none;
    box-sizing: border-box;
}

.phone-status-icons {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
}

.phone-dynamic-island {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 20px;
    background-color: #050505;
    border-radius: 20px;
    z-index: 15;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 30% 50%, rgba(30, 60, 110, 0.8) 0%, rgba(10, 20, 40, 0.9) 35%, transparent 68%),
        radial-gradient(circle at 72% 50%, rgba(20, 25, 35, 0.9) 0%, rgba(5, 5, 5, 1) 45%, transparent 70%);
    box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.15);
}

/* =========================
   INSTAGRAM PROFILE HEADER
========================= */

.instagram-profile-header {
    width: 100%;
    padding: 8px 18px 0px 18px;
    background: #ffffff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px !important;
    z-index: 30;
    pointer-events: auto !important;
}

.profile-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-avatar-ring {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    flex-shrink: 0;
}

.profile-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
}

.profile-text-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.profile-username {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.1;
}

.profile-handle {
    font-size: 0.8rem;
    color: #65676b;
    margin: 2px 0 0 0;
}

.insta-verified-badge {
    width: 18px;
    height: 18px;
    display: inline-block;
    flex-shrink: 0;
    vertical-align: middle;
    margin-bottom: 2px;
}

/* CLICKABLE FOLLOW BUTTON */
.insta-follow-btn {
    width: 100%;
    height: 32px;
    background-color: #0095f6;
    color: #ffffff !important;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.1s ease;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.insta-follow-btn:hover {
    background-color: #1877f2 !important;
}

.insta-follow-btn:active {
    transform: scale(0.98);
}

/* =========================
   INSTAGRAM TAB BAR
========================= */

.instagram-tab-bar {
    width: 100%;
    height: 38px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
    background: #ffffff;
    margin-top: 8px !important;
}

.instagram-tab-bar .tab-item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #8e8e8e;
    font-size: 1.15rem;
    position: relative;
}

.instagram-tab-bar .tab-item.active {
    color: #000000;
}

.instagram-tab-bar .tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background-color: #000000;
}

/* GRID WRAPPER */
.instagram-grid-wrapper {
    width: 100% !important;
    height: auto !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    display: flex !important;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden !important;
}

.snapwidget-widget {
    width: 100% !important;
    height: 315px !important;
    border: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

/* =========================
   CONTACT US SECTION
========================= */

.contact-section {
    width: 100%;
    padding: 60px 20px;
    background: linear-gradient(135deg, #e0f2fe 0%, #fae8ff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 36px;
    letter-spacing: -0.5px;
}

.contact-title span {
    color: #e11d48;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    text-align: left;
}

.contact-icon-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-text {
    font-size: 1.35rem;
    font-weight: 500;
    color: #1e293b;
    text-decoration: none;
    word-break: break-word;
    pointer-events: none;
}


/* =========================
   FOOTER SECTION
========================= */

.site-footer {
    width: 100%;
    background-color: #102a43;
    color: #ffffff;
    padding: 50px 20px 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-copyright {
    font-size: 1.15rem;
    font-weight: 400;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.footer-logo {
    width: 280px;
    height: auto;
    margin-top: 30px;
    margin-bottom: 70px;
    display: block;
}

.footer-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 40px;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.4rem;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.social-icon.facebook {
    background-color: #1877f2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.youtube {
    background-color: #ff0000;
}

.pixelsetu-credit {
    width: 100%;
    max-width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 15px;
    margin-top: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.credit-text {
    display: inline-block;
    position: relative;
    top: -27px;
    background-color: #102a43;
    padding: 0 16px;
    font-size: 0.95rem;
    color: #94a3b8;
}

.credit-logo {
    height: 20px;
    width: auto;
    margin-top: -20px;
    display: block;
}


/* =========================
   MOBILE ADJUSTMENTS
========================= */

@media (max-width: 600px) {

    .top-bar {
        height: auto;
    }

    .top-bar-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 8px 10px;
        gap: 6px;
        position: static;
    }

    .top-logo {
        width: 100px;
        position: static;
        margin: 7px auto 13px auto;
    }

    .nav-links {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0;
        width: 100%;
        padding: 0 8px;
        overflow-x: hidden;
        margin-right: auto;
    }

    .nav-item {
        font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Roboto, sans-serif;
        font-size: clamp(0.9rem, 4.4vw, 1.1rem);
        font-weight: 300;
        flex: 0 0 auto;
        min-width: 0;
        padding: 0;
        margin-bottom: 7px;
        letter-spacing: -0.2px;
        text-align: center;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .nav-item:nth-child(1) { flex-basis: 3em; }
    .nav-item:nth-child(2) { flex-basis: 3.8em; }
    .nav-item:nth-child(3) { flex-basis: 3.4em; }
    .nav-item:nth-child(4) { flex-basis: 3.8em; }
    .nav-item:nth-child(5) { flex-basis: 4.5em; }

    .nav-item.active {
        color: #6bc2ed;
        font-weight: 700;
    }

    .hero {
        height: 35vh;
        min-height: 280px;
    }

    .dots {
        bottom: 10px;
        gap: 10px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        width: 20px;
    }

    .profile-section {
        padding: 16px 16px 26px;
    }

    .profile-bangla-text {
        width: min(100%, 264px);
        margin-bottom: 26px;
    }

    .image-wrapper {
        width: 220px;
        height: 240px;
        border-radius: 28px;
        border-width: 5px;
        margin-bottom: 18px;
    }

    .profile-name {
        font-size: 1.75rem;
    }

    .profile-title {
        font-size: 1.05rem;
        margin-bottom: 18px;
    }

    .profile-quote {
        font-size: 1.03rem;
        line-height: 1.42;
        margin-bottom: 30px;
    }

    .learn-more-btn {
        padding: 12px 24px;
        font-size: 1.05rem;
        margin: 0;
    }

    .featured-section {
        padding: 35px 12px 0px 12px;
    }

    .featured-title {
        font-size: 2.2rem;
        margin-top: -3px;
        margin-bottom: 8px;
    }

    .featured-subtitle {
        font-size: 1.05rem;
    }

    .grid-wrapper {
        max-height: 780px;
        max-height: 600px;
    }

    .grid-gradient-overlay {
        height: 140px;
    }

    .featured-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .grid-column {
        gap: 10px;
    }

    .see-more-container {
        bottom: 18px;
    }

    .see-more-btn {
        padding: 12px 24px;
        font-size: 1.05rem;
    }

    .stats-section {
        padding: 12px 14px;
    }

    .stats-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .stat-card {
        min-height: 0;
        padding: 24px 10px;
        border-radius: 16px;
    }

    .stat-icon {
        margin-bottom: 16px;
        font-size: 2.5rem;
    }

    .stat-map-icon {
        width: 3.35rem;
        height: 3.35rem;
    }

    .stat-rings-icon {
        width: 2.88rem;
        height: 2.88rem;
    }

    .stat-value {
        font-size: 1.85rem;
    }

    .stat-value--full {
        font-size: 1.09rem;
        line-height: 1.2;
    }

    .invitation-section {
        padding: 40px 0px 60px 16px;
    }

    .invitation-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
        margin-bottom: 0px;
    }

    .invitation-text-content {
        padding-left: 0px;
        padding-right: 16px;
        text-align: center;
    }

    .invitation-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .invitation-price {
        font-size: 1.15rem;
        margin-bottom: 20px;
    }

    .invitation-buttons {
        justify-content: center;
    }

    .invitation-video-wrapper {
        max-width: 260px;
        border-radius: 30px 0px 0px 30px;
        border-width: 3px;
        border-right: none;
    }

    .play-button-overlay {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
    }

    .invitation-leaf-bg {
        width: 140px;
        left: -40px;
        bottom: 80px;
    }

    .invitation-btn-filled,
    .invitation-btn-outline {
        padding: 12px 24px;
        font-size: 1.05rem;
    }

    .invitation-alpona-bottom {
        bottom: 8px;
    }

    .albums-section {
        padding: 40px 0px 0px 0px;
        box-shadow: none;
    }

    .albums-title {
        font-size: 2.5rem;
        line-height: 1.0;
        margin-bottom: 2px !important;
    }

    .albums-subtitle {
        font-size: 2.3rem;
        line-height: 1.1;
        margin-top: -5px !important;
        margin-bottom: 7px;
    }

    .albums-order-btn {
        padding: 13px 28px;
        font-size: 1.05rem;
        margin-bottom: 24px;
    }

    .albums-features {
        margin-top: -8px;
    }

    .feature-item {
        font-size: 1.3rem;
    }

    .albums-carousel-container {
        margin-top: -40px;
        margin-bottom: 30px;
        overflow: visible;
    }

    .albums-carousel-track {
        padding-bottom: 28px;
    }

    .album-card {
        width: 250px;
        height: 295px;
        border-radius: 16px;
        margin-top: 14px;
        opacity: 0.5;
        transform: scale(0.92);
        box-shadow: 0 0 0 rgba(13, 23, 42, 0);
        transition: opacity 0.45s ease, transform 0.45s ease, box-shadow 0.45s ease;
    }

    .album-card.is-current {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 30px rgba(13, 23, 42, 0.28);
    }

    .wedding-film-section {
        height: 100vh;
        min-height: 440px;
    }

    .wedding-film-overlay {
        padding-bottom: 40px;
    }

    .wedding-film-subtitle {
        font-size: 1.4rem;
    }

    .wedding-film-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .youtube-watch-btn {
        padding: 10px 24px;
        font-size: 1.0rem;
    }

    .yt-logo-img {
        height: 16px;
    }

    .camera-hand-section {
        height: 700px;
        min-height: 700px;
        padding: 48px 24px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 24px;
        isolation: isolate;
    }

    .camera-hand-section::before {
        display: none;
    }

    .camera-hand-content {
        width: 100%;
        justify-self: auto;
        text-align: center;
        z-index: 3;
    }

    .camera-hand-title {
        font-size: clamp(2.07rem, 9.315vw, 2.691rem);
        line-height: 1.02;
    }

    .camera-hand-price {
        margin: 12px 0 28px;
        font-size: 1.15rem;
    }

    .camera-hand-cta {
        min-width: 160px;
        margin-top: 16px;
        padding: 12px 24px;
        font-size: 1.05rem;
    }

    .camera-hand-img-wrapper {
        position: absolute;
        z-index: 0;
        top: 68%;
        right: 0;
        bottom: auto;
        left: auto;
        display: block;
        width: 110%;
        height: auto;
        padding: 0;
        pointer-events: none;
        transform: translateY(-50%);
    }

    .camera-hand-img-wrapper picture {
        display: block;
        width: 100%;
        height: auto;
    }

    .camera-section-wedding-photo {
        position: relative;
        z-index: 2;
        top: auto;
        left: auto;
        align-self: flex-start;
        width: min(100%, 232px);
        height: 272px;
        margin-left: calc(-40px - 5vw);
        margin-top: 67px;
        aspect-ratio: 3 / 4;
        padding: 14px;
        transform: none;
    }

    .camera-section-wedding-photo::before {
        top: -20px;
        bottom: -18px;
    }

    .camera-section-wedding-photo::after {
        top: -20px;
        bottom: -18px;
    }

    .camera-photo-guides::before,
    .camera-photo-guides::after {
        right: -16px;
        left: -16px;
    }

    .camera-section-wedding-photo img {
        object-position: center 25%;
    }

    .camera-hand-img-wrapper img {
        height: auto;
        width: 100%;
        max-width: 100%;
        object-fit: contain;
        object-position: right bottom;
        opacity: 1;
        display: block;
    }

    .photo-frames-section {
        padding: 50px 16px 50px 16px;
        height: 700px;
        min-height: 700px;
        box-sizing: border-box;
        background: url('https://ik.imagekit.io/2u47biiyv/ppimages/frame-bg-mobile.jpg') no-repeat center center / cover;
        box-shadow:
            inset 0 20px 20px -15px rgba(0, 0, 0, 0.4),
            inset 0 -25px 20px -15px rgba(0, 0, 0, 0.4);
    }

    .frames-title {
        font-size: 2.5rem;
    }

    .frames-subtitle {
        font-size: 1.7rem;
        margin-bottom: 20px;
    }

    .frames-order-btn {
        padding: 12px 24px;
        font-size: 1.05rem;
        margin-bottom: 30px;
    }

    .framed-photo-container {
        max-width: 272px;
        border-width: 8px;
        padding: 17px;
    }

    .instagram-section {
        padding: 40px 16px 0px 16px;
        height: 650px !important;
        overflow: hidden;
    }

    .instagram-title {
        font-size: 2.2rem;
        padding: 0px 16px 0px 16px;
        margin-top: 10px;
        margin-bottom: 4px;
    }

    .instagram-subtitle {
        font-size: 1.05rem;
        padding: 0px 16px 15px 16px;
        margin-bottom: 10px;
    }

    .phone-mockup-outer {
        margin-top: 45px;
        margin-bottom: 0px;
        transform: scale(0.85);
        transform-origin: top center;
    }

    .phone-mockup-wrapper {
        position: relative;
        width: 325px;
        height: 650px !important;
        background: #ffffff;
        border-radius: 44px !important;
        border: 8px solid #000000 !important;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
        display: flex;
        flex-direction: column;
        justify-content: flex-start !important;
        align-items: center;
        overflow: hidden !important;
        margin-top: 0;
        margin-bottom: 0;
    }

    .instagram-grid-wrapper {
        width: 100% !important;
        height: auto !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        display: flex !important;
        justify-content: center;
        align-items: flex-start;
        overflow: hidden !important;
    }

    .snapwidget-widget {
        width: 100% !important;
        height: 315px !important;
        border: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
    }

    .instagram-tab-bar {
        width: 100%;
        height: 38px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid #e2e8f0;
        background: #ffffff;
        margin-top: 8px !important;
    }

    .instagram-tab-bar .tab-item {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        color: #8e8e8e;
        font-size: 1.15rem;
        position: relative;
    }

    .instagram-tab-bar .tab-item.active {
        color: #000000;
    }

    .instagram-tab-bar .tab-item.active::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 50%;
        transform: translateX(-50%);
        width: 50%;
        height: 2px;
        background-color: #000000;
    }

    .phone-dynamic-island {
        width: 75px;
        height: 25px;
        top: 11px;
    }

    .phone-button-mute {
        left: -3px;
        top: 100px;
        height: 14px;
    }

    .phone-button-vol-up {
        left: -3px;
        top: 150px;
        height: 30px;
    }

    .phone-button-vol-down {
        left: -3px;
        top: 190px;
        height: 30px;
    }

    .phone-button-power {
        right: -3px;
        top: 150px;
        height: 80px;
    }

    .phone-status-bar {
        height: 40px;
        padding: 8px 18px 0 18px;
        font-size: 0.75rem;
        margin-left: 0;
    }

    .phone-time {
        font-size: 1.05rem;
        font-weight: 600;
        margin-left: 0;
    }

    .phone-status-icons .fa-battery-full {
        font-size: 1.15rem;
    }

    .phone-status-icons {
        font-size: 0.9rem;
        gap: 5px;
    }

    .contact-section {
        padding: 45px 20px;
    }

    .contact-title {
        font-size: 2.2rem;
        margin-bottom: 28px;
    }

    .contact-text {
        font-size: 1.1rem;
    }

    .contact-icon-circle {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .site-footer {
        padding: 40px 16px 25px 16px;
    }

    .footer-copyright {
        font-size: 1.0rem;
    }

    .footer-logo {
        width: 200px;
        margin-top: 7px;
        margin-bottom: 50px;
    }

    .social-icon {
        width: 42px;
        height: 42px;
        font-size: 1.25rem;
    }

    .credit-logo {
        height: 20px;
    }
}
