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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #f8f9fb;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    padding: 4rem 1rem;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

/* Main Content */
.main-content {
    padding: 3rem 0;
}

/* Category Section */
.category-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 4rem;
    opacity: 0;
    animation: slideUp 0.6s ease-out forwards;
}

.category-section:nth-child(even) {
    animation-delay: 0.1s;
}

.category-section:nth-child(odd) {
    animation-delay: 0.2s;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.category-icon {
    width: 48px;
    height: 48px;
    background: #dbeafe;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    transition: transform 0.3s ease;
}

.category-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.category-header h2 {
    font-size: 1.875rem;
    font-weight: 600;
    color: #1f2937;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    background: #eff6ff;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
}

.info-item svg {
    color: #2563eb;
    flex-shrink: 0;
}

/* Alert Boxes */
.warning-box {
    background: #fef3c7;
    border-left: 4px solid #fbbf24;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: #78350f;
}

.alert-box {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.alert-red {
    background: #fee2e2;
    border-left: 4px solid #ef4444;
    color: #991b1b;
}

.info-box-blue {
    background: #eff6ff;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.info-box-blue p {
    color: #1e40af;
    margin: 0;
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin-bottom: 1rem;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table thead tr {
    background: #f3f4f6;
}

.price-table th {
    padding: 0.75rem 1.5rem;
    text-align: left;
    font-weight: 600;
    color: #1f2937;
    border-bottom: 2px solid #d1d5db;
}

.price-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.2s ease;
}

.price-table tbody tr:nth-child(even) {
    background: #f9fafb;
}

.price-table tbody tr:hover {
    background: #eff6ff;
}

.price-table td {
    padding: 0.75rem 1.5rem;
    color: #374151;
}

.price-table td.price {
    font-weight: 600;
    color: #2563eb;
}

/* Mobile Cards */
.mobile-cards {
    display: none;
}

.price-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.price-card .price {
    font-weight: 600;
    color: #2563eb;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
}

/* Terms Section */
.terms-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 4rem;
}

.terms-section h2 {
    font-size: 1.875rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.term-card {
    padding: 1.5rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.term-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.term-icon {
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.term-icon.green {
    color: #16a34a;
}

.term-card h3 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.term-card p, .term-card ul {
    color: #374151;
}

.term-card ul {
    list-style: none;
}

/* Packaging Section */
.packaging-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 4rem;
}

.packaging-section h2 {
    font-size: 1.875rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2rem;
}

.packaging-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.package-card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(to bottom right, #f9fafb, white);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.package-image {
    height: 192px;
    background: linear-gradient(to bottom right, #dbeafe, #bfdbfe);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #93c5fd;
}

.package-content {
    padding: 1rem;
}

.package-content h3 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    min-height: 3rem;
}

.package-content ul {
    list-style: none;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.package-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2563eb;
}

/* Timeline Section */
.timeline-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 4rem;
}

.timeline-section h2 {
    font-size: 1.875rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2rem;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #bfdbfe;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.timeline-number {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.125rem;
    z-index: 1;
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-number {
    transform: scale(1.1) rotate(360deg);
}

.timeline-content {
    padding-top: 0.5rem;
    flex-grow: 1;
}

.timeline-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.timeline-content p {
    color: #6b7280;
}

@media (max-width: 768px) {
    .timeline::before {
        display: none;
    }
}

/* Notes Section */
.notes-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 4rem;
}

.notes-section h2 {
    font-size: 1.875rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.notes-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.note-box {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 8px;
}

.note-box svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.note-amber {
    background: #fef3c7;
    border-left: 4px solid #fbbf24;
}

.note-amber svg {
    color: #d97706;
}

.note-amber h3 {
    color: #78350f;
}

.note-amber p {
    color: #78350f;
}

.note-red {
    background: #fee2e2;
    border-left: 4px solid #ef4444;
}

.note-red svg {
    color: #dc2626;
}

.note-red h3 {
    color: #991b1b;
}

.note-red p {
    color: #991b1b;
}

.note-box h3 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.note-box p {
    margin: 0;
}

/* Gallery Section */
.gallery-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 4rem;
    overflow: hidden;
}

.gallery-header {
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.gallery-header p {
    font-size: 1.125rem;
    color: #6b7280;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
    grid-auto-flow: dense;
}

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

.gallery-item.medium {
    height: 300px;
}

.gallery-item.tall {
    height: 350px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .gallery-item.tall {
        grid-row: span 2;
    }
}

@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item,
    .gallery-item.medium,
    .gallery-item.tall {
        height: 192px;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5), transparent);
    padding: 1rem;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
}

.gallery-overlay p {
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    margin-bottom: 4rem;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}

.cta-button:active {
    transform: scale(0.95);
}

.cta-primary {
    background: white;
    color: #2563eb;
}

.cta-whatsapp {
    background: #16a34a;
    color: white;
}

.cta-telegram {
    background: #64b5f6;
    color: white;
}

@media (max-width: 640px) {
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
    }
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 2rem 1rem;
    margin-top: 4rem;
    text-align: center;
}

.footer p {
    color: #9ca3af;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in-delay {
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.slide-up {
    animation: slideUp 0.6s ease-out forwards;
}

/* Scroll Animations */
.animated {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animated.in-view {
    opacity: 1;
    transform: translateY(0);
}