/* Lethabolaka Creative Projects - Stylesheet */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Logo-inspired color palette */
    --primary-orange: #FF6B35;
    --primary-coral: #FF8C61;
    --primary-teal: #2A9D8F;
    --primary-cyan: #3BB4A6;

    /* Supporting colors */
    --secondary-color: #f5f5f0;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --nude: #f9f4ef;
    --pastel-pink: #f4e4e4;
    --light-gray: #f8f8f8;
    --accent-gradient: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-coral) 50%, var(--primary-teal) 100%);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--primary-teal) 100%);
    z-index: 9999;
    transition: width 0.1s ease-out;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

/* Floating decorative shapes */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: float 20s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -50px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

/* Smooth Image Loading */
img {
    opacity: 0;
    animation: fadeIn 0.8s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

img[loading="lazy"] {
    animation: fadeInScale 0.6s ease-out forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Header & Navigation */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    max-width: 110px;
    height: auto;
}

.nav-links {
    display: none;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    padding: 0;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, var(--white) 0%, #FFF5F0 100%);
    padding: 2rem;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    z-index: 1001;
    opacity: 0;
}

.mobile-nav.active {
    right: 0;
    opacity: 1;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s ease;
}

.mobile-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--primary-teal) 100%);
}

.mobile-nav-list {
    list-style: none;
    margin-top: 3rem;
}

.mobile-nav-list li {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav.active .mobile-nav-list li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav.active .mobile-nav-list li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active .mobile-nav-list li:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.active .mobile-nav-list li:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.active .mobile-nav-list li:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.active .mobile-nav-list li:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav.active .mobile-nav-list li:nth-child(6) { transition-delay: 0.35s; }
.mobile-nav.active .mobile-nav-list li:nth-child(7) { transition-delay: 0.4s; }

.mobile-nav-list a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.mobile-nav-list a:hover {
    color: var(--primary-orange);
    padding-left: 10px;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.close-btn:hover {
    transform: rotate(90deg);
    color: var(--primary-orange);
}

/* Mobile Menu Backdrop */
.mobile-nav-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-backdrop.active {
    display: block;
    opacity: 1;
}

/* Hero Section */
.hero {
    margin-top: 50px;
    background: linear-gradient(135deg, #FFE5DB 0%, #B8F2E6 50%, #FFA69E 100%);
    padding: 4rem 5%;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    position: relative;
    overflow: hidden;
    animation: gradientShift 15s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out both;
}

.hero-content h1 {
    animation-delay: 0.2s;
}

.hero-content .tagline {
    animation-delay: 0.4s;
}

.hero-content p {
    animation-delay: 0.6s;
}

.hero-content .cta-buttons {
    animation-delay: 0.8s;
}

.hero-poster {
    max-width: 90%;
    width: 400px;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-poster img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.hero-poster img:hover {
    transform: scale(1.02);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(42, 157, 143, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Floating particles in hero */
.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image:
        radial-gradient(circle, rgba(255, 107, 53, 0.15) 2px, transparent 2px),
        radial-gradient(circle, rgba(42, 157, 143, 0.15) 2px, transparent 2px),
        radial-gradient(circle, rgba(255, 140, 97, 0.1) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 80px 80px;
    background-position: 0 0, 40px 60px, 130px 270px;
    animation: particleFloat 30s linear infinite;
    pointer-events: none;
    opacity: 0.4;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100px);
    }
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 700;
}

.tagline {
    font-size: 1.2rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.hero p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
}

.btn {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-align: center;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-coral) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
    }
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--primary-teal);
    box-shadow: 0 4px 15px rgba(42, 157, 143, 0.1);
}

.btn-secondary::before {
    background: var(--primary-teal);
}

.btn-secondary:hover {
    color: var(--white);
    border-color: var(--primary-teal);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(42, 157, 143, 0.3);
}

/* Featured Showcase Section */
.featured-showcase {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #FFF9F5 0%, #E8F8F5 100%);
}

.showcase-header {
    text-align: center;
    margin-bottom: 3rem;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.showcase-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.4s ease;
}

.showcase-item.featured-large {
    grid-column: 1;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 70%, transparent 100%);
    padding: 2rem;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.showcase-overlay h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.showcase-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

/* Tablet responsive */
@media (min-width: 768px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-item.featured-large {
        grid-column: 1 / -1;
        min-height: 400px;
    }
}

/* Desktop responsive */
@media (min-width: 1024px) {
    .showcase-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 300px);
    }

    .showcase-item.featured-large {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }
}

/* Services Section */
.services {
    padding: 4rem 5%;
    background: linear-gradient(to bottom, #FAFAFA 0%, #FFF5F0 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    width: 100%;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-teal));
    border-radius: 2px;
    animation: expandWidth 0.8s ease-out;
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid rgba(255, 107, 53, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
    border-color: var(--primary-orange);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-coral) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
    display: inline-block;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% {
        transform: scale(1.2) translateY(0);
    }
    50% {
        transform: scale(1.3) translateY(-10px);
    }
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* USP Section */
.usp {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #FFF5F0 0%, #E8F8F5 100%);
}

.usp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.usp-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-teal);
    transition: all 0.3s ease;
}

.usp-item:hover {
    border-left-width: 8px;
    transform: translateX(5px);
}

.usp-icon {
    font-size: 2rem;
    color: var(--primary-teal);
    flex-shrink: 0;
}

.usp-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.usp-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Events Section */
.events {
    padding: 4rem 5%;
    background: linear-gradient(to bottom, #FFFFFF 0%, #FFE5DB 100%);
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.event-card {
    background: linear-gradient(135deg, #FFF5F0 0%, #E8F8F5 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.event-card:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
    transform: translateY(-3px);
}

.event-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.event-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

/* Gallery Section */
.gallery {
    padding: 4rem 5%;
    background: linear-gradient(to bottom, #FFFFFF 0%, #F5F5F5 100%);
}

.gallery-toggle-container {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-toggle-btn {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-coral) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.gallery-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.gallery-toggle-btn i {
    transition: transform 0.3s ease;
}

.gallery-toggle-btn.active i {
    transform: rotate(180deg);
}

.gallery-grid {
    display: none;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 0.5s ease-out;
}

.gallery-grid.visible {
    display: grid;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 4/3;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    border: 3px solid transparent;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-teal));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    display: none;
}

/* Pricing Section */
.pricing {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #FFF5F0 0%, #E8F8F5 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.pricing-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF9F5 100%);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 107, 53, 0.1);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.pricing-card:hover::before {
    opacity: 1;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.25);
    border-color: var(--primary-orange);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #FFF9F5 0%, #FFE5DB 100%);
    border: 3px solid var(--primary-orange);
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-15px);
    box-shadow: 0 30px 70px rgba(255, 107, 53, 0.3);
}

.pricing-card .badge {
    position: absolute;
    top: 15px;
    right: -45px;
    background: var(--primary-orange);
    color: var(--white);
    padding: 0.7rem 3.5rem;
    transform: rotate(45deg);
    transform-origin: center;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.5);
    z-index: 10;
    width: 180px;
    text-align: center;
    line-height: 1.2;
}

.pricing-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.price .from {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-orange);
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Cormorant Garamond', serif;
}

.price .period {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-features ul {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
}

.pricing-features li i {
    color: var(--primary-teal);
    font-size: 1.1rem;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

.pricing-note {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.pricing-note p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.pricing-note i {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.pricing-cta {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.pricing-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.pricing-cta-note {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* About Section */
.about {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #B8F2E6 0%, #FFD6D6 100%);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.value-item:hover {
    border-left-width: 8px;
}

.value-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.value-item h4 i {
    color: var(--primary-orange);
}

.value-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 4rem 5%;
    background: linear-gradient(to bottom, #FFF5F0 0%, #FFE5DB 100%);
    text-align: center;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
    text-align: left;
}

/* Contact Form */
.contact-form-wrapper h3,
.contact-methods-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #999;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.required {
    color: var(--primary-orange);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0 0 0.8rem 0;
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom: 2px solid var(--text-dark);
    padding-bottom: 0.7rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-status.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact Methods */
.contact-methods-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-btn:nth-child(1) .contact-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
}

.contact-btn:nth-child(2) .contact-icon {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-coral) 100%);
    color: var(--white);
}

.contact-btn:nth-child(3) .contact-icon {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-cyan) 100%);
    color: var(--white);
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-text strong {
    font-size: 1.05rem;
    color: var(--text-dark);
}

.contact-text small {
    font-size: 0.9rem;
    color: var(--text-light);
}

.business-hours {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.business-hours h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.business-hours h4 i {
    color: var(--primary-orange);
}

.business-hours p {
    margin: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: var(--white);
    padding: 3rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), var(--primary-teal), transparent);
    animation: slideIn 3s ease-in-out infinite;
}

@keyframes slideIn {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    max-width: 120px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-teal) 100%);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.social-links a i {
    text-decoration: none;
}

.footer-text {
    font-size: 0.9rem;
    color: #999;
    margin-top: 2rem;
}

.footer-text a {
    font-size: 0.9rem;
    color: #999;
    margin-top: 2rem;
    Text-decoration: none;
}

.footer-text a:hover{
    font-size: 0.9rem;
    color: #999;
    margin-top: 2rem;
    Text-decoration: underline;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hero {
        flex-direction: row;
        text-align: left;
        gap: 4rem;
    }

    .hero-content {
        text-align: left;
        flex: 1;
    }

    .hero-poster {
        width: 350px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid.visible {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: flex-start;
        max-width: 100%;
    }

    .contact-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .contact-methods {
        gap: 1.5rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .tagline {
        font-size: 1.5rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }

    .nav-links {
        display: flex;
    }

    .hero-poster {
        width: 450px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .events-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-grid.visible {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-card.featured {
        transform: scale(1.05);
    }

    .hero h1 {
        font-size: 4rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .hero {
        padding: 6rem 5%;
    }

    .services, .usp, .events, .gallery, .about, .contact {
        padding: 6rem 5%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-orange);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 8px 0;
    font-weight: 500;
}

.skip-link:focus {
    top: 0;
}

/* Utility Classes for Inline Styles */
.about-intro {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.values-title {
    text-align: center;
    font-size: 2rem;
    margin: 3rem 0 2rem;
    color: var(--text-dark);
}

.contact-intro {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.footer-tagline {
    margin: 1rem 0;
}

.x-logo {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 24px;
    border: none;
    animation: slideInRight 0.5s ease-out;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.floating-btn:active {
    transform: scale(0.95);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.back-to-top-btn {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-coral) 100%);
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top-btn:hover {
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--primary-orange) 100%);
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile responsive floating buttons */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: var(--primary-orange);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: var(--primary-orange);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Lightbox Mobile Responsive */
@media (max-width: 768px) {
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-counter {
        bottom: 15px;
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .lightbox-image {
        max-width: 95%;
        max-height: 85vh;
    }
}

/* Gift Packages Section */
.gift-section {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #FFF5F0 0%, #E8F8F5 100%);
}

.gift-section .section-title {
    color: var(--primary-orange);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.gift-section .section-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.gift-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem auto 2rem;
    background: transparent;
    padding: 0;
}

.gift-section-image {
    display: block;
    color: #666;
    max-width: 340px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.gift-section .gift-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2.5rem 0 3rem 0;
}

.gift-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF9F5 100%);
    border-radius: 25px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 107, 53, 0.1);
}

.gift-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.gift-card:hover::before {
    opacity: 1;
    animation: rotate 4s linear infinite;
}

.gift-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.25);
    border-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.gift-card h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-orange);
    font-size: 1.4rem;
}

.gift-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gift-card .price {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gift-card ul {
    margin-top: 0.75rem;
    list-style: disc;
    padding-left: 1.25rem;
    color: var(--text-light);
}

.gift-card .wa-order-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: #25D366;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #25D366;
}

.gift-card .wa-order-btn:hover {
    background: #1ea952;
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.section-note {
    margin-top: 2rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--primary-orange);
}

.order-wrap { max-width: 920px; margin: 0 auto; margin-top: 2rem; }
.order-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: start; }
.order-form .form-row { display: flex; flex-direction: column; }
.order-form label { font-size: 0.9rem; margin-bottom: 0.35rem; color: var(--text-dark); }
.order-form input, .order-form select, .order-form textarea {
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    border: 1px solid #eee;
    background: #fff;
    font-size: 0.95rem;
}
.order-form textarea { grid-column: 1 / -1; }
.order-form .form-actions { grid-column: 1 / -1; display: flex; gap: 1rem; align-items: center; }
.form-status { padding: 0.75rem 1rem; border-radius: 8px; margin-bottom: 0.5rem; display: none; }
.form-status.success { background: #eafaf3; color: #0b6b47; display: block; }
.form-status.error { background: #fff0f0; color: #b22; display: block; }

@media (max-width: 900px) {
    .gift-section {
        padding: 3rem 5%;
    }
    
    .gift-section .section-title {
        font-size: 2rem;
    }
    
    .gift-section .gift-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .gift-card {
        padding: 1.5rem 1.25rem;
    }
    
    .order-form { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
    .gift-section {
        padding: 2.5rem 5%;
    }
    
    .gift-section .section-title {
        font-size: 1.6rem;
    }
    
    .gift-section-image {
        max-width: 260px;
        margin: 0.75rem auto 1.5rem;
    }
    
    .gift-section .gift-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin: 1.75rem 0 2rem 0;
    }
    
    .gift-card {
        padding: 1.25rem 1rem;
    }
    
    .gift-card h3 {
        font-size: 1.2rem;
    }
}

/* WhatsApp order buttons inside gift section */
.wa-order-btn {
    display: inline-block;
    margin: 0.5rem 0.25rem 0 0;
    padding: 0.5rem 0.9rem;
    background: #25D366;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}
.wa-order-btn:hover {
    filter: brightness(0.95);
}

/* Picnic Packages Section */
.picnic-section {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #FFF5F0 0%, #E8F8F5 100%);
}

.picnic-section .section-title {
    color: var(--primary-teal);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.picnic-section .section-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.picnic-section .pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.picnic-section .pricing-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF9F5 100%);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(42, 157, 143, 0.1);
}

.picnic-section .pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.picnic-section .pricing-card:hover::before {
    opacity: 1;
    animation: rotate 4s linear infinite;
}

.picnic-section .pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(42, 157, 143, 0.25);
    border-color: var(--primary-teal);
}

.picnic-section .pricing-card.featured {
    background: linear-gradient(135deg, #FFF9F5 0%, #E8F8F5 100%);
    border: 3px solid var(--primary-teal);
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(42, 157, 143, 0.2);
}

.picnic-section .pricing-card.featured:hover {
    transform: scale(1.08) translateY(-15px);
    box-shadow: 0 30px 70px rgba(42, 157, 143, 0.3);
}

.picnic-section .pricing-card h3 {
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.picnic-section .pricing-features ul li {
    color: #666;
    margin-bottom: 0.75rem;
}

.picnic-section .btn {
    margin-top: 1.5rem;
}

.picnic-section .pricing-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(42, 157, 143, 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--primary-teal);
    text-align: center;
    color: #666;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .picnic-section {
        padding: 3rem 5%;
    }
    
    .picnic-section .section-title {
        font-size: 2rem;
    }
    
    .picnic-section .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .picnic-section .pricing-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 520px) {
    .picnic-section {
        padding: 2.5rem 5%;
    }
    
    .picnic-section .section-title {
        font-size: 1.6rem;
    }
    
    .picnic-section .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .picnic-section .pricing-card {
        padding: 1.5rem 1.25rem;
    }
}