/* CSS Variables */
:root {
    --primary-color: #2E7D32; 
    --secondary-color: #F5F5F5; 
    --tertiary-color: #8D6E63; 
    --sage-green: #A5D6A7; 
    --accent-color: #F9A825; 
    --text-color: #424242; 
    --text-light: #666666;
    --white: #FFFFFF;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-large: 16px;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}


a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;

}

/* Section Styles */
.section {
    padding: 5rem 0;
}

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

.section-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--sage-green) 100%);
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background-color: #F57C00;
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

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

.nav-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.nav-menu2 {
    display: flex;
    gap: 2rem;
    justify-content: flex-end; 
    align-items: center; 
    transform: translateX(340px);
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.cta-nav {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
}

.nav-link.cta-nav:hover {
    background-color: #F57C00;
    transform: translateY(-1px);
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Custom Button */
button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

button.learn-more {
    width: 12rem;
    height: auto;
}

button.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 2.8rem;
    height: 2.8rem;
    background: var(--primary-color);
    border-radius: 1.625rem;
}

button.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
}

button.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.25rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
}

button.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.7rem 0;
    margin: 0 0 0 1.85rem;
    color: #282936;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
}

button:hover .circle {
    width: 100%;
}

button:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(1rem, 0);
}

button:hover .button-text {
    color: #fff;
}

/* Custom Language Toggle */
.toggle-button-cover {
    display: table-cell;
    position: relative;
    width: 80px;
    height: 40px;
    box-sizing: border-box;
}

.button-cover {
    height: 100px;
    margin: 20px;
    background-color: #fff;
    box-shadow: 0 10px 20px -8px #c5d6d6;
    border-radius: 4px;
}

.button-cover:before {
    counter-increment: button-counter;
    content: counter(button-counter);
    position: absolute;
    right: 0;
    bottom: 0;
    color: #d7e3e3;
    font-size: 12px;
    line-height: 1;
    padding: 5px;
}

.button-cover,
.knobs,
.layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.button {
    position: relative;
    top: 50%;
    width: 74px;
    height: 36px;
    margin: -20px auto 0 auto;
    overflow: hidden;
}

.checkbox {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.knobs {
    z-index: 2;
}

.layer {
    width: 100%;
    background-color: #ebf7fc;
    transition: 0.3s ease all;
    z-index: 1;
}

.button.r,
.button.r .layer {
    border-radius: 100px;
}

#button-3 .knobs:before {
    content: "ID";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 20px;
    height: 10px;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    padding: 9px 4px;
    background-color: #03a9f4;
    border-radius: 50%;
    transition: 0.3s ease all, left 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15);
}

#button-3 .checkbox:active + .knobs:before {
    width: 46px;
    border-radius: 100px;
}

#button-3 .checkbox:checked:active + .knobs:before {
    margin-left: -26px;
}

#button-3 .checkbox:checked + .knobs:before {
    content: "EN";
    left: 42px;
    background-color: #03a9f4;
}

#button-3 .checkbox:checked ~ .layer {
    background-color: #ebf7fc;
}

.hamburger {
    display: none; 
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    width: 30px;
    height: 25px;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--text-color, #000); 
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Animation when active */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5.96px, 5.96px);
    
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5.96px, -5.96px);
}


/* Hero Section */
.hero-section {
    padding-top: 8rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--sage-green) 100%);
    position: relative;
    overflow: hidden;
}


/* Intro section */
.IntroContainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.Intro-image img{
    max-width: 100%;
    height: 300px;
    background: white;
    border-radius: var(--border-radius-large);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    transition: var(--transition);
}

.Intro-image img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    
}

.overview-content2 {
    margin-top: 50px;
}

.ProdukButton {
  display: flex;
  justify-content: center; 
  align-items: center;     
  margin-top: 20px;
}

/* About Section */
.about-section {
    background-color: var(--secondary-color);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-story, .about-mission, .about-vision {
    margin-bottom: 2rem;
}

.about-story h3, .about-mission h3, .about-vision h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-image-img {
    width: 100%;
    height: 400px;
    background: white;
    border-radius: var(--border-radius-large);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    transition: var(--transition);
}
.about-image-img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    
}

/* Team Section */
.team-section {
    background-color: var(--secondary-color);
}

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

.team-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    box-shadow: var(--shadow);
    transition: 
        transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-20px) !important;
    box-shadow: var(--shadow-hover);
}

.team-photo {
    margin-bottom: 1.5rem;
}

.team-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--sage-green));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 2rem;
    font-weight: 600;
    margin: 0 auto;
}

.team-role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-desc {
    color: var(--text-light);
    font-size: 0.9rem;
}


/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f8f9fa 100%);
    scroll-margin-top: 80px;
}

/* Filter Tabs */
.filter-tabs {
    margin-bottom: 3rem;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    background: var(--white);
    border: 2px solid var(--sage-green);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    min-width: 120px;
}

.tab-btn:hover {
    background: var(--sage-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.tab-btn.active:hover {
    background: var(--primary-color);
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    justify-content: center;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto; 
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--sage-green));
}

.testimonial-card.featured::before {
    background: linear-gradient(90deg, var(--accent-color), #F57C00);
}

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

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sage-green), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.testimonial-avatar.featured {
    background: linear-gradient(135deg, var(--accent-color), #F57C00);
}

.testimonial-avatar i {
    font-size: 1.5rem;
    color: var(--white);
}

.testimonial-info {
    flex-grow: 1;
}

.testimonial-name {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.testimonial-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.testimonial-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), #F57C00);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.product-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--sage-green));
    color: var(--white);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.testimonial-content {
    position: relative;
    margin-bottom: 1.5rem;
}

.testimonial-image-circle {
    width: 88px;      
    height: 88px;     
    object-fit: cover; 
    border-radius: 50%; 
}

.testimonial-quote {
    position: absolute;
    top: -10px;
    left: -10px;
    color: var(--sage-green);
    font-size: 2rem;
    opacity: 0.3;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
    padding-left: 1rem;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: var(--accent-color);
    font-size: 1rem;
}

.testimonial-verified {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0;
}

.testimonial-verified i {
    color: var(--primary-color);
}

/* Testimonials Stats */
.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(46, 125, 50, 0.1);
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}
.pagination-container {
    margin: 3rem 0;
    text-align: center;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.page-btn {
    background: var(--white);
    border: 2px solid var(--sage-green);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.page-btn:hover:not(:disabled) {
    background: var(--sage-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.page-number {
    width: 40px;
    height: 40px;
    border: 2px solid var(--sage-green);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.9rem;
}

.page-number:hover {
    background: var(--sage-green);
    color: var(--white);
    transform: scale(1.1);
}

.page-number.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow);
}

.page-number.active:hover {
    background: var(--primary-color);
    color: var(--white);
}

.pagination-info {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}


/* Social */
.Other-Testimonial-section-header {
    text-align: center;
    margin-bottom: 4rem;
    justify-content: center;
}
.social-img {
    width: 160px;
    height: auto;
    object-fit: cover;
    display: inline-block;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.social-img:hover {
    transform: scale(1.05); /* Optional zoom on hover */
}

.social-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px; /* spacing between images */
    margin-top: 1rem;
}

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

.social-label {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}


/* Video */
.video-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: var(--secondary-color);
}

.video-section .section-header {
    margin-bottom: 1.5rem;
}

.Video-Container{
    text-align: center;
    max-width: 1200px;
    justify-content: center;
    display: block;
    align-items: center;
}

.Video-Container video{
    max-width: 100%;
    height: auto;
}

/* Products Section */
.products-section {
    background-color: var(--white);
    padding: 40px;
}
.card-container {
    display: flex;
    gap: 20px;
    padding: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory; 
    justify-content: center;
}
.product-card {
    width: 300px;
    height: 500px;
    padding: .8em;
    background: #f5f5f5;
    position: relative;
    overflow: visible;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    flex: 0 0 auto; 
    scroll-snap-align: start; 
}
.product-card-img,
.product-card-img2,
.product-card-img3 {
    justify-content: center;
    align-items: center;
    display: flex;
}
.product-card-img img{
    height: auto;
    max-width: 160px;
    max-height: 190px;
    border-radius: .5rem;
    transition: .3s ease;
}
.product-card-img2 img{
    height: auto;
    max-width: 100%;
    border-radius: .5rem;
    transition: .3s ease;
}
.product-card-img3 img{
    height: auto;
    width: 180px;
    border-radius: .5rem;
    transition: .3s ease;
    
}

.product-card-info {
    padding-top: 10%;
}

svg {
    width: 20px;
    height: 20px;
}

.product-card3 img{
    height: auto;
    max-width: 100%;
}

.product-card3 {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    
}

.product-card3:hover{
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-card-footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.product-text-title,
.product-text-title2 {
    font-weight: 900;
    font-size: 1.2em;
    line-height: 1.5;
    transition: color 0.1s ease;
}
.product-text-title2:hover {
    color: #2E7D32;
    text-shadow: 0px 2px 8px rgba(46, 125, 50, 0.5);
}

.product-text-body {
    font-size: .8em;
    padding-bottom: 10px;
    text-align: left;
}
.product-text-title2 {
    font-weight: 900;
    font-size: 1.2em;
    line-height: 1;
}

.product-text-body2 {
    font-size: .8em;
    padding-bottom: 10px;
    text-align: left;
}
.product-card-button {
    border: 1px solid #252525;
    display: flex;
    padding: .3em;
    cursor: pointer;
    border-radius: 50px;
    transition: .3s ease-in-out;
    text-decoration: none;   /* remove underline */
    color: inherit;          /* make link use current text color */
    align-items: center;     /* center SVG */
    justify-content: center; /* center SVG */
}

.product-card-button:hover {
    border: 1px solid #ffcaa6;
    background-color: #ffcaa6;
}

.product-card-button a {
    display:inline-block; 
    width:20px; 
    height:20px;
}
.product-card-img img:hover,
.product-card-img2 img:hover, 
.product-card-img3 img:hover{
    transform: translateY(-10%);
    box-shadow: rgba(226, 196, 63, 0.25) 0px 13px 47px -5px, rgba(180, 71, 71, 0.3) 0px 8px 16px -8px;
}



/* Contact Section */
.contact-section {
    background-image: url("images/callcenter.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--accent-color);
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

.social-media {
    background-color: var(--secondary-color);
    padding: 1rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    align-self: end;     
    height: fit-content; 
}

.social-media h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.social-link img {
    border-radius: 4px;
}

.social-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.social-info small {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Footer */
.footer {
    background-color: var(--tertiary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--sage-green);
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.9;
}

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

.footer-column h4 {
    color: var(--sage-green);
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    opacity: 0.9;
    transition: var(--transition);
}

.footer-column a:hover {
    opacity: 1;
    color: var(--sage-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 1rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }


    .switch {
        font-size: 17px;
        position: relative;
        display: inline-block;
        width: 3.5em;
        height: 2em;
    }


    .page-title {
        font-size: 2.5rem;
    }

    .overview-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .overview-stats {
        grid-template-columns: 1fr;
    }

    .product-showcase-large {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .platform-links {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons,
    .contact-cta-buttons,
    .emergency-contacts,
    .direct-order-buttons {
        justify-content: center;
    }
    .values-grid,
    .team-grid,
    .research-grid,
    .quality-grid,
    .pricing-grid {
        flex: 0 0 80%;
    }
    .ingredients-grid{
        justify-content: center;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    .ingredients-container {
        flex-direction: column;
    }

    .ingredient-details {
        margin-top: 1rem;
        min-height: auto;
        width: 100%;
    }

    .ingredient-card img {
        height: 200px;
        max-width: 100%;
        transition: transform 0.3s ease, height 0.3s ease;
    }
    .ingredient-card.active-card img {
        transform: scale(0.95);
        height: 90%; 
        transition: transform 0.3s ease, height 0.3s ease;
    }

    .ingredient-card {
        padding: 1.5rem;
        flex: 3;
    }

    .closebtn {
        top: 0.25rem;
        right: 0.5rem;
        font-size: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .product-showcase-large {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center; 
    }

    .product-image-large {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .product-image-large img {
        width: 300px;
        max-width: 100%;
        height: auto;
    }

    .card-container {
        justify-content: flex-start;
        overflow-x: scroll; 
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    /* Force scrollbar visible and style it */
    .card-container::-webkit-scrollbar {
        height: 20px; 
    }
    .card-container::-webkit-scrollbar-track {
        background: #f0f0f0; 
        border-radius: 10px;
    }
    .card-container::-webkit-scrollbar-thumb {
        background: #888; 
        border-radius: 10px;
    }
    .card-container::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

    /* Firefox scrollbar styling */
    .card-container {
        scrollbar-width: thin;
        scrollbar-color: #888 #f0f0f0;
    }

    .product-card-img:hover {
        transform: none;
        box-shadow: none;
    }

    .product-card-button:hover {
        border: 1px solid #252525; 
        background-color: transparent;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonials-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
    .page-btn {
        padding: 0.5rem 1rem;        
        gap: 0.35rem;                
        border-width: 1.5px;         
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .hero-title,
    .page-title {
        font-size: 2rem;
    }
    
    .hero-subtitle,
    .page-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .product-price {
        font-size: 2rem;
    }
    
    .pricing-card.popular {
        transform: none;
    }
}

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

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

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .section {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .section.visible {
        opacity: 1;
        transform: translateY(0);
    }
}