/* CSS Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --noura-green: #2D5A3D;
    --noura-light-green: #4A7C59;
    --noura-yellow: #F4D03F;
    --noura-white: #FFFFFF;
    --noura-gray: #F8F9FA;
    --noura-text: #1A1A1A;
    --noura-text-gray: #6C757D;
    --custom-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --fluid-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--noura-text);
    background: var(--noura-white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Selection */
::selection {
    background: rgba(45, 90, 61, 0.2);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--noura-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--noura-light-green);
    border-radius: 4px;
}

/* Animations */
@keyframes float {

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

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

@keyframes float-slow {

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

    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

@keyframes gentle-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slide-down {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animate-float-slow {
    animation: float-slow 6s ease-in-out infinite;
}

.animate-gentle-pulse {
    animation: gentle-pulse 3s ease-in-out infinite;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.7s var(--custom-expo);
    padding: 1.5rem 0;
}

.nav.scrolled {
    padding: 0.75rem 1rem;
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    transition: all 0.7s var(--custom-expo);
}

.nav.scrolled .nav-inner {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    box-shadow: 0 10px 40px -10px rgba(45, 90, 61, 0.15);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--noura-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--custom-expo);
}

.nav-logo:hover .nav-logo-icon {
    transform: scale(1.1);
}

.nav-logo-icon span {
    color: white;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.125rem;
}

.nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--noura-green);
    letter-spacing: 0.05em;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    position: relative;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--noura-text-gray);
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--noura-green);
    transition: width 0.3s var(--custom-expo);
}

.nav-link:hover,
.nav-link.active {
    color: var(--noura-green);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--noura-green);
    border-radius: 50%;
}

.nav-cta {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border: 1.5px solid var(--noura-green);
    border-radius: 50px;
    color: var(--noura-green);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s var(--custom-expo);
}

@media (min-width: 768px) {
    .nav-cta {
        display: inline-flex;
    }
}

.nav-cta:hover {
    background: var(--noura-green);
    color: white;
}

.nav-cta svg {
    width: 16px;
    height: 16px;
}

.nav-menu-btn {
    display: flex;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background 0.3s ease;
}

.nav-menu-btn:hover {
    background: var(--noura-gray);
}

@media (min-width: 768px) {
    .nav-menu-btn {
        display: none;
    }
}

.nav-menu-btn svg {
    width: 24px;
    height: 24px;
    color: var(--noura-green);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
}

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

.mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
}

.mobile-menu-panel {
    position: absolute;
    top: 80px;
    left: 1rem;
    right: 1rem;
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px -15px rgba(45, 90, 61, 0.2);
    transform: translateY(-20px) scale(0.95);
    opacity: 0;
    transition: all 0.5s var(--custom-expo);
}

.mobile-menu.active .mobile-menu-panel {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-link {
    padding: 0.875rem 1rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--noura-text);
    transition: all 0.3s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    background: rgba(45, 90, 61, 0.1);
    color: var(--noura-green);
}

.mobile-menu-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1rem;
    padding: 0.875rem;
    background: var(--noura-green);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.mobile-menu-cta:hover {
    background: var(--noura-light-green);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, white 0%, var(--noura-gray) 50%, white 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
}

.hero-bg-overlay-2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, white 0%, transparent 30%, rgba(255, 255, 255, 0.3) 100%);
}

.hero-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-bubble {
    position: absolute;
    border-radius: 50%;
    backdrop-filter: blur(4px);
}

.hero-bubble-1 {
    top: 25%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: rgba(74, 124, 89, 0.1);
    animation: float 4s ease-in-out infinite;
}

.hero-bubble-2 {
    top: 33%;
    right: 15%;
    width: 64px;
    height: 64px;
    background: rgba(244, 208, 63, 0.2);
    animation: float 4s ease-in-out infinite 1s;
}

.hero-bubble-3 {
    bottom: 25%;
    left: 20%;
    width: 48px;
    height: 48px;
    background: rgba(45, 90, 61, 0.1);
    animation: float 4s ease-in-out infinite 2s;
}

.hero-bubble-4 {
    top: 60%;
    right: 25%;
    width: 32px;
    height: 32px;
    background: rgba(74, 124, 89, 0.15);
    animation: float 4s ease-in-out infinite 1.5s;
}

.hero-content {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
}

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

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.hero-text {
    text-align: center;
    order: 2;
}

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
        order: 1;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(45, 90, 61, 0.1);
    border-radius: 50px;
    color: var(--noura-green);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(1rem);
    animation: fade-in-up 0.7s var(--custom-expo) 0.2s forwards;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--noura-green);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(2rem);
    animation: fade-in-up 1s var(--custom-expo) 0.3s forwards;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--noura-light-green);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(2rem);
    animation: fade-in-up 1s var(--custom-expo) 0.4s forwards;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.875rem;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 2.25rem;
    }
}

.hero-description {
    color: var(--noura-text-gray);
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(2rem);
    animation: fade-in-up 1s var(--custom-expo) 0.5s forwards;
}

@media (min-width: 1024px) {
    .hero-description {
        margin: 0 0 2rem 0;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(2rem);
    animation: fade-in-up 1s var(--custom-expo) 0.6s forwards;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s var(--custom-expo);
}

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

.btn-primary:hover {
    background: var(--noura-light-green);
    box-shadow: 0 20px 60px -15px rgba(45, 90, 61, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--noura-green);
    color: var(--noura-green);
}

.btn-outline:hover {
    background: var(--noura-green);
    color: white;
}

.btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(4px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(45, 90, 61, 0.1);
    opacity: 0;
    transform: translateY(2rem);
    animation: fade-in-up 1s var(--custom-expo) 0.7s forwards;
}

.hero-stat {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-stat {
        text-align: left;
    }
}

.hero-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--noura-green);
}

@media (min-width: 640px) {
    .hero-stat-value {
        font-size: 2.5rem;
    }
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--noura-text-gray);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    order: 1;
}

@media (min-width: 1024px) {
    .hero-image-wrapper {
        justify-content: flex-end;
        order: 2;
    }
}

.hero-image-container {
    position: relative;
    opacity: 0;
    transform: scale(0.9);
    animation: scale-in 1s var(--custom-expo) 0.3s forwards;
    transition: transform 0.1s ease-out;
}

.hero-image-glow {
    position: absolute;
    inset: 0;
    background: rgba(45, 90, 61, 0.2);
    border-radius: 50%;
    filter: blur(60px);
    transform: scale(0.75);
    animation: gentle-pulse 3s ease-in-out infinite;
}

.hero-image {
    position: relative;
    z-index: 10;
    max-width: 400px;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
    animation: float-slow 6s ease-in-out infinite;
}

@media (min-width: 1024px) {
    .hero-image {
        max-width: 450px;
    }
}

@media (min-width: 1280px) {
    .hero-image {
        max-width: 500px;
    }
}

.hero-float-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    z-index: 9999;
    padding: 1rem;
    box-shadow: 0 10px 40px -10px rgba(45, 90, 61, 0.15);
    opacity: 0;
    animation: fade-in-up 0.7s var(--custom-expo) forwards;
}

.hero-float-card-1 {
    left: -1rem;
    top: 25%;
    animation-delay: 0.8s;
}

.hero-float-card-2 {
    right: -1rem;
    bottom: 25%;
    animation-delay: 0.9s;
}

.float-card-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.float-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.float-card-icon.yellow {
    background: rgba(244, 208, 63, 0.2);
}

.float-card-icon.green {
    background: rgba(45, 90, 61, 0.1);
}

.float-card-title {
    font-weight: 600;
    color: var(--noura-green);
    font-size: 0.875rem;
}

.float-card-subtitle {
    color: var(--noura-text-gray);
    font-size: 0.75rem;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
}

.hero-wave svg {
    width: 100%;
    height: auto;
    display: block;
}

/* How to Use Section */
.how-to-use {
    position: relative;
    padding: 6rem 0;
    background: white;
    overflow: hidden;
}

.section-bg-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.section-bg-blob-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: rgba(45, 90, 61, 0.05);
    border-radius: 50%;
    filter: blur(60px);
    transform: translate(-50%, -50%);
}

.section-bg-blob-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: rgba(74, 124, 89, 0.05);
    border-radius: 50%;
    filter: blur(60px);
    transform: translate(50%, 50%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--noura-light-green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--noura-green);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 4rem;
    }
}

.section-description {
    color: var(--noura-text-gray);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.how-to-use-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .how-to-use-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.usage-cards {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .usage-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .usage-cards {
        grid-template-columns: 1fr;
    }
}

.usage-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 40px -10px rgba(45, 90, 61, 0.15);
    transition: all 0.5s var(--custom-expo);
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.usage-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.usage-card.blue::before {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
}

.usage-card.green::before {
    background: linear-gradient(135deg, rgba(45, 90, 61, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
}

.usage-card.purple::before {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
}

.usage-card-content {
    position: relative;
    z-index: 1;
}

.usage-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.5s var(--custom-expo);
}

.usage-card:hover .usage-card-icon {
    transform: scale(1.1) rotate(3deg);
}

.usage-card-icon.blue {
    background: rgba(59, 130, 246, 0.1);
    color: #2563EB;
}

.usage-card-icon.green {
    background: rgba(45, 90, 61, 0.1);
    color: var(--noura-green);
}

.usage-card-icon.purple {
    background: rgba(139, 92, 246, 0.1);
    color: #7C3AED;
}

.usage-card-icon svg {
    width: 32px;
    height: 32px;
}

.usage-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--noura-green);
    margin-bottom: 0.75rem;
}

.usage-card-description {
    color: var(--noura-text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.usage-card-features {
    list-style: none;
}

.usage-card-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--noura-text);
    margin-bottom: 0.5rem;
}

.usage-card-features li svg {
    width: 16px;
    height: 16px;
    color: var(--noura-light-green);
    flex-shrink: 0;
}

.how-to-use-image {
    position: relative;
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .how-to-use-image {
        justify-content: flex-end;
    }
}

.how-to-use-image-container {
    position: relative;
    transition: transform 0.1s ease-out;
}

.how-to-use-image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 90, 61, 0.2) 0%, rgba(74, 124, 89, 0.2) 100%);
    border-radius: 50%;
    filter: blur(60px);
    transform: scale(0.9);
    animation: gentle-pulse 3s ease-in-out infinite;
}

.how-to-use-image img {
    position: relative;
    z-index: 10;
    max-width: 320px;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
    animation: float-slow 6s ease-in-out infinite;
}

@media (min-width: 1024px) {
    .how-to-use-image img {
        max-width: 380px;
    }
}

.how-to-use-float-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    z-index: 9999;
    padding: 0.75rem;
    box-shadow: 0 10px 40px -10px rgba(45, 90, 61, 0.15);
    animation: float 4s ease-in-out infinite;
}

.how-to-use-float-card-1 {
    left: -2rem;
    top: 30%;
    animation-delay: 0.5s;
}

.how-to-use-float-card-2 {
    right: -1rem;
    bottom: 30%;
    animation-delay: 1s;
}

/* Why Choose Us Section */
.why-choose-us {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.why-choose-us-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.why-choose-us-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.why-choose-us-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, white 0%, rgba(255, 255, 255, 0.8) 50%, white 100%);
}

.why-choose-us-content {
    position: relative;
    z-index: 10;
}

.why-choose-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .why-choose-us-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    box-shadow: 0 10px 40px -10px rgba(45, 90, 61, 0.15);
    transition: all 0.5s var(--custom-expo);
}

.benefit-item:hover {
    box-shadow: 0 20px 60px -15px rgba(45, 90, 61, 0.2);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(45, 90, 61, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background: var(--noura-green);
    transform: scale(1.1);
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    color: var(--noura-green);
    transition: color 0.3s ease;
}

.benefit-item:hover .benefit-icon svg {
    color: white;
}

.benefit-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--noura-green);
    margin-bottom: 0.25rem;
}

.benefit-content p {
    color: var(--noura-text-gray);
    font-size: 0.875rem;
    line-height: 1.6;
}

.products-showcase {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 40px -10px rgba(45, 90, 61, 0.15);
}

.products-showcase h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--noura-green);
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.product-card {
    position: relative;
    cursor: pointer;
    transition: all 0.5s var(--custom-expo);
}

.product-card:hover {
    transform: scale(1.05);
    z-index: 10;
}

.product-card.dimmed {
    opacity: 0.6;
    transform: scale(0.95);
}

.product-card-inner {
    background: linear-gradient(to bottom, var(--noura-gray), white);
    border-radius: 16px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.product-card:hover .product-card-inner {
    box-shadow: 0 10px 40px -10px rgba(45, 90, 61, 0.15);
}

.product-card-image {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.product-card-image img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.5s var(--custom-expo);
}

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

.product-card-info {
    text-align: center;
}

.product-card-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--noura-green);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.product-card-description {
    color: var(--noura-text-gray);
    font-size: 0.625rem;
    margin-bottom: 0.5rem;
}

.product-card-price {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--noura-light-green);
}

.product-card-border {
    position: absolute;
    inset: 0;
    border: 2px solid var(--noura-green);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card:hover .product-card-border {
    opacity: 1;
}

.products-cta {
    text-align: center;
    margin-top: 1.5rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 50px;
    box-shadow: 0 10px 40px -10px rgba(45, 90, 61, 0.15);
}

.trust-badge svg {
    width: 16px;
    height: 16px;
    color: var(--noura-light-green);
}

.trust-badge span {
    font-size: 0.875rem;
    color: var(--noura-text);
}

/* Footer */
.footer {
    position: relative;
    background: var(--noura-green);
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.footer-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.footer-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--noura-green) 0%, rgba(45, 90, 61, 0.95) 50%, rgba(45, 90, 61, 0.9) 100%);
}

.footer-content {
    position: relative;
    z-index: 10;
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .footer-brand {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .footer-brand {
        grid-column: span 1;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon span {
    color: white;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    letter-spacing: 0.05em;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.footer-column h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s var(--custom-expo);
}

.footer-links a:hover {
    color: white;
}

.footer-links a:hover::before {
    width: 8px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-contact-item:hover {
    color: white;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-icon svg {
    width: 20px;
    height: 20px;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-form input {
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.footer-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-form input:focus {
    border-color: rgba(255, 255, 255, 0.4);
}

.footer-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem;
    background: white;
    color: var(--noura-green);
    border-radius: 12px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.footer-form button:hover {
    background: rgba(255, 255, 255, 0.9);
}

.footer-form button svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--custom-expo);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s var(--custom-expo);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s var(--custom-expo);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s var(--custom-expo);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}