/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: currentColor;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --primary-red: #d7141a;
    --primary-green: #12ad2b;
    --primary-blue: #6ab2e7;
    --neutral-beige: #f5f3f0;
    --neutral-cream: #faf8f5;
    --neutral-white: #ffffff;
    --neutral-gray: #666666;
    --neutral-dark: #333333;
    --neutral-light: #f9f9f9;
    
    /* Typography */
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --section-padding-mobile: 60px 0;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    
    /* Border Radius */
    --border-radius: 8px;
    --border-radius-large: 16px;
}



/* ===== UTILITY CLASSES ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--neutral-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--neutral-gray);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-title {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    color: var(--neutral-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--neutral-gray);
    text-align: center;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: var(--font-weight-medium);
    text-align: center;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--neutral-white);
    border-color: var(--primary-green);
}

.btn-primary:hover {
    background-color: #0e8a22;
    border-color: #0e8a22;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-secondary:hover {
    background-color: var(--primary-green);
    color: var(--neutral-white);
    transform: translateY(-2px);
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--neutral-white);
    box-shadow: var(--shadow-light);
    z-index: 1000;
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo .logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: var(--font-weight-medium);
    color: var(--neutral-dark);
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-green);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--neutral-dark);
    margin: 3px 0;
    transition: var(--transition-smooth);
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ===== MAIN CONTENT ===== */
.main {
    margin-top: 80px; /* Header height offset */
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    overflow: hidden;
}

.hero-content {
    text-align: center;
    color: var(--neutral-white);
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero .btn {
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

/* ===== TREASURES SECTION ===== */
.treasures {
    padding: var(--section-padding);
    background-color: var(--neutral-light);
}

.treasures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.treasure-card {
    background-color: var(--neutral-white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
}

.treasure-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.treasure-image {
    height: 250px;
    overflow: hidden;
}

.treasure-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.treasure-card:hover .treasure-image img {
    transform: scale(1.05);
}

.treasure-content {
    padding: 2rem;
}

.treasure-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--neutral-dark);
    margin-bottom: 1rem;
}

.treasure-description {
    color: var(--neutral-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ===== RITUAL BANNER ===== */
.ritual-banner {
    padding: var(--section-padding);
    background: linear-gradient(45deg, var(--primary-green), var(--primary-blue));
    color: var(--neutral-white);
    text-align: center;
}

.ritual-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
}

.ritual-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ===== CAROUSEL SECTION ===== */
.carousel-section {
    padding: var(--section-padding);
    background-color: var(--neutral-cream);
}

.carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.carousel-container {
    position: relative;
    height: 400px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--neutral-white);
    padding: 2rem;
    text-align: center;
}

.carousel-caption h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.5rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--neutral-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    transition: var(--transition-smooth);
    z-index: 10;
}

.carousel-btn:hover {
    background-color: var(--neutral-white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-smooth);
}

.indicator.active {
    background-color: var(--neutral-white);
    transform: scale(1.2);
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--neutral-beige) 0%, var(--neutral-cream) 100%);
    text-align: center;
}

/* ===== PRODUCTS PAGE ===== */
.filters-section {
    padding: 2rem 0;
    background-color: var(--neutral-white);
    border-bottom: 1px solid #eee;
}

.filters {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.filters-title {
    font-weight: var(--font-weight-medium);
    color: var(--neutral-dark);
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-label {
    font-weight: var(--font-weight-medium);
    color: var(--neutral-gray);
}

.filter-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    background-color: var(--neutral-white);
    cursor: pointer;
}

.products-section {
    padding: var(--section-padding);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--neutral-white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    color: var(--neutral-dark);
    margin-bottom: 0.5rem;
}

.product-description {
    color: var(--neutral-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-price {
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.product-category {
    font-size: 0.8rem;
    color: var(--neutral-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: var(--neutral-gray);
    font-size: 1.1rem;
}

/* ===== ABOUT PAGE ===== */
.story-section,
.vision-section {
    padding: var(--section-padding);
}

.story-content,
.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text,
.vision-text {
    font-size: 1.1rem;
    line-height: 1.7;
}

.story-text p,
.vision-text p {
    margin-bottom: 1.5rem;
    color: var(--neutral-gray);
}

.vision-quote {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--primary-green);
    border-left: 4px solid var(--primary-green);
    padding-left: 1rem;
    margin: 2rem 0;
}

.story-image,
.vision-image {
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.values-section {
    padding: var(--section-padding);
    background-color: var(--neutral-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background-color: var(--neutral-white);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-title {
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
    color: var(--neutral-dark);
    margin-bottom: 1rem;
}

.value-description {
    color: var(--neutral-gray);
    line-height: 1.6;
}

.timeline-section {
    padding: var(--section-padding);
    background-color: var(--neutral-cream);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-green);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-date {
    flex: 0 0 100px;
    background-color: var(--primary-green);
    color: var(--neutral-white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: var(--font-weight-bold);
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background-color: var(--neutral-white);
    padding: 1.5rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
    margin: 0 2rem;
}

.timeline-title {
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    color: var(--neutral-dark);
    margin-bottom: 0.5rem;
}

.timeline-description {
    color: var(--neutral-gray);
    line-height: 1.6;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: var(--section-padding);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form-container {
    background-color: var(--neutral-white);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: var(--font-weight-medium);
    color: var(--neutral-dark);
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 2px rgba(18, 173, 43, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
}

.error-message {
    color: var(--primary-red);
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: none;
}

.error-message.show {
    display: block;
}

.form-success {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: var(--border-radius);
    border: 1px solid #c3e6cb;
}

.contact-info {
    background-color: var(--neutral-light);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    height: fit-content;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-weight: var(--font-weight-bold);
    color: var(--neutral-dark);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--neutral-gray);
    line-height: 1.5;
}

.social-contact {
    margin-top: 2rem;
}

.social-contact h3 {
    font-weight: var(--font-weight-bold);
    color: var(--neutral-dark);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: var(--neutral-white);
    color: var(--neutral-dark);
    transition: transform 0.3s ease, background-color 0.3s ease;
    font-size: 1.5rem;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Specific platform hover colors */
.social-links a.facebook:hover {
    background-color: #3b5998;
    color: var(--neutral-white);
}

.social-links a.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: var(--neutral-white);
}

.social-links a.tiktok:hover {
    background-color: #000000;
    color: var(--neutral-white);
}

.social-links a.youtube:hover {
    background-color: #FF0000;
    color: var(--neutral-white);
}

.social-links a.whatsapp:hover {
    background-color: #25D366;
    color: var(--neutral-white);
}

.map-section {
    padding: 3rem 0;
    background-color: var(--neutral-light);
}

.map-container {
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.faq-section {
    padding: var(--section-padding);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--neutral-white);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    font-weight: var(--font-weight-medium);
    color: var(--neutral-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background-color: var(--neutral-light);
}

.faq-icon {
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-green);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--neutral-gray);
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--neutral-dark);
    color: var(--neutral-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    color: var(--neutral-white);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #ccc;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary-green);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #555;
    border-radius: var(--border-radius);
    background-color: #444;
    color: var(--neutral-white);
}

.newsletter-input::placeholder {
    color: #ccc;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}


/* Social Links Card */
.card {
  display: flex;
  gap: 20px;
  height: 50px;
  width: 320px;
}

.card svg {
  position: absolute;
  display: flex;
  width: 60%;
  height: 100%;
  font-size: 24px;
  box-sizing: border-box;
  font-weight: 700;
  opacity: 1;
  transition: opacity 0.25s;
  z-index: 2;
  cursor: pointer;
  transform: scale(1);
}

.card .social-link1,
.card .social-link2,
.card .social-link3,
.card .social-link4,
.card .social-link5 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25%;
  color: whitesmoke;
  font-size: 24px;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.25s;
  border-radius: 50px;
}
/* Unified hover styles with enhanced accessibility */
.card a:hover {
  text-decoration: none;
  outline: none;
  fill: currentColor; /* Maintain SVG compatibility during transitions */
}

.card .social-link1:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: var(--neutral-white);
  fill: #ffffff;
  animation: bounce_613 0.4s linear;
}

.card .social-link2:hover {
  background: linear-gradient(-220deg, #00f2ea 0%, #ff0050 100%);
  color: var(--neutral-white);
  fill: #ffffff;
  animation: bounce_613 0.4s linear;
}

.card .social-link3:hover {
  background: linear-gradient(180deg, #1677f1 0%, #2b189c 100%);
  color: var(--neutral-white);
  fill: #ffffff;
  animation: bounce_613 0.4s linear;
}

.card .social-link4:hover {
  background: linear-gradient(180deg, #00fb73 0%, #00b25b 100%);
  color: var(--neutral-white);
  fill: #ffffff;
  animation: bounce_613 0.4s linear;
}

.card .social-link5:hover {
  background: linear-gradient(180deg, #ff0000 0%, #9b0000 100%);
  color: var(--neutral-white);
  fill: #ffffff;
  animation: bounce_613 0.4s linear;
}

.card .social-icon {
    width: 32px;
    height: 32px;
}

@keyframes bounce_613 {
  40% {
    transform: scale(1.4);
  }
  60% {
    transform: scale(0.8);
  }
  80% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--neutral-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-light);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .treasures-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .story-content,
    .vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 50px;
    }
    
    .timeline-date {
        position: absolute;
        left: -40px;
        top: 0;
        flex: none;
        width: 80px;
    }
    
    .timeline-content {
        margin: 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .filters {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .treasures-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-container {
        height: 300px;
    }
    
    .carousel-caption {
        padding: 1rem;
    }
    
    .carousel-caption h3 {
        font-size: 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .timeline-date {
        width: 60px;
        font-size: 0.8rem;
        padding: 0.3rem 0.5rem;
    }
    
    .timeline-item {
        padding-left: 40px;
    }
    
    .timeline::before {
        left: 15px;
    }
}

