/* Color Palette Variables */
:root {
    --pompon-green: #568238;
    --pompon-yellow: #FCD400;
    --pompon-purple: #6E3485;
    --pompon-pink: #C45288;
    --pompon-navy: #382D84;
    --pompon-light-green: #FFFFFF;
    --text-dark: #1a1a1a;
    --text-medium: #555;
    --text-light: #888;
    --background-light: #fafafa;
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --shadow-heavy: rgba(0, 0, 0, 0.15);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fefefe;
}

h1, h2, h3 {
    font-family: 'Belugia Regular', serif;
    font-weight: normal;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 300;
}

h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
        transition: color 0.3s ease;
    position: relative;
    font-size: 1rem;
}

.nav-link:hover {
    color: var(--pompon-purple);
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 50%;
    background-color: var(--pompon-purple);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 40px 80px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.hero-content {
    flex: 1.2;
    padding-right: 0;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--pompon-purple) 0%, var(--pompon-pink) 50%, var(--pompon-navy) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    }

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    border: 2px solid var(--pompon-purple);
    color: var(--pompon-purple);
    text-decoration: none;
        font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: var(--pompon-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(110, 52, 133, 0.3);
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: 500px;
    max-width: 700px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow-heavy);
}

.placeholder-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(86, 130, 56, 0.1) 0%, rgba(252, 212, 0, 0.1) 50%, rgba(110, 52, 133, 0.1) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--pompon-purple);
    font-style: italic;
    font-weight: 500;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(110, 52, 133, 0.1);
    text-align: center;
    padding: 20px;
    position: relative;
}

.placeholder-image::before {
    content: attr(data-size);
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(110, 52, 133, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    font-style: normal;
}

/* About Section */
.about-section {
    padding: 120px 40px;
    background: linear-gradient(135deg, #fafafa 0%, rgba(252, 212, 0, 0.08) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    margin-bottom: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--pompon-navy);
}

.about-text > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.specialties {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.specialty-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--pompon-purple);
}

.specialty-item p {
    color: #666;
    font-size: 0.95rem;
}

.about-image .placeholder-image {
    height: 400px;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.mission {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.mission h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--pompon-pink);
}

.mission p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* Arrangements Section */
.arrangements-section {
    padding: 100px 20px;
}

.arrangements-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--pompon-green);
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.arrangements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.arrangement-card {
    text-align: center;
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 15px;
}

.arrangement-card:hover {
    transform: translateY(-5px);
}

.arrangement-card .placeholder-image {
    height: 320px;
    margin-bottom: 30px;
}

.arrangement-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px var(--shadow-medium);
    transition: all 0.3s ease;
}

.arrangement-card:hover img {
    box-shadow: 0 12px 35px var(--shadow-heavy);
}

.arrangement-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--pompon-purple);
}

.arrangement-card p {
    color: #666;
    line-height: 1.6;
}

/* Cart Section */
.cart-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(196, 82, 136, 0.1) 0%, #fafafa 100%);
}

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

.cart-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--pompon-pink);
}

.cart-text > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.package-includes, .package-details {
    margin-bottom: 30px;
}

.package-includes h3, .package-details h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--pompon-navy);
}

.package-includes ul, .package-details ul {
    list-style: none;
    padding-left: 0;
}

.package-includes li, .package-details li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #666;
}

.package-includes li:before, .package-details li:before {
    content: '•';
    color: var(--pompon-yellow);
    position: absolute;
    left: 0;
}

.cart-image .placeholder-image {
    height: 450px;
}

.cart-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px var(--shadow-medium);
}

/* Two Images Layout */
.cart-images {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.cart-image-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 25px var(--shadow-light);
    height: calc(50% - 20px);
    min-height: 300px;
}

.cart-image-item img {
    width: 100%;
    height: calc(100% - 40px);
    min-height: 240px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 15px var(--shadow-light);
}

.image-caption {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--pompon-purple);
    font-weight: 500;
}

/* Rental Options Styling */
.rental-options {
    margin-bottom: 40px;
}

.rental-type {
    margin-bottom: 40px;
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px var(--shadow-light);
}

.rental-type.bike-rental {
    background: linear-gradient(135deg, rgba(86, 130, 56, 0.05) 0%, white 100%);
    border-left: 4px solid var(--pompon-green);
}

.rental-type h3 {
    font-size: 1.3rem;
    color: var(--pompon-purple);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rental-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.rental-image {
    width: 120px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px var(--shadow-light);
}

.rental-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rental-type.cart-rental .rental-header h3,
.rental-type.bike-rental .rental-header h3 {
    margin-bottom: 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.package-item {
    background: rgba(56, 45, 132, 0.03);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.package-item.featured {
    border-color: var(--pompon-yellow);
    background: linear-gradient(135deg, rgba(196, 82, 136, 0.08) 0%, rgba(86, 130, 56, 0.05) 100%);
    transform: scale(1.02);
}

.package-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--shadow-light);
}

.package-item h4 {
    font-size: 1rem;
    color: var(--pompon-navy);
    margin-bottom: 8px;
    font-weight: 600;
}

.package-people {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
    margin: 5px 0;
}

.package-price {
    font-size: 1.1rem;
    color: var(--pompon-purple);
    font-weight: 600;
    margin: 0;
}

.package-terms {
    margin-bottom: 30px;
}

.package-terms h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--pompon-navy);
}

.package-terms ul {
    list-style: none;
    padding-left: 0;
}

.package-terms li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: #666;
    font-size: 0.95rem;
}

.package-terms li:before {
    content: '•';
    color: var(--pompon-pink);
    position: absolute;
    left: 0;
}

/* Workshops Section */
.workshops-section {
    padding: 100px 20px;
}

.workshops-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--pompon-navy) 0%, var(--pompon-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.workshop-card {
/* Curved corners for workshop images */
.workshop-card img {
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.workshop-card:first-child {
    border-top-color: var(--pompon-pink);
}

.workshop-card:last-child {
    border-top-color: var(--pompon-green);
}

.workshop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.workshop-card .placeholder-image {
    height: 250px;
    margin-bottom: 30px;
}

.workshop-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--pompon-green);
}

.workshop-card > p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.workshop-details {
    text-align: left;
}

.workshop-details p {
    margin-bottom: 10px;
    color: #666;
    font-size: 0.95rem;
}

.workshop-details strong {
    color: var(--pompon-purple);
}

/* Collections Section */
.collections-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(110, 52, 133, 0.05) 0%, #fafafa 50%, rgba(56, 45, 132, 0.05) 100%);
}

.collections-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--pompon-navy);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.collection-item {
    background: white;
    padding: 30px 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
        font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.collection-item:nth-child(5n+1) {
    border-left-color: var(--pompon-green);
}

.collection-item:nth-child(5n+2) {
    border-left-color: var(--pompon-yellow);
}

.collection-item:nth-child(5n+3) {
    border-left-color: var(--pompon-purple);
}

.collection-item:nth-child(5n+4) {
    border-left-color: var(--pompon-pink);
}

.collection-item:nth-child(5n+5) {
    border-left-color: var(--pompon-navy);
}

.collection-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.collection-item:nth-child(5n+1):hover {
    color: var(--pompon-green);
    background: rgba(86, 130, 56, 0.05);
}

.collection-item:nth-child(5n+2):hover {
    color: var(--pompon-navy);
    background: rgba(252, 212, 0, 0.1);
}

.collection-item:nth-child(5n+3):hover {
    color: var(--pompon-purple);
    background: rgba(110, 52, 133, 0.05);
}

.collection-item:nth-child(5n+4):hover {
    color: var(--pompon-pink);
    background: rgba(196, 82, 136, 0.05);
}

.collection-item:nth-child(5n+5):hover {
    color: var(--pompon-navy);
    background: rgba(56, 45, 132, 0.05);
}

/* Enhanced Contact Section */
.contact-section {
    padding: 120px 40px;
    background: linear-gradient(135deg, rgba(110, 52, 133, 0.03) 0%, #fafafa 50%, rgba(196, 82, 136, 0.03) 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--pompon-purple) 50%, transparent 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* Contact Cards */
.contact-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow-light);
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.contact-card.primary {
    border-top-color: var(--pompon-green);
    grid-column: 1 / -1;
}

.contact-card:nth-child(2) { border-top-color: var(--pompon-yellow); }
.contact-card:nth-child(3) { border-top-color: var(--pompon-purple); }
.contact-card:nth-child(4) { border-top-color: var(--pompon-pink); }

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px var(--shadow-medium);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-card-header h3 {
    margin: 0;
    color: var(--pompon-navy);
    font-size: 1.2rem;
}

.contact-card-content p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Quick Contact Buttons */
.quick-contact-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
}

.quick-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #1ebe57 100%);
    color: white;
}

.quick-btn.phone {
    background: linear-gradient(135deg, var(--pompon-purple) 0%, var(--pompon-pink) 100%);
    color: white;
}

.quick-btn.email {
    background: linear-gradient(135deg, var(--pompon-navy) 0%, var(--pompon-purple) 100%);
    color: white;
}

.quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Directions and Hours */
.directions-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--pompon-green);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.directions-link:hover {
    color: var(--pompon-navy);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.hours-item span:first-child {
    color: var(--text-dark);
    font-weight: 500;
}

.hours-item span:last-child {
    color: var(--pompon-green);
    font-weight: 600;
}

.hours-note {
    margin-top: 10px;
    padding: 10px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 8px;
    text-align: center;
}

.hours-note small {
    color: var(--pompon-green);
    font-weight: 500;
}

/* Social Media Buttons */
.social-handle {
    color: var(--pompon-purple);
    font-weight: 600;
    margin-bottom: 15px !important;
    text-align: center;
}

.social-buttons {
    display: flex;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.social-btn.instagram {
    background: linear-gradient(135deg, #E4405F 0%, #F56040 100%);
    color: white;
}

.social-btn.tiktok {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Map Container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow-light);
}

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

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--pompon-green) 0%, var(--pompon-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.contact-item:nth-child(1) { border-left-color: var(--pompon-green); }
.contact-item:nth-child(2) { border-left-color: var(--pompon-yellow); }
.contact-item:nth-child(3) { border-left-color: var(--pompon-purple); }
.contact-item:nth-child(4) { border-left-color: var(--pompon-pink); }

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.contact-item .icon {
    font-size: 1.5rem;
    margin-top: 2px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(110, 52, 133, 0.1);
    border-radius: 50%;
}

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--pompon-purple);
}

.contact-item p {
    color: #666;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    color: var(--pompon-pink);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--pompon-navy);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    border-top: 4px solid var(--pompon-navy);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 35px;
    color: var(--pompon-navy);
    text-align: center;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 18px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--pompon-purple);
    box-shadow: 0 0 0 3px rgba(110, 52, 133, 0.1);
    background: white;
    transform: translateY(-2px);
}

.submit-button {
    padding: 18px 35px;
    background: linear-gradient(135deg, var(--pompon-pink) 0%, var(--pompon-purple) 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
        cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(196, 82, 136, 0.3);
    letter-spacing: 0.5px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(196, 82, 136, 0.4);
    background: linear-gradient(135deg, var(--pompon-purple) 0%, var(--pompon-pink) 100%);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--pompon-navy) 0%, var(--text-dark) 100%);
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-logo img {
    width: 140px;
    height: auto;
    object-fit: contain;
    margin: 0;
    padding: 0;
}

.footer-logo p {
    color: #ccc;
    font-style: italic;
    margin: 0;
    padding: 0;
    }

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--pompon-yellow);
    }

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 0.9rem;
        transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

/* Enhanced Mobile-First Responsive Design */
/* Mobile Image Optimizations */
@media (max-width: 768px) {
    /* Fix workshop section overflow on mobile */
    .workshops-section {
        padding: 40px 0;
    }
    .workshops-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
        width: 100% !important;
        align-items: center !important;
        overflow-x: hidden !important;
    }
    .workshop-card {
        width: 100% !important;
        max-width: 350px !important;
        margin: 0 auto 25px auto !important;
        box-sizing: border-box !important;
    }
    /* Hide floating WhatsApp button on mobile */
    .whatsapp-btn, .quick-btn.whatsapp {
        display: none !important;
    }
    /* Center pricing section on mobile */
    .pricing-section .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 10px;
    }
    .pricing-section .pricing-grid {
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    /* Mobile images - better display */
    .hero-image img,
    .about-image img,
    .arrangement-card img,
    .cart-image img {
        object-fit: cover;
        object-position: center;
        border-radius: 15px;
    }
    
    /* Hero image mobile - larger and better positioned */
    .hero-image img {
        height: 350px;
        max-width: 100%;
        object-position: center top;
    }
    
    /* Arrangement cards mobile - optimized sizing */
    .arrangement-card img {
        height: 280px;
        width: 100%;
        object-fit: cover;
    }
    
    /* Gallery mobile optimization */
    .gallery-section .gallery-grid {
        gap: 15px !important;
        padding: 0 10px !important;
    }
    
    .gallery-section .gallery-item {
        height: 280px !important;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 12px;
        overflow: hidden;
    }
    
    /* Cart images mobile - better proportions */
    .cart-image-item img {
        height: 180px;
        object-fit: cover;
        border-radius: 10px;
    }
    
    /* Package items mobile - larger touch targets */
    .package-item {
        padding: 18px 15px;
        min-height: 130px;
        border-radius: 12px;
    }
    
    /* Subscription cards mobile */
    .subscription-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    /* Workshop cards mobile */
    .workshop-card {
        margin-bottom: 25px;
        border-radius: 15px;
    }
    
    /* About image mobile */
    .about-image img {
        height: 300px;
    }
    
    /* Cart image mobile */
    .cart-image img {
        height: 300px;
    }
    
    /* Two images mobile */
    .cart-images {
        gap: 20px;
    }
    
    .cart-image-item img {
        height: 150px;
    }
    
    /* Cart content mobile */
    .cart-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .package-item {
        padding: 12px;
    }
    
    .package-item h4 {
        font-size: 0.9rem;
    }
    
    .package-price {
        font-size: 1rem;
    }
    
    .rental-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .rental-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .rental-image {
        width: 100px;
        height: 70px;
        align-self: center;
    }
    /* Navigation */
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Mobile navigation logo adjustments */
    .nav-logo img {
        width: 60px;
        height: auto;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Force centering for mobile sections */
    .pricing-section,
    .gallery-section {
        text-align: center;
        padding: 80px 0 !important;
    }
    
    .pricing-section .container,
    .gallery-section .container {
        padding: 0 10px !important;
        max-width: 100% !important;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .nav-menu a {
        padding: 15px 20px;
        display: block;
        font-size: 1.1rem;
        border-bottom: 1px solid #f0f0f0;
        color: #333;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background-color: rgba(110, 52, 133, 0.05);
        color: var(--pompon-purple);
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    /* Hero Section */
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 50px;
        gap: 40px;
        min-height: 90vh;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    /* Sections */
    .about-section,
    .arrangements-section,
    .cart-section,
    .workshops-section,
    .gallery-section,
    .testimonials-section,
    .pricing-section,
    .collections-section,
    .faq-section,
    .contact-section {
        padding: 80px 20px;
    }
    
    .about-grid,
    .cart-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .specialties {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Gallery - Force single column */
    .gallery-section .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 15px !important;
        justify-items: center !important;
        margin-top: 40px !important;
        display: grid !important;
    }
    
    .gallery-item {
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 350px;
        display: block !important;
    }
    
    .gallery-item.tall,
    .gallery-item.wide {
        grid-column: unset;
        grid-row: unset;
        height: 250px;
        width: 100%;
    }
    
    /* Arrangements */
    .arrangements-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Workshops */
    .workshops-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .testimonial-card .stars {
        font-size: 1.2rem;
    }
    
    .testimonial-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
        padding: 0 15px;
        justify-items: center;
        margin-top: 40px !important;
    }
    
    .price-card {
        margin: 0 auto !important;
        text-align: center;
        width: 100% !important;
        max-width: 350px;
        transform: none !important;
    }
    
    .price-card.featured {
        transform: none;
        order: -1;
    }
    
    /* Collections */
    .collections-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
    }
    
    .collection-item {
        padding: 20px 15px;
        font-size: 0.9rem;
    }
    
    /* FAQ */
    .faq-container {
        margin-top: 40px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quick-contact-buttons {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .social-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    /* Typography adjustments */
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .about-text h2,
    .arrangements-section h2,
    .cart-text h2,
    .workshops-section h2,
    .gallery-section h2,
    .testimonials-section h2,
    .pricing-section h2,
    .collections-section h2,
    .faq-section h2,
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    /* Card adjustments */
    .workshop-card,
    .testimonial-card,
    .price-card {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    /* Gallery improvements - Force single column on small screens */
    .gallery-section .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 0 10px !important;
        justify-items: center !important;
        display: grid !important;
    }
    
    .gallery-item {
        width: 100% !important;
        margin: 0 auto;
        max-width: 320px;
        display: block !important;
    }
    
    /* Arrangements cards */
    .arrangements-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Contact form */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quick-contact-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .quick-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .arrangement-card {
        padding: 15px;
    }
    
    .contact-item {
        padding: 15px;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    /* Footer mobile adjustments */
    .footer-logo {
        align-items: center;
        text-align: center;
    }
    
    .footer-logo img {
        width: 100px;
        height: auto;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Detailed pricing card mobile */
    .detailed-pricing-card {
        grid-column: span 1;
        padding: 25px 20px;
    }
    
    .pricing-breakdown {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .detailed-pricing-header h3 {
        font-size: 1.5rem;
    }
    
    /* Collections grid mobile */
    .collections-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .collection-item {
        padding: 12px 8px;
        font-size: 0.85rem;
    }
    
    /* FAQ mobile improvements */
    .faq-item {
        margin: 0 5px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 30px;
    }
    
    /* Workshop cards mobile */
    .workshops-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .workshop-card {
        padding: 20px 15px;
    }
    
    /* Hero section mobile improvements */
    .hero {
        padding: 100px 15px 60px;
        gap: 30px;
    }
    
    /* Button mobile sizing */
    .cta-button,
    .price-button,
    .submit-button {
        padding: 14px 25px;
        font-size: 0.9rem;
    }
    
    /* Button adjustments */
    .cta-button {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .price-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    /* Gallery specific */
    .gallery-overlay {
        padding: 20px 15px 15px;
    }
    
    /* FAQ specific */
    .faq-question {
        padding: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 15px 15px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Optimized Loading System */
body {
    opacity: 0;
    transition: opacity 0.2s ease; /* Much faster */
}

body.loaded {
    opacity: 1;
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Micro-interactions */
.arrangement-card,
.workshop-card,
.collection-item,
.contact-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Optimized hover effects */
.arrangement-card:hover,
.workshop-card:hover {
    transform: translateY(-5px);
}

.collection-item:hover {
    transform: translateY(-2px);
}

/* Removed heavy pulse animation for better performance */

/* Gallery Section */
.gallery-section {
    padding: 120px 40px;
}

.gallery-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--pompon-purple);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

/* Mobile override for gallery - Force single column */
@media (max-width: 768px) {
    .gallery-section .container .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 15px !important;
        display: grid !important;
    }
    
    .gallery-section .gallery-item {
        width: 100% !important;
        max-width: 100% !important;
        grid-column: 1 !important;
        display: block !important;
        margin: 0 auto !important;
    }
    
    .gallery-section .gallery-item.tall,
    .gallery-section .gallery-item.wide {
        grid-column: 1 !important;
        grid-row: auto !important;
        height: 250px !important;
        width: 100% !important;
        max-width: 350px !important;
    }
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    height: 250px;
}

.gallery-item.tall {
    grid-row: span 2;
    height: 520px;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item .placeholder-image {
    height: 100%;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: white;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-item:hover .placeholder-image {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}


/* Testimonials Section */
.testimonials-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(252, 212, 0, 0.05) 0%, #fafafa 50%, rgba(86, 130, 56, 0.05) 100%);
}

.testimonials-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--pompon-green);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-light);
    text-align: center;
    position: relative;
    border-top: 4px solid transparent;
}

.testimonial-card:nth-child(1) { border-top-color: var(--pompon-yellow); }
.testimonial-card:nth-child(2) { border-top-color: var(--pompon-green); }
.testimonial-card:nth-child(3) { border-top-color: var(--pompon-pink); }

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.testimonial-card .stars {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--pompon-navy);
    margin-bottom: 5px;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* WhatsApp and Social Links Styling */
.whatsapp-btn {
    display: inline-block;
    background: linear-gradient(135deg, #25D366 0%, #1ebe57 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #1ebe57 0%, #25D366 100%);
}

.social-link.instagram {
    background: linear-gradient(135deg, #E4405F 0%, #F56040 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    margin-right: 10px;
}

.social-link.tiktok {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-link.instagram:hover,
.social-link.tiktok:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.map-container {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow-light);
}

/* Pricing Section */
.pricing-section {
    padding: 120px 40px;
}

.pricing-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--pompon-navy);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.price-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-light);
    position: relative;
    transition: all 0.3s ease;
    border-top: 4px solid var(--pompon-green);
}

.price-card.featured {
    border-top-color: var(--pompon-yellow);
    transform: scale(1.05);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--pompon-yellow) 0%, var(--pompon-green) 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-header h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--pompon-purple);
}

.price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--pompon-navy);
    margin-bottom: 30px;
}

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    text-align: left;
}

.price-features li {
    padding: 8px 0;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.price-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--pompon-purple) 0%, var(--pompon-pink) 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
        transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(110, 52, 133, 0.3);
}

.price-button.featured {
    background: linear-gradient(135deg, var(--pompon-yellow) 0%, var(--pompon-green) 100%);
    box-shadow: 0 8px 20px rgba(86, 130, 56, 0.3);
}

.price-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(110, 52, 133, 0.4);
}

.price-button.featured:hover {
    box-shadow: 0 12px 30px rgba(86, 130, 56, 0.4);
}

.package-guests {
    font-size: 0.9rem;
    color: var(--pompon-purple);
    font-weight: 500;
    margin-bottom: 20px;
}

.pricing-terms {
    margin-top: 50px;
    background: rgba(56, 45, 132, 0.05);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--pompon-purple);
}

.pricing-note {
    color: var(--pompon-navy);
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.terms-list li {
    padding: 5px 0;
    color: var(--text-medium);
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

.terms-list li:before {
    content: "•";
    color: var(--pompon-purple);
    font-weight: 600;
    position: absolute;
    left: 0;
}

/* Subscription Section */
.subscription-section {
    padding: 120px 40px;
    background: linear-gradient(135deg, rgba(196, 82, 136, 0.03) 0%, #fafafa 100%);
}

.subscription-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--pompon-navy);
}

.subscription-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.subscription-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-light);
    position: relative;
    transition: all 0.3s ease;
    border-top: 4px solid var(--pompon-pink);
}

.subscription-card.featured {
    border-top-color: var(--pompon-green);
    transform: scale(1.02);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.subscription-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.subscription-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.subscription-header h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--pompon-purple);
}

.subscription-price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--pompon-navy);
    margin-bottom: 8px;
}

.subscription-duration {
    font-size: 0.9rem;
    color: var(--pompon-purple);
    font-weight: 500;
    margin-bottom: 25px;
}

.subscription-features {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
    text-align: left;
}

.subscription-features li {
    padding: 6px 0;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.subscription-button {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--pompon-pink) 0%, var(--pompon-purple) 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(196, 82, 136, 0.3);
}

.subscription-button.featured {
    background: linear-gradient(135deg, var(--pompon-green) 0%, var(--pompon-yellow) 100%);
    box-shadow: 0 8px 20px rgba(86, 130, 56, 0.3);
}

.subscription-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(196, 82, 136, 0.4);
}

.subscription-button.featured:hover {
    box-shadow: 0 12px 30px rgba(86, 130, 56, 0.4);
}

.subscription-terms {
    margin-top: 60px;
    background: rgba(196, 82, 136, 0.05);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--pompon-pink);
}

.subscription-note {
    color: var(--pompon-navy);
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Detailed Pricing Card */
.detailed-pricing-card {
    grid-column: span 2;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px var(--shadow-light);
    border-top: 4px solid var(--pompon-navy);
}

.detailed-pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.detailed-pricing-header h3 {
    font-size: 1.8rem;
    color: var(--pompon-purple);
    margin-bottom: 10px;
}

.detailed-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.pricing-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.size-group {
    background: rgba(56, 45, 132, 0.02);
    border-radius: 12px;
    padding: 20px;
    border-left: 3px solid var(--pompon-green);
}

.size-group.special {
    border-left-color: var(--pompon-yellow);
    background: rgba(196, 82, 136, 0.02);
}

.size-group h4 {
    font-size: 1.1rem;
    color: var(--pompon-navy);
    margin-bottom: 15px;
    font-weight: 600;
}

.price-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.option-type {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.option-price {
    color: var(--pompon-purple);
    font-weight: 600;
    font-size: 0.95rem;
}

.arrangement-notes {
    background: rgba(86, 130, 56, 0.05);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--pompon-green);
    margin-bottom: 30px;
}

.arrangement-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.arrangement-notes li {
    padding: 5px 0;
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

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

/* Mobile WhatsApp Button */
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* Gallery Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 90%;
    margin: 5% auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 40px;
    color: white;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--pompon-yellow);
}

#lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
}

.lightbox-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    min-width: 60px;
    min-height: 60px;
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-nav button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Enhanced Touch Interactions */
.gallery-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item:active {
    transform: translateY(-2px) scale(0.98);
}

/* Touch-friendly buttons */
button, .price-button, .subscription-button, .nav-link, .quick-btn, .social-btn {
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.price-button, .subscription-button {
    padding: 15px 25px;
    font-size: 1rem;
}

.package-item {
    min-height: 120px;
    padding: 20px 15px;
}

/* Mobile Lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        width: 95%;
        height: 95%;
        margin: 2.5% auto;
    }
    
    .lightbox-close {
        top: -30px;
        right: 10px;
        font-size: 30px;
    }
    
    .lightbox-nav button {
        font-size: 18px;
        padding: 10px 15px;
        min-width: 50px;
        min-height: 50px;
    }
    
    .lightbox-prev {
        left: -60px;
    }
    
    .lightbox-next {
        right: -60px;
    }
    
    .lightbox-caption {
        bottom: -40px;
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 120px 40px;
    background: linear-gradient(135deg, rgba(56, 45, 132, 0.03) 0%, #fafafa 100%);
}

.faq-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--pompon-purple);
}

.faq-container {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 10px 25px var(--shadow-medium);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(110, 52, 133, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--pompon-navy);
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--pompon-purple);
    font-weight: 300;
    transition: transform 0.3s ease;
    width: 30px;
    text-align: center;
}

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

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-medium);
    line-height: 1.6;
}