/* VietKing Website Styles */

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Root Variables */
:root {
    --main-text: #ffe9ad;
    --secondary-text: #3f6870;
    --main-bg: #f6f2e9;
    --footer-bg: #6b8c92;
    --font-title: 'DM Serif Display', serif;
    --font-body: 'Inria Serif', serif;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--main-bg);
    color: var(--secondary-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animation Classes */
.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-title);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    padding: 1.1rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(111, 95, 70, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.77rem 0;
}

.nav-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.65rem;
}

.nav-left,
.nav-right {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

.nav-left {
    justify-content: flex-start;
    gap: 2.64rem;
}

.nav-right {
    justify-content: flex-end;
    gap: 2.64rem;
}

.navbar a {
    color: var(--main-text);
    text-decoration: none;
    font-size: 22px;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.navbar a:hover {
    opacity: 0.7;
}

.navbar a.active {
    background-color: #3f6870;
    color: #ffe9ad;
    padding: 2px 10px;
    border-radius: 4px;
}

.navbar a.active:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-logo img {
    height: 55px;
    width: auto;
}

.contact-btn {
    background-color: var(--secondary-text);
    color: var(--main-text);
    padding: 0.44rem 1.32rem;
    border-radius: 4px;
    font-weight: 700;
}

.contact-btn:hover {
    opacity: 1;
    background-color: #2d4f57;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--main-text);
    margin: 3px 0;
    transition: 0.3s;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    background-color: rgba(111, 95, 70, 0.95);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.mobile-menu.active {
    max-height: 400px;
    padding: 2rem;
}

.mobile-menu a {
    padding: 0.5rem 0;
    font-size: 18px;
    display: block;
    color: var(--main-text);
    text-decoration: none;
    transition: opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.mobile-menu.active a {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a:hover {
    opacity: 0.7;
}

.mobile-menu a.active {
    background-color: #3f6870;
    color: #ffe9ad;
    padding: 10px 10px;
    border-radius: 4px;
}

.mobile-menu a.active:hover {
    opacity: 1;
}

.mobile-menu .contact-btn {
    background-color: var(--secondary-text);
    color: var(--main-text);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    margin-top: 1rem;
    text-align: center;
}

.mobile-menu .contact-btn:hover {
    opacity: 1;
    background-color: #2d4f57;
}

/* Hero Section */
.hero {
    height: 80vh;
    min-height: 480px;
    background-image: url('/media/img/home/hero-bg-compressed.webp');
    background-size: cover;
    background-position: center calc(90% - 50px);
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--main-text);
    padding: 2rem;
}

.hero-content h1 {
    font-size: 40px;
    line-height: 1.4;
    letter-spacing: 5px;
    margin-bottom: 2rem;
    text-shadow: none;
}

.book-btn {
    background-color: #3f6870;
    color: #ffe9ad;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 14px;
    font-family: 'Inria Serif', serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    display: inline-block;
    min-width: 140px;
    height: 50px;
    line-height: 1;
    text-decoration: underline;
    line-height: 25px;
}

.book-btn:hover {
    background-color: #3f6870;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
    position: relative;
    background-color: var(--main-bg);
    padding: 4rem 0 0 0;
    overflow: hidden;
}

.about-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-52% - 50px));
    width: 100%;
    max-width: 1400px;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 0;
    opacity: 1;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

/* About Block 1 - Media Trio */
.about-block-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
}

.about-block-1-title {
    max-width: 1000px;
    margin: 0 auto;
}

.about-block-1-title h2 {
    font-size: 24px;
    line-height: 1.5;
    margin: 0;
    color: var(--secondary-text);
    font-weight: 400;
    letter-spacing: 1.5px;
}

.about-media-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.about-media-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
}

.about-media-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
    overflow: hidden;
    background: #0f2930;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.about-media-frame img,
.about-media-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.about-media-card.video-card .about-media-frame {
    background: #000;
}

.about-video {
    display: block;
}

.about-play-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    pointer-events: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.about-media-caption {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    color: var(--secondary-text);
    letter-spacing: 0.4px;
    text-align: center;
    max-width: 320px;
}

/* About Block 2 - 40% Text / 60% Image */
.about-block-2 {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-block-2-text {
    padding-left: unset !important;
}

.about-block-2-text {
    padding: 2rem;
    text-align: center;
}

.about-block-2-text p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--secondary-text);
}

.about-block-2-image {
    width: 87%;
    position: relative;
    margin-left: auto;
}

.about-slider {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
    background: #0f2930;
    aspect-ratio: 1 / 1;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
    scroll-behavior: smooth;
    touch-action: pan-x;
    will-change: scroll-position;
    transition: box-shadow 0.2s ease;
}

.about-slider::-webkit-scrollbar {
    display: none;
}

.about-slider-track {
    display: flex;
    width: 300%;
    height: 100%;
}

.about-slide {
    flex: 0 0 33.333%;
    height: 100%;
    scroll-snap-align: start;
}

.about-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}

.about-slider.dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.about-slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--secondary-text);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.about-slide-btn:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.04);
}

.about-slide-btn.prev {
    left: 12px;
}

.about-slide-btn.next {
    right: 12px;
}

.about-slide-dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    pointer-events: auto;
}

.about-slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-slide-dot.active {
    background: #fff;
    width: 12px;
    height: 12px;
}

.menu-btn {
    background-color: var(--secondary-text);
    color: var(--main-text);
    border: none;
    padding: 0.75rem 2rem;
    font-size: 14px;
    font-family: 'Inria Serif', serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.menu-btn:hover {
    background-color: #2d4f57;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.menu-btn:link,
.menu-btn:visited {
    color: var(--main-text);
    text-decoration: none;
}

/* Blog Section */
.blog {
    position: relative;
    padding: 0 0 6rem 0;
    background-image: url('/media/img/home/width_1600.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.blog::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(247, 242, 233, 0.92);
    z-index: 0;
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.blog-header {
    text-align: left;
    margin-bottom: 4rem;
}

.blog-subtitle {
    font-size: 15px;
    color: var(--secondary-text);
    margin-bottom: 0.5rem;
    font-weight: 400;
    font-style: italic;
}

.blog-title {
    font-size: 28px;
    color: var(--secondary-text);
    font-weight: 400;
    letter-spacing: 2px;
}

.blog-slider-wrapper {
    position: relative;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-slider-btn,
.blog-slider-dots {
    display: none;
}

.blog-card {
    background-color: #f8e4aa;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 2rem 1.5rem;
    background-color: rgba(248, 228, 170, 0.9);
}

.blog-content h3 {
    font-size: 23px;
    color: var(--secondary-text);
    margin-bottom: 1rem;
    font-weight: 400;
}

.blog-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--secondary-text);
    margin-bottom: 1.5rem;
}

.blog-link {
    color: var(--secondary-text);
    text-decoration: none;
    font-size: 15.2px;
    font-weight: 700;
    transition: opacity 0.3s ease;
    display: inline-block;
    padding-top: 1rem;
    border-top: 1px solid rgba(63, 104, 112, 0.2);
    width: 100%;
}

.blog-link:hover {
    opacity: 0.7;
}

/* Instagram Section */
.instagram {
    background-color: var(--main-bg);
    padding: 6rem 0;
}

.instagram-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.instagram-title {
    text-align: center;
    font-size: 28px;
    color: var(--secondary-text);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.instagram-carousel {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
}

.instagram-window {
    max-width: 1180px;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.instagram-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s ease;
    animation: instagram-scroll 28s linear infinite;
}

.instagram-track:hover {
    animation-play-state: paused;
}

.instagram-card {
    margin: 0;
    flex: 0 0 280px;
    aspect-ratio: 3 / 4;
    background-color: #fff;
    box-shadow: 0 18px 32px rgba(10, 32, 28, 0.2);
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    display: block;
}

.instagram-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.instagram-card:hover img {
    transform: scale(1.1);
}

.instagram-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(63, 104, 112, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-card:hover::after {
    opacity: 1;
}

@keyframes instagram-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Floating Phone Button */
.floating-phone {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-phone:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.floating-phone svg {
    width: 28px;
    height: 28px;
    color: white;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* Footer */
.footer {
    background-color: #70938d;
    color: var(--main-text);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    text-align: center;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin: 0 auto 1.5rem;
}

.footer-brand {
    margin-top: -40px;
}

.footer-brand p {
    font-size: 16px;
    line-height: 1.6;
    /* margin-bottom: 0.75rem; */
}

.footer h3 {
    font-size: 24px;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer p {
    font-size: 16px;
    line-height: 1.8;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.social-icons a {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 233, 173, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: rgba(255, 233, 173, 0.4);
    transform: translateY(-2px);
}

.social-icons img {
    /* width: 26px; */
    height: 65px;
}

.footer-legal-links {
    font-size: 16px;
    opacity: 0.9;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.footer-legal-links a {
    color: var(--main-text);
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: block;
}

.footer-legal-links a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.copyright {
    font-size: 14px;
    opacity: 0.9;
}

.designer-link {
    color: var(--main-text);
    text-decoration: underline;
    font-size: 14px;
}

.designer-link:hover {
    opacity: 0.8;
}

/* Responsive Breakpoints */

/* Bigger Web (1280px - 1920px) */
@media (min-width: 1280px) and (max-width: 1920px) {
    .navbar a {
        font-size: 21.12px; /* 10% bigger than 19.2px */
    }

    .nav-logo img {
        height: 55px;
    }

    .hero-content h1 {
        font-size: 40px; /* 20% bigger */
    }
}

/* Smaller Web (960px - 1280px) */
@media (min-width: 960px) and (max-width: 1279px) {
    .navbar a {
        font-size: 18px;
    }

    .nav-logo img {
        height: 55px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .about-block-1 {
        gap: 2rem;
    }

    .about-block-1-title h2 {
        font-size: 24px;
    }

    .about-media-grid {
        gap: 1.25rem;
    }

    .about-media-caption {
        font-size: 15px;
    }

    .about-block-2 {
        grid-template-columns: 40% 60%;
    }

    .about-block-2-text p {
        font-size: 16px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Smaller Web (960px - 1280px) */
@media (min-width: 960px) and (max-width: 1279px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .blog-title {
        font-size: 28px;
    }

    .instagram-window {
        max-width: 1020px;
    }

    .instagram-title {
        font-size: 28px;
    }
}

/* Mobile (up to 960px) */
@media (max-width: 959px) {
    .nav-container {
        display: flex;
        justify-content: space-between;
        padding: 0 1rem;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .nav-logo img {
        height: 55px;
    }

    .hero {
        margin-top: 0;
        background-attachment: scroll;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        min-height: 66.67vh;
    }

    .navbar {
        background-color: transparent;
        padding: 0.77rem 0;
    }

    .hero-content h1 {
        font-size: 32px;
        letter-spacing: 3px;
    }

    .about {
        padding: 2rem 0;
    }

    .about-background {
        display: none;
    }

    .about-container {
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
    }

    .about-block-1 {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .about-block-1-title h2 {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .about-media-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .about-media-frame {
        aspect-ratio: 4 / 5;
    }

    .about-media-caption {
        font-size: 14px;
        line-height: 1.6;
    }

    .about-block-2 {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
        order: 2;
    }

    .about-block-2-text {
        order: 1;
        padding: 1rem 0;
    }

    .about-block-2-image {
        order: 2;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .about-block-2-text p {
        font-size: 14px;
    }

    .about-block-2-text .menu-btn {
        margin-top: 1.5rem;
    }

    .about-slide-btn {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }

    .about-slide-dots {
        gap: 8px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer h3 {
        font-size: 20px;
    }

    .blog {
        padding: 3rem 0;
    }

    .blog-container {
        padding: 0 1rem;
    }

    .blog-slider-wrapper {
        position: relative;
        overflow: hidden;
    }

    .blog-grid {
        display: flex;
        gap: 0;
        transition: transform 0.5s ease-in-out;
    }

    .blog-card {
        flex: 0 0 100%;
    }

    .blog-slider-btn {
        display: none !important;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(255, 255, 255, 0.9);
        color: var(--secondary-text);
        border: none;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
        align-items: center;
        justify-content: center;
        font-weight: 300;
    }

    .blog-slider-btn:hover {
        background-color: rgba(255, 255, 255, 1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .blog-slider-btn.prev {
        left: 10px;
    }

    .blog-slider-btn.next {
        right: 10px;
    }

    .blog-slider-dots {
        display: flex !important;
        justify-content: center;
        gap: 10px;
        margin-top: 1.5rem;
    }

    .blog-slider-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: rgba(63, 104, 112, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .blog-slider-dot.active {
        background-color: var(--secondary-text);
        width: 12px;
        height: 12px;
    }

    .blog-slider-dot:hover {
        background-color: rgba(63, 104, 112, 0.6);
    }

    .blog-title {
        font-size: 20px;
    }

    .instagram {
        padding: 3rem 0;
    }

    .instagram-container {
        padding: 0 1rem;
    }

    .instagram-title {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .instagram-carousel {
        flex-direction: column;
        gap: 1rem;
    }

    .instagram-window {
        width: 100%;
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .instagram-track {
        gap: 12px;
        animation: instagram-scroll 24s linear infinite;
    }

    .instagram-card {
        flex: 0 0 calc((100% - 18px) / 2.3);
        max-width: calc((100% - 18px) / 2.3);
        min-width: 120px;
    }

    .footer-logo {
        height: 55px;
    }

    .footer-legal-links {
        font-size: 16px;
        margin-top: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .floating-phone {
        display: flex;
    }
}

/* Mobile Menu Dropdown - 3 Dots Button */
.mobile-menu-trigger {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 25px;
    z-index: 9999;
    background: #ffe9ad;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .mobile-menu-trigger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 56px;
        height: 56px;
    }
}

.mobile-menu-trigger:hover {
    background: #ffe9ad;
    transform: scale(1.05);
}

.mobile-menu-trigger:active {
    transform: scale(0.95);
}

.mobile-menu-trigger.active {
    background: #406870 !important;
}

.mobile-menu-trigger.active .menu-dots-icon {
    color: #ffe9ad !important;
}

.mobile-menu-trigger.active .menu-dots-icon span {
    opacity: 0;
    width: 0;
    height: 0;
}

.mobile-menu-trigger.active .menu-dots-icon::before,
.mobile-menu-trigger.active .menu-dots-icon::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 3px;
    background-color: #ffe9ad;
    border-radius: 2px;
}

.mobile-menu-trigger.active .menu-dots-icon::before {
    transform: rotate(45deg);
}

.mobile-menu-trigger.active .menu-dots-icon::after {
    transform: rotate(-45deg);
}

.menu-dots-icon {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #3f6870;
}

.menu-dots-icon span {
    width: 5px;
    height: 5px;
    background: currentColor;
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease;
}

.mobile-dropdown-menu {
    position: fixed;
    bottom: 85px;
    right: 20px;
    background: transparent;
    border-radius: 16px;
    padding: 0;
    z-index: 9998;
    opacity: 0;
    transform: scale(0.95) translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
    visibility: hidden;
    display: flex;
}

.mobile-dropdown-menu.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
    visibility: visible;
}

.mobile-dropdown-menu .menu-icon-item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: static !important;
    width: 65px !important;
    height: 75px !important;
    transition: transform 0.2s ease;
}

.mobile-dropdown-menu .menu-icon-item:hover {
    transform: scale(1.05);
}

.mobile-dropdown-menu .menu-icon-item:active {
    transform: scale(0.95);
}

.mobile-dropdown-menu .menu-icon-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease;
    text-decoration: none;
    color: #333;
}

.mobile-menu-item:hover {
    background: rgba(0, 0, 0, 0.05);
}

.mobile-menu-item:active {
    background: rgba(0, 0, 0, 0.1);
}

.menu-item-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.menu-item-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.menu-item-text {
    font-family: 'Inria Serif', serif;
    font-size: 15px;
    font-weight: 400;
    color: #333;
    flex: 1;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 9997;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    visibility: hidden;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.95);
    }
}

@media (min-width: 769px) {
    .mobile-menu-trigger,
    .mobile-dropdown-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}

.menu-separator {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 8px 12px;
}

.mobile-menu-item:hover .menu-item-icon {
    color: #d32f2f;
    transform: scale(1.1);
    transition: all 0.2s ease;
}

.mobile-menu-item.active {
    background: rgba(211, 47, 47, 0.1);
}

.mobile-menu-item.active .menu-item-icon {
    color: #d32f2f;
}

.mobile-menu-item.active .menu-item-text {
    color: #d32f2f;
    font-weight: 600;
}
