:root {
    --bg-color: #FDFBF7;
    --text-color: #1A1A1A;
    --mint: #D4E6D9;
    --pink: #EAD7D1;
    --yellow: #F2E7D5;
    --dark-green: #2D4034;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 40px 80px rgba(0, 0, 0, 0.1);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;

    --section-padding: 160px 0;
    --container-width: 1300px;
}

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

html {
    scroll-behavior: initial;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

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

/* Highlights */
.highlight-pink {
    background-color: var(--pink);
    border-radius: 50% 20%;
    padding: 0 10px;
}

.highlight-green {
    background-color: var(--mint);
    border-radius: 20% 50%;
    padding: 0 10px;
}

.highlight-yellow {
    background-color: var(--yellow);
    border-radius: 40%;
    padding: 0 10px;
}

.underline {
    text-decoration: underline;
    text-underline-offset: 8px;
}

/* Navigation */
.nav {
    padding: 24px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-wrapper {
    max-width: var(--container-width);
    margin: 0 auto;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--dark-green);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.icon-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: var(--mint);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    color: var(--text-color);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.7;
    transition: var(--transition);
}

.nav-links a:hover {
    opacity: 1;
}

.cta-nav {
    background: var(--text-color);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cta-nav:hover {
    transform: scale(1.05);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    padding: 8px;
    transition: var(--transition-fast);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Hero Section */
.hero-organic {
    min-height: 100vh;
    padding-top: 15vh;
    padding-bottom: 100px;
    background: radial-gradient(circle at 10% 20%, rgba(212, 230, 217, 0.3) 0%, rgba(255, 255, 255, 0) 50%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 800;
}

.hero-subtext {
    font-size: 1.25rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 450px;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.btn-pill {
    padding: 18px 40px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-pill.primary {
    background: var(--dark-green);
    color: #fff;
}

.btn-pill.secondary {
    background: #fff;
    border: 2px solid var(--text-color);
}

.btn-pill:hover {
    transform: scale(1.05) rotate(-2deg);
}

.hero-visuals {
    flex: 1;
    position: relative;
    height: 600px;
}

.blob-container {
    position: absolute;
    overflow: hidden;
    transition: var(--transition);
}

.blob-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blob-1 {
    width: 350px;
    height: 450px;
    border-radius: 45% 55% 70% 30% / 30% 40% 60% 70%;
    top: 50px;
    left: 50px;
    background: var(--mint);
    z-index: 2;
}

.blob-2 {
    width: 250px;
    height: 250px;
    border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
    bottom: 50px;
    right: 50px;
    background: var(--pink);
    z-index: 1;
}

.tag-floating {
    position: absolute;
    background: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.tag-1 {
    top: 20%;
    right: 10%;
    background: var(--yellow);
}

.tag-2 {
    bottom: 30%;
    left: 10%;
    transform: rotate(-10deg);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Ribbon */
.ribbon-wrapper {
    position: absolute;
    bottom: -10px;
    width: 110%;
    left: -5%;
    transform: rotate(-3deg);
    background: var(--text-color);
    color: #fff;
    padding: 20px 0;
    white-space: nowrap;
    overflow: hidden;
    z-index: 10;
}

.ribbon-content {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

/* Who we are */
.who-we-are {
    padding: var(--section-padding);
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.blob-main {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    position: relative;
    background: var(--pink);
}

.blob-label {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: var(--dark-green);
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 800;
}

.label-pill {
    display: inline-block;
    padding: 8px 24px;
    background: var(--mint);
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    margin-bottom: 24px;
}

.who-text h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.stats-row {
    margin-top: 50px;
    display: flex;
    gap: 40px;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
}

/* Collection */
.collection-organic {
    padding-bottom: 150px;
}

.header-group {
    text-align: center;
    margin-bottom: 80px;
}

.header-group h2 {
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 1rem;
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.p-card {
    border-radius: 40px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Staggered Collection */
.collection-controls {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.filter-menu {
    display: flex;
    gap: 12px;
    background: #fff;
    padding: 8px;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    background: transparent;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--text-color);
    opacity: 0.6;
}

.filter-btn.active {
    background: var(--dark-green);
    color: #fff;
    opacity: 1;
}

.product-staggered-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 80px;
    padding-bottom: 120px;
}

.p-staggered-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition);
}

/* Multi-row Staggering */
.p-staggered-item:nth-child(even) {
    transform: translateY(60px);
}

.p-staggered-item.hidden {
    display: none;
}

.p-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.8;
}

.p-card-wrap {
    background: #E8E8E6;
    border-radius: 40px;
    padding: 15px;
    aspect-ratio: 1/1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: var(--transition);
}

.p-card-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.p-footer h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.p-footer p {
    font-size: 0.9rem;
    opacity: 0.6;
    font-weight: 500;
}

/* Hover Effects */
.p-staggered-item:hover {
    transform: scale(1.02) translateY(var(--y-shift, 0));
}

.p-staggered-item[data-pos="low"]:hover {
    --y-shift: 40px;
}

.p-staggered-item:hover .p-card-wrap {
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.p-staggered-item:hover .p-card-wrap img {
    transform: scale(1.1);
}

/* Responsive Grid */
@media (max-width: 1100px) {
    .product-staggered-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }

    .p-staggered-item {
        flex: 0 0 30%;
    }
}

@media (max-width: 768px) {
    .p-staggered-item {
        flex: 0 0 45%;
    }

    .p-staggered-item[data-pos="low"] {
        transform: translateY(30px);
    }
}

@media (max-width: 480px) {
    .p-staggered-item {
        flex: 0 0 100%;
        transform: none !important;
    }
}

/* FAQ */
.section-faq {
    padding: 100px 0;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.faq-header h2 {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.faq-trigger {
    padding: 24px 32px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-trigger i {
    transition: var(--transition);
}

.faq-answer {
    padding: 0 32px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    opacity: 0;
}

.faq-answer p {
    padding-bottom: 24px;
    opacity: 0.7;
    line-height: 1.6;
}

.faq-item.active {
    border-color: var(--mint);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-item.active .faq-trigger i {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

/* Contact Us */
.section-contact {
    padding-bottom: 150px;
}

.contact-card {
    background: var(--pink);
    border-radius: 60px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
}

.contact-info {
    padding: 80px;
    background: var(--dark-green);
    color: #fff;
}

.contact-info h2 {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 20px;
}

.info-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.1rem;
}

.info-item i {
    color: var(--mint);
}

.contact-form {
    padding: 80px;
    background: #fff;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dark-green);
}

.contact-form button {
    width: 100%;
    padding: 24px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Updated Footer Top */
.footer-top {
    margin-bottom: 80px;
}

.f-newsletter {
    background: #fff;
    border-radius: 40px;
    padding: 60px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.f-newsletter h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.f-newsletter p {
    opacity: 0.6;
    margin-bottom: 2rem;
}

.cta-form-compact {
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-color);
    padding: 8px;
    border-radius: 50px;
    display: flex;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-form-compact input {
    flex: 1;
    border: none;
    background: none;
    padding: 0 24px;
    font-size: 1rem;
}

.cta-form-compact input:focus {
    outline: none;
}

.cta-form-compact button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--dark-green);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.cta-form-compact button:hover {
    transform: scale(1.1);
}

/* Footer */
.footer-organic {
    padding: 100px 0 60px;
    background: var(--yellow);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.f-brand p {
    margin-top: 15px;
    opacity: 0.7;
}

.f-icon {
    background: var(--dark-green);
}

.f-links {
    display: flex;
    gap: 80px;
}

.f-col h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.f-col a {
    display: block;
    text-decoration: none;
    color: var(--text-color);
    margin-bottom: 12px;
    opacity: 0.6;
    transition: var(--transition);
    position: relative;
    width: fit-content;
}

.f-col a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--text-color);
    transition: var(--transition);
}

.f-col a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.f-col a:hover::after {
    width: 100%;
}

.f-social-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.s-link-branded {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

.s-link-branded img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
    transition: var(--transition);
}

.s-link-branded span {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.8;
}

.s-link-branded:hover {
    transform: translateY(-8px);
}

.s-link-branded:hover img {
    transform: scale(1.1);
}

.back-to-top {
    position: absolute;
    right: 40px;
    bottom: 40px;
    width: 60px;
    height: 60px;
    background: var(--text-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 5;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    background: var(--dark-green);
}

@media (max-width: 1024px) {

    .grid-container,
    .hero-container {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .product-cards-refined {
        grid-template-columns: 1fr;
    }

    .hero-heading {
        font-size: 3rem;
    }

    .cta-inner {
        flex-direction: column;
        padding: 40px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .f-links {
        gap: 40px;
    }

    .back-to-top {
        position: static;
        margin-top: 40px;
    }
}

/* Product Modal */
.p-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.p-modal.active {
    display: flex;
}

.p-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 64, 52, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.p-modal-container {
    position: relative;
    background: var(--bg-color);
    width: 100%;
    max-width: 1000px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2);
    display: flex;
    z-index: 10;
    transform: translateY(30px);
    opacity: 0;
}

.p-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #fff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    z-index: 20;
    transition: var(--transition-fast);
}

.p-modal-close:hover {
    transform: rotate(90deg);
}

.p-modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.p-modal-gallery {
    background: #E8E8E6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.p-modal-gallery img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.p-modal-details {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.p-modal-details h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin: 20px 0;
}

.p-modal-details p {
    opacity: 0.6;
    line-height: 1.7;
    margin-bottom: 40px;
}

.p-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.spec-item span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
    margin-bottom: 8px;
}

.spec-item strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
}

.p-modal-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.p-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
}

/* ============================================================ */
/* RESPONSIVE DESIGN SYSTEM                                     */
/* ============================================================ */

/* Desktop Large (1400px+) */
@media (min-width: 1400px) {
    :root {
        --container-width: 1400px;
    }
}

/* Tablets & Small Desktops (< 1024px) */
@media (max-width: 1024px) {
    :root {
        --section-padding: 120px 0;
    }

    .container {
        padding: 0 30px;
    }

    .hero-heading {
        font-size: 3.5rem;
    }

    .grid-container {
        gap: 40px;
    }

    .who-text h2, .faq-header h2, .contact-info h2 {
        font-size: 2.8rem;
    }

    .testimonial-grid, .process-grid {
        gap: 30px;
    }
}

/* Mobile & Small Tablets (< 768px) */
@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .container {
        padding: 0 20px;
    }

    /* Navigation Mobile */
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: var(--transition);
        z-index: 1001;
        transform: translateX(100%);
        visibility: hidden;
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
        pointer-events: all;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 700;
    }

    /* Hero Stacking & Scaling */
    .hero-organic {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 10;
    }

    .hero-heading {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtext {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .hero-visuals {
        height: 300px;
        width: 100%;
        margin-top: 20px;
        position: relative;
    }

    .blob-1 {
        width: 200px;
        height: 250px;
        left: 50%;
        transform: translateX(-50%);
        top: -20px;
    }

    .blob-2 {
        width: 140px;
        height: 140px;
        right: 5%;
        bottom: 20px;
    }

    .tag-floating {
        display: none;
    }

    /* General Section Stacking */
    .grid-container, .testimonial-grid, .process-grid, .section-faq, .contact-card {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .who-visual {
        order: 2;
    }

    .who-text {
        order: 1;
    }

    .stats-row {
        justify-content: space-between;
        width: 100%;
    }

    /* Collection Tweaks */
    .product-staggered-grid {
        gap: 40px;
    }

    .p-staggered-item:nth-child(even) {
        transform: translateY(0) !important;
    }

    /* Contact & Footer */
    .contact-info, .contact-form {
        padding: 40px 30px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }

    .f-links {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .f-social-links {
        align-items: center;
    }

    .back-to-top {
        position: absolute;
        right: 40px;
        bottom: 40px;
        width: 60px;
        height: 60px;
        background: var(--text-color);
        color: #fff;
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: var(--transition);
        z-index: 5;
    }
}

/* Very Small Devices (< 480px) */
@media (max-width: 480px) {
    .hero-heading {
        font-size: 2.2rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn-pill {
        width: 100%;
        padding: 15px 30px;
    }

    .stats-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .header-group h2 {
        font-size: 2.8rem;
    }

    .p-modal-container {
        border-radius: 20px;
    }
}

/* Modal Responsiveness */
@media (max-width: 900px) {
    .p-modal-content {
        grid-template-columns: 1fr;
    }

    .p-modal-gallery {
        padding: 40px;
    }

    .p-modal-details {
        padding: 40px 30px;
    }

    .p-modal-details h2 {
        font-size: 2.2rem;
    }
}