/* ===========================
   ELEGANT & MODERN DESIGN
   UPJA TANI MAKMUR Website
   =========================== */

:root {
    /* Primary Colors */
    --primary-dark: #1a4d2e;
    --primary-main: #2c5f2d;
    --primary-light: #4a7c4e;
    --primary-lighter: #6b9f6f;

    /* Accent Colors */
    --secondary-warm: #e8a45e;
    --secondary-light: #f4c483;
    --accent-green: #52b788;
    --accent-gold: #d4a574;

    /* Neutrals */
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #f3f4f6;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --border-light: #e5e7eb;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-base: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', '-apple-system', 'BlinkMacSystemFont', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* ===========================
   TYPOGRAPHY
   =========================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--primary-dark);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--primary-main);
}

p {
    line-height: 1.8;
    color: var(--text-gray);
}

a {
    color: var(--primary-main);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--secondary-warm);
}

/* ===========================
   NAVIGATION - ELEGANT
   =========================== */

.navbar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-main) 100%);
    color: white;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.navbar-logo {
    height: 55px;
    width: auto;
    display: block;
    transition: transform var(--transition-base);
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-brand > div {
    display: flex;
    flex-direction: column;
}

.navbar-brand h1 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.navbar-brand .tagline {
    font-size: 0.8rem;
    color: white;
    margin: 0.15rem 0 0 0;
    letter-spacing: 0.3px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 0;
    align-items: center;
    margin-left: auto;
    margin-right: 4rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 0.8rem 1.5rem;
    color: white;
    font-weight: 500;
    transition: all var(--transition-base);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
    background-color: var(--secondary-warm);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-item:hover .submenu {
    display: block;
    animation: slideDown var(--transition-base);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navbar Social Icons */
.navbar-social {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    padding-right: 0.5rem;
}

.navbar-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 1rem;
    transition: all var(--transition-base);
    text-decoration: none;
    line-height: 1;
}

.navbar-social-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.navbar-social-icon.instagram {
    font-size: 1rem;
}

.navbar-social-icon.tiktok {
    font-size: 0.9rem;
}

.navbar-social-icon.youtube {
    font-size: 1rem;
}

.navbar-social-icon.tiktok svg {
    width: 14px;
    height: 14px;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, #1a3d28 0%, #244a2e 100%);
    min-width: 220px;
    list-style: none;
    padding: 0.75rem 0;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
}

.submenu li {
    padding: 0;
}

.submenu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: white;
    transition: all var(--transition-base);
}

.submenu a:hover {
    background-color: rgba(232, 164, 94, 0.2);
    padding-left: 2rem;
    color: var(--secondary-warm);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    transition: transform var(--transition-base);
}

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

/* ===========================
   HERO SECTION - ELEGANT
   =========================== */

.hero {
    color: white;
    padding: 2rem 2rem;
    text-align: left;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* YouTube Video Background Container */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5);
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
    object-fit: cover;
}

/* Video Overlay for Better Text Readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.7) 0%, rgba(44, 95, 45, 0.7) 50%, rgba(82, 183, 136, 0.6) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s ease-in-out infinite;
    z-index: 2;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 30px); }
}

.hero-content {
    max-width: 650px;
    margin: 0;
    padding-left: 1rem;
    position: relative;
    z-index: 1;
}

.hero-tagline {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #e8a45e;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.hero h2 {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    color: white;
    margin-bottom: 0.8rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

/* ===========================
   BUTTONS - ELEGANT
   =========================== */

.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-main) 0%, var(--accent-green) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-main) 100%);
}

.btn-secondary {
    background-color: var(--secondary-warm);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background-color: var(--secondary-light);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-small {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.btn-outline {
    background-color: var(--secondary-warm);
    color: white;
    border: 2px solid var(--secondary-warm);
}

.btn-outline:hover {
    background-color: var(--secondary-light);
    border-color: var(--secondary-light);
    color: white;
}

/* ===========================
   CONTAINER & SECTIONS
   =========================== */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-green) 100%);
    padding: 3rem 2rem;
    text-align: center;
    border-bottom: none;
}

.page-header h1 {
    color: white;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.5rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.page-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    padding: 3rem 0;
}

.content-section {
    grid-column: 1;
}

.content-section h2 {
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--secondary-warm);
    padding-bottom: 0.8rem;
    position: relative;
}

.content-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 3px;
    width: 0;
    background-color: var(--secondary-warm);
    animation: expandWidth 0.6s ease-out forwards;
}

@keyframes expandWidth {
    to { width: 100%; }
}

.content-section h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section p {
    margin-bottom: 1.2rem;
    line-height: 1.9;
}

.content-section ul,
.content-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

/* ===========================
   ABOUT SECTION - NEW LAYOUT
   =========================== */

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    padding: 0 2rem;
}

.about-image-wrapper {
    position: relative;
}

.about-image-placeholder {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-content-wrapper h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-tagline {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--secondary-warm);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2.5rem 0;
}

.about-feature-item {
    padding: 1.5rem;
    background: rgba(82, 183, 136, 0.08);
    border-radius: 12px;
    transition: all var(--transition-base);
}

.about-feature-item:hover {
    background: rgba(82, 183, 136, 0.15);
    transform: translateY(-4px);
}

.about-feature-item .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.about-feature-item h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.about-feature-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto 0 auto;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

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

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-main);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-text {
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 600;
}

/* ===========================
   VISI & MISI SECTION
   =========================== */

.visi-misi-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.visi-misi-item {
    background: linear-gradient(135deg, rgba(82, 183, 136, 0.08) 0%, rgba(74, 124, 78, 0.08) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-main);
}

.visi-misi-item h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.visi-misi-item p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

.visi-misi-item ul {
    margin: 0;
    padding-left: 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.visi-misi-item ul li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* ===========================
   HISTORY SECTION
   =========================== */

.history-section {
    max-width: 1200px;
    margin: 3rem auto 4rem auto;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(232, 164, 94, 0.06) 0%, rgba(212, 165, 116, 0.06) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-warm);
}

.history-section h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.history-section p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

.history-section strong {
    color: var(--primary-dark);
    font-weight: 600;
}

/* ===========================
   ACHIEVEMENTS / CAROUSEL SECTION - STORE STYLE
   =========================== */

.achievements-section {
    background: #2c5f2d;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 3rem 0;
}

.achievements-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

.achievements-content {
    color: white;
    padding: 0;
}

.achievements-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.6rem;
}

.achievements-content h2 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.achievements-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
}

.achievements-content h4 {
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.achievements-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 1rem;
}

.achievements-list li {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    padding-left: 1.2rem;
    margin-bottom: 0.4rem;
    position: relative;
}

.achievements-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #e8a45e;
}

/* Carousel Container Store Style */
.achievements-carousel {
    position: relative;
}

.carousel-container-store {
    position: relative;
    width: 100%;
}

.carousel-wrapper-store {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.carousel-track-store {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 100%;
    position: relative;
}

.carousel-slide-store {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 12px;
    max-height: 280px;
}

.carousel-slide-store img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: white;
}

/* Carousel Buttons Store */
.carousel-btn-store {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    color: #2c5f2d;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-btn-store:hover {
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: #f5f5f5;
}

.carousel-prev-store {
    left: 1rem;
}

.carousel-next-store {
    right: 1rem;
}

/* Carousel Indicators Store */
.carousel-indicators-store {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: white;
    width: 20px;
    border-radius: 5px;
}

.carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Mobile Carousel Controls */
.carousel-controls-mobile {
    display: none;
    gap: 1rem;
    margin-top: 1.5rem;
}

.carousel-btn-mobile {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn-mobile:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* ===========================
   GREEN DIVIDER BAR
   =========================== */

.green-divider {
    width: 100vw;
    height: 24px;
    background: linear-gradient(135deg, #52b788 0%, #2c5f2d 100%);
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.08) 35px, rgba(255,255,255,.08) 70px),
        linear-gradient(135deg, #52b788 0%, #2c5f2d 100%);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: 0;
    margin-bottom: 0;
}

/* ===========================
   CARDS - ELEGANT
   =========================== */

.about-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--secondary-warm);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-left-color: var(--primary-main);
}

.about-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.about-card p {
    color: var(--text-gray);
}

.info-card {
    background: linear-gradient(135deg, var(--primary-main) 0%, var(--primary-light) 100%);
    color: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-base);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: white;
}

.info-card p {
    font-size: 0.95rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* ===========================
   STATISTICS SECTION - PREMIUM
   =========================== */

.stats-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-main) 100%);
    padding: 4rem 2rem;
    margin: 3rem 0;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(232, 164, 94, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(82, 183, 136, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-main);
    margin-bottom: 0.5rem;
    font-family: 'Courier New', monospace;
}

.stat-label {
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===========================
   FEATURES SECTION - PREMIUM
   =========================== */

.features-section {
    padding: 4rem 2rem;
    margin: 3rem 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border-top: 4px solid var(--secondary-warm);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 164, 94, 0.1), transparent);
    transition: left var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-top-color: var(--accent-green);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===========================
   CALL TO ACTION SECTION
   =========================== */

.cta-section {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--primary-main) 100%);
    padding: 4rem 2rem;
    margin: 3rem 0;
    border-radius: var(--radius-xl);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s ease-in-out infinite reverse;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    color: white;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.8;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.05rem;
    font-weight: 600;
}

/* ===========================
   PRODUCTS SECTION - ELEGANT
   =========================== */

/* ===========================
   PROFIL SECTION
   =========================== */

.profil-section {
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.profil-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.profil-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-main);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.profil-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.profil-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.profil-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profil-list li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-light);
    line-height: 1.6;
}

.profil-list li:last-child {
    border-bottom: none;
}

.profil-list strong {
    color: var(--primary-dark);
}

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

.profil-services h4 {
    color: var(--primary-main);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.profil-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profil-services li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.2rem;
    position: relative;
}

.profil-services li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.products-section {
    background-color: var(--bg-light);
    padding: 3rem 2rem;
    margin: 3rem 0;
    border-radius: var(--radius-xl);
}

/* ===========================
   PRODUCT CARDS - ELEGANT
   =========================== */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.product-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px);
}

.product-image {
    background: linear-gradient(135deg, var(--primary-main), var(--accent-green));
    color: white;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.product-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 164, 94, 0.1) 0%, transparent 100%);
    z-index: 1;
}

.product-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-base);
}

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

.product-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.product-brand {
    color: var(--secondary-warm);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.product-price {
    background: var(--bg-light);
    padding: 1.2rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
}

.price-tag {
    color: var(--secondary-warm);
    font-weight: 700;
    font-size: 1.2rem;
}

.product-note {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.product-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Simple Product Card for Homepage */
.product-card-simple {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.product-card-simple:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.product-simple-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-simple-info h3 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.4;
}

/* ===========================
   NEWS SECTION
   =========================== */

.news-section {
    background-color: var(--bg-light);
    padding: 3rem 2rem;
    margin: 3rem 0;
    border-radius: var(--radius-xl);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.news-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    color: inherit;
    text-decoration: none;
}

.news-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-light);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-date {
    color: var(--secondary-warm);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card h3 {
    color: var(--primary-dark);
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.news-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.news-card .btn {
    align-self: flex-start;
}

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

.section-header h2 {
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-warm) 0%, var(--primary-main) 100%);
    border-radius: 2px;
}

/* ===========================
   NEWS DETAIL PAGE
   =========================== */

.news-date-header {
    color: var(--secondary-warm);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

.news-detail-image {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.news-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.news-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.news-detail-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: justify;
}

.news-detail-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.news-detail-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.news-detail-content li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

/* ===========================
   NEWS MODAL
   =========================== */

.news-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
    animation: fadeIn var(--transition-base);
}

.news-modal.active {
    display: flex;
}

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

.news-modal-content {
    background: white;
    border-radius: var(--radius-xl);
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: slideUp var(--transition-base);
}

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

.news-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-dark);
    z-index: 2001;
    transition: transform var(--transition-base);
}

.news-modal-close:hover {
    transform: scale(1.2);
    color: var(--secondary-warm);
}

.news-modal-body {
    padding: 3rem;
}

.news-modal-body img {
    width: 100%;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.news-modal-body h2 {
    margin-bottom: 1rem;
}

.news-modal-body p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.news-modal-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.news-modal-body ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.news-modal-body li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

/* ===========================
   SIDEBAR
   =========================== */

.sidebar {
    grid-column: 2;
}

.sidebar-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-main);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    transition: all var(--transition-base);
}

.sidebar-box:hover {
    box-shadow: var(--shadow-md);
}

.sidebar-box h4 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.sidebar-box ul {
    list-style: none;
    margin: 0;
}

.sidebar-box li {
    margin: 0;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-light);
}

.sidebar-box li:last-child {
    border-bottom: none;
}

.sidebar-box a {
    display: block;
    padding: 0.8rem 0;
    color: var(--primary-main);
    transition: all var(--transition-base);
    padding-left: 0;
}

.sidebar-box a:hover {
    color: var(--secondary-warm);
    padding-left: 10px;
}

.sidebar-box a.active {
    color: var(--secondary-warm);
    font-weight: 700;
    border-left: 3px solid var(--secondary-warm);
    padding-left: 10px;
}

/* ===========================
   GALLERY
   =========================== */

.achievements-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.achievement-item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.achievement-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.achievement-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-base);
}

.achievement-item:hover .achievement-image {
    transform: scale(1.05);
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-main) 100%);
    color: white;
    padding-top: 3rem;
    margin-top: 4rem;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

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

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-brand-content h3 {
    margin: 0;
    font-size: 1.3rem;
    color: white;
}

.footer-tagline {
    margin: 0.3rem 0 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-description {
    line-height: 1.6;
    opacity: 0.95;
    font-size: 0.95rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--secondary-warm);
    padding-bottom: 0.8rem;
}

.footer-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.9);
}

.footer-section ul {
    list-style: none;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: white;
    transition: color var(--transition-base);
}

.footer-section a:hover {
    color: var(--secondary-warm);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    opacity: 0.9;
    color: white;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
    transition: opacity var(--transition-base);
}

.footer-bottom a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* ===========================
   INFO BOX
   =========================== */

.info-box {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(82, 183, 136, 0.1) 100%);
    border-left: 4px solid var(--accent-green);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-sm);
}

.info-box h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

/* ===========================
   ANIMATIONS
   =========================== */

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* ===========================
   UTILITIES
   =========================== */

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

.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 3rem; }

.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 3rem; }

.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* ===========================
   FLOATING CONTACT BUTTON
   =========================== */

.floating-contact-btn {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 999;
    transition: all var(--transition-base);
}

.floating-contact-label {
    background: white;
    color: var(--primary-main);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow-lg);
    white-space: nowrap;
    opacity: 1;
    transition: opacity var(--transition-base);
}

.floating-contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366 0%, #20ba58 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.floating-contact-icon:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.floating-contact-btn:hover .floating-contact-label {
    opacity: 1;
}

@media (max-width: 768px) {
    .floating-contact-btn {
        right: 1rem;
        bottom: 1rem;
    }

    .floating-contact-label {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .floating-contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Social Media Feedback Button */
.social-media-feedback {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    background: var(--secondary-warm);
    border-radius: 12px 0 0 12px;
    width: 54px;
    height: 54px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: slideInRight 0.5s ease-out;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    color: white;
    font-size: 1.5rem;
}

.social-media-feedback:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.social-media-feedback i {
    color: white;
}

.social-icons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-base);
    text-decoration: none;
}

.social-icon:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.tiktok {
    background: linear-gradient(135deg, #000 0%, #000 48%, #25F4EE 48%, #25F4EE 52%, #000 52%, #000 100%);
}

.social-icon.tiktok svg {
    width: 18px;
    height: 18px;
}

.social-icon.youtube {
    background: #FF0000;
}

.social-icon.youtube i {
    margin-left: 1px;
}

/* Social Media Modal */
.social-panel {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.social-panel.active {
    display: flex;
}

.social-panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    animation: fadeIn 0.3s ease-out;
}

.social-panel-content {
    position: relative;
    background: white;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-xl);
    border-radius: 16px;
    width: 280px;
    max-width: 90%;
    text-align: center;
    animation: slideUp 0.3s ease-out;
    z-index: 1001;
}

.social-panel-content h3 {
    display: none;
}

.social-panel-heading {
    margin: 0 0 1.5rem 0;
    color: var(--primary-main);
    font-size: 1.3rem;
    font-weight: 700;
    display: block !important;
}

.social-panel-content .social-icons {
    flex-direction: row;
    gap: 2rem;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.social-panel-content .social-icon {
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
}

.social-panel-content .social-icon.tiktok svg {
    width: 24px;
    height: 24px;
}

.social-label {
    margin: 0;
    color: #666;
    font-size: 0.85rem;
    font-weight: 500;
}

.social-panel-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--primary-main);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.social-panel-close:hover {
    transform: rotate(90deg);
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

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

/* Share Menu Styles */
.share-menu {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.share-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.share-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: transparent;
    border: 1px solid var(--border-light);
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-base);
    width: 100%;
    justify-content: flex-start;
}

.share-link:hover {
    background: var(--bg-light);
    border-color: var(--secondary-warm);
    color: var(--secondary-warm);
}

.share-link i {
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
}

.share-link span {
    flex: 1;
}

.share-link.facebook {
    color: #1877f2;
}

.share-link.facebook:hover {
    background: rgba(24, 119, 242, 0.1);
    border-color: #1877f2;
}

.share-link.whatsapp {
    color: #25d366;
}

.share-link.whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25d366;
}

.share-link.twitter {
    color: #000000;
}

.share-link.twitter:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: #000000;
}

.share-link.copy-link {
    color: var(--primary-main);
}

.share-link.copy-link:hover {
    background: rgba(44, 95, 45, 0.1);
    border-color: var(--primary-main);
}

@media (max-width: 768px) {
    .social-media-feedback {
        right: 25px;
        bottom: 25px;
        width: 50px;
        height: 50px;
    }

    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .social-icon.tiktok svg {
        width: 16px;
        height: 16px;
    }
}
