:root {
    /* Color Palette */
    --color-sage: #9BA383;
    --color-sage-light: #B4BC9E;
    --color-pink: #D6A597;
    --color-pink-light: #E8C1B6;
    --color-sand: #F2ECE4;
    --color-sand-dark: #D9C5B2;
    --color-text-dark: #4A4D42;
    --color-text-muted: #6A6E62;
    --color-white: #FFFFFF;
    
    /* Spacing & Sizes */
    --container-width: 1200px;
    --header-height: 80px;
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

html, body {
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--color-text-dark);
    background-color: var(--color-white);
    letter-spacing: -0.01em;
}

.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.04;
    pointer-events: none;
    z-index: 9999;
}

/* Background Blobs */
.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--color-sand) 0%, rgba(255,255,255,0) 100%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
    animation: blob-float 20s infinite alternate cubic-bezier(0.45, 0, 0.55, 1);
}

.blob-1 { top: -100px; right: -100px; }
.blob-2 { bottom: 30%; left: -200px; background: linear-gradient(135deg, var(--color-pink-light) 0%, rgba(255,255,255,0) 100%); }

@keyframes blob-float {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(50px, 100px) scale(1.1); }
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 100px 0;
    overflow-x: hidden;
}

.gray-bg {
    background-color: var(--color-sand);
}

.divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--color-sage), var(--color-pink));
    margin: 1rem 0;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: none;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-sage);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-text-dark);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(155, 163, 131, 0.2);
}

.btn-minimal {
    font-weight: 600;
    color: var(--color-text-dark);
    position: relative;
    padding: 10px 0;
}

.btn-minimal::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-sage);
    transition: var(--transition);
}

.btn-minimal:hover::after {
    width: 100%;
}

.btn-minimal svg {
    transition: var(--transition);
}

.btn-minimal:hover svg {
    transform: translate(3px, -3px);
}

/* Header & Nav */
header {
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--color-sage);
}

/* Hero Section */
.hero {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, var(--color-sand) 0%, var(--color-white) 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tagline {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-pink);
    margin-bottom: 1rem;
    display: block;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--color-text-dark);
}

.hero h1 span {
    color: var(--color-sage);
    position: relative;
    display: inline-block;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: var(--color-sand);
    z-index: -1;
    border-radius: 10px;
}

.hero p {
    font-size: 1.3rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual .image-wrapper {
    position: relative;
    background-color: var(--color-sand);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    padding: 3rem; /* Balanced padding */
    width: 100%;
    max-width: 350px; /* Constrained size */
    animation: morph 20s infinite alternate ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes morph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 66% 34% 52% 48% / 48% 62% 38% 52%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

.hero-visual img {
    max-width: 280px; /* Original logo size */
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

/* About Section */
.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--color-text-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.mission-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.m-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow);
    border-left: 5px solid var(--color-pink);
}

.m-card h3 {
    margin-bottom: 0.5rem;
    color: var(--color-sage);
}

.about-visual .image-box {
    background-color: var(--color-sand-dark);
    height: 450px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
}

.image-box img.work-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.image-box:hover img.work-photo {
    transform: scale(1.05);
}

/* Pillars Section */
.pillars-section {
    background-color: var(--color-sand) !important;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    width: 100%;
}

.pillar-item {
    background: var(--color-white);
    padding: 2.5rem 1.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.pillar-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.pillar-icon {
    width: 65px;
    height: 65px;
    background: var(--color-sage);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.pillar-item:nth-child(2) .pillar-icon { background: var(--color-pink); }
.pillar-item:nth-child(3) .pillar-icon { background: var(--color-sand-dark); }
.pillar-item:nth-child(4) .pillar-icon { background: var(--color-sage-light); }

.pillar-content h3 {
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    color: var(--color-text-dark);
}

.pillar-content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.pillars-footer {
    text-align: center;
    margin-top: 3.5rem;
    width: 100%;
}

.pillars-footer p {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-sage);
    font-style: italic;
    opacity: 0.9;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background-color: var(--color-white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-sand) 0%, #ffffff 100%);
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-15px) rotate(1deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.service-card:hover::before {
    opacity: 1;
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--color-sand);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--color-sage);
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background-color: var(--color-sage);
    color: var(--color-white);
    transform: rotate(-10deg) scale(1.1);
}

.service-card h3 {
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
}

.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.service-card p {
    color: var(--color-text-muted);
}

/* Founders Section */
.founders-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.founder-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    align-items: center;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1.2;
}

.founder-info {
    padding: 3rem;
}

.founder-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--color-sage);
}

.founder-info .role {
    font-weight: 600;
    color: var(--color-pink);
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
}

.founder-info .bio p {
    margin-bottom: 1.5rem;
}

.qualifications {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

.qualifications li {
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.qualifications li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-sage);
    font-weight: bold;
}

/* Importance Section */
.main-p {
    font-size: 1.3rem;
    max-width: 800px;
    margin-bottom: 3.5rem;
    color: var(--color-text-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
}

.benefit h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-pink);
    position: relative;
    padding-bottom: 0.5rem;
}

.benefit h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-sage);
}

/* Location Section */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.address {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.phone {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-box {
    background-color: var(--color-sand);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    margin-top: 2rem;
}

.cta-box p {
    margin-bottom: 1.5rem;
}

.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 450px;
}

/* Footer */
.footer {
    background-color: var(--color-text-dark);
    color: var(--color-white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1.5rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.2rem;
    font-weight: 500;
    transition: var(--transition);
}

.contact-item:hover {
    color: var(--color-pink);
    transform: translateX(5px);
}

.contact-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    transition: var(--transition);
}

.contact-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.contact-icon.original-logo { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.contact-icon.original-logo-wa { background-color: #25D366; }
.contact-icon.email { background-color: var(--color-sage); }

.footer-address {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-address p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0.3rem;
}

.footer h4 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--color-white);
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer ul a:hover {
    color: var(--color-pink);
    padding-left: 5px;
}

.footer-logo p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 400px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Float Buttons */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 35px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3.5rem; }
    .about-grid, .hero-content, .location-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-image { order: -1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .pillar-item {
        padding: 2rem 1rem;
    }
}

/* Mobile Nav */
@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    .section-padding { padding: 60px 0; }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: 0;
        background-color: var(--color-white);
        flex-direction: column;
        align-items: center;
        overflow: hidden;
        transition: var(--transition);
        justify-content: center;
        gap: 2rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    .nav-links.active {
        height: 350px;
        padding: 2rem 0;
    }

    .nav-btn { display: none; }
    
    .mobile-menu {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
    }

    .mobile-menu span {
        width: 25px;
        height: 2px;
        background-color: var(--color-text-dark);
        border-radius: 2px;
        transition: var(--transition);
    }

    .mobile-menu.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
    .mobile-menu.active span:nth-child(2) { opacity: 0; }
    .mobile-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

    /* Hero Mobile Fixes */
    /* Hero Section Mobile Reorder */
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        text-align: center;
    }

    .hero-visual {
        order: -1;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .hero-visual .image-wrapper {
        max-width: 250px;
        padding: 2.5rem;
    }
    
    .hero h1 { 
        font-size: 2.8rem; 
        margin-bottom: 1.5rem;
        width: 100%;
    }

    .hero p {
        margin: 0 auto 2.5rem;
        font-size: 1.1rem;
    }

    .hero-btns {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        gap: 1.2rem;
    }

    .hero-btns .btn { width: 100%; }

    .hero-visual img {
        width: 100%;
        height: auto;
        max-height: 220px; 
        object-fit: contain;
    }

    /* Reposition Badges to the marked area below the logo */
    .floating-badge {
        position: absolute;
        width: 130px; 
        justify-content: center;
        z-index: 5;
    }
    .fb-1 { top: auto; bottom: -30px; left: 0; transform: none; }
    .fb-2 { top: auto; bottom: -30px; right: 0; transform: none; }

    /* Mission/Vision Cards Fix */
    .mission-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-visual .image-box { 
        height: 300px; 
        margin-top: 2rem;
    }

    /* Founder Card Mobile Adjustments */
    .founder-card { 
        grid-template-columns: 1fr; 
        gap: 0;
    }
    .founder-info {
        padding: 2rem 1.5rem;
    }
    .founder-image img {
        aspect-ratio: 1/1;
    }

    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }

    /* Footer Mobile */
    .footer-grid { 
        grid-template-columns: 1fr; 
        gap: 3rem; 
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }

    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo p {
        margin: 0 auto;
    }

    .footer-address {
        text-align: center;
    }
}

/* Global Text Protection */
p, h1, h2, h3, h4, span {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Animations */
[class*="animate-"] {
    opacity: 0;
    transition: all 1s ease-out;
}

.animate-up { transform: translateY(50px); }
.animate-left { transform: translateX(-50px); }
.animate-right { transform: translateX(50px); }
.animate-fade { opacity: 0; }

.appear {
    opacity: 1;
    transform: translate(0);
}

.animate-blooming {
    animation: blooming 2s ease-out forwards;
}

@keyframes blooming {
    0% { transform: scale(0.8) translateY(20px); opacity: 0; filter: blur(10px); }
    100% { transform: scale(1) translateY(0); opacity: 1; filter: blur(0); }
}

.appear {
    opacity: 1;
    transform: translate(0);
}

.contact-icon {
    flex-shrink: 0 !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.contact-icon svg {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    display: block !important;
}

/* Instagram Feed Widget Style */
.insta-wrapper {
    position: relative;
    margin: 2rem 0 1rem;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
}

.insta-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    padding: 1rem 0;
    animation: scroll-v2 60s linear infinite;
}

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

.insta-post {
    flex: 0 0 260px;
    height: 260px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    background-color: var(--color-white);
    transition: var(--transition);
}

.insta-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(135, 149, 131, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--color-white);
}

.insta-overlay svg {
    width: 35px !important;
    height: 35px !important;
}

.insta-post:hover {
    transform: translateY(-5px);
}

.insta-post:hover .insta-overlay {
    opacity: 1;
}

.insta-footer {
    text-align: center;
    margin-top: 0.5rem;
}

.insta-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    text-decoration: none;
    transition: var(--transition);
    padding: 10px 24px;
    background: var(--color-white);
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.03);
}

.insta-cta:hover {
    color: var(--color-pink);
    transform: scale(1.05);
}

/* Animations - Seamless Loop */
@keyframes scroll-v2 {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 0.75rem)); } /* Adjust for gap half */
}

.float-anim {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

@media (max-width: 768px) {
    .insta-wrapper { margin: 1.5rem 0 0.5rem; }
    .insta-post { 
        flex: 0 0 200px; 
        height: 200px;
    }
    .insta-track { 
        gap: 1rem;
        animation-duration: 45s;
    }
    @keyframes scroll-v2-mobile {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-50% - 0.5rem)); }
    }
    .insta-track { animation-name: scroll-v2-mobile; }
    .insta-cta {
        font-size: 0.9rem;
        padding: 8px 18px;
    }
}
