/* ============================================
   VEDICARE - Custom Styles
   Inspired by ever.co.id design aesthetic
   ============================================ */

/* CSS Variables */
:root {
    --primary-gold: #F4D39D;
    --accent-brown: #B97011;
    --black: #000000;
    --white: #FFFFFF;
    --bg-shade: #F3D29C;
    --font-primary: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-shade);
    opacity: 1 !important;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

/* Header/Navigation */
header.navbar {
    background-color: var(--white);
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--black) !important;
    letter-spacing: 2px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 80px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.navbar-nav .nav-link {
    color: var(--black) !important;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-brown) !important;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--black);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--accent-brown);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-shade);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-images::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(243, 210, 156, 0.3);
    z-index: 3;
    pointer-events: none;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 1;
}

.hero-image.active {
    opacity: 1;
    z-index: 2;
}

.hero-content {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 300;
    color: var(--black);
    letter-spacing: 3px;
    margin-bottom: 2rem;
    text-transform: lowercase;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 400;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 4rem;
    background-color: var(--accent-brown);
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--black);
    font-size: 0.9rem;
    letter-spacing: 1px;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Tagline Section */
.tagline-section {
    padding: 8rem 2rem;
    background-color: var(--bg-shade);
    text-align: center;
}

.tagline-text {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--black);
    font-style: italic;
    line-height: 1.4;
    max-width: 1200px;
    margin: 0 auto;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 10;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

/* Products Section */
.products-section {
    background-color: var(--bg-shade);
}

.product-item {
    padding: 8rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.product-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-item:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.3);
}

.product-number {
    font-size: clamp(6rem, 15vw, 20rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 2rem;
    opacity: 0.3;
}

.product-title {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 400;
    color: var(--black);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.product-description {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    font-weight: 300;
    color: var(--black);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 600px;
}

.product-benefits {
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    color: var(--accent-brown);
    font-weight: 500;
    letter-spacing: 1px;
}

.product-benefits span {
    margin: 0 0.5rem;
}

.product-price {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 600;
    color: var(--accent-brown);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.product-order-btn {
    margin-top: 1.5rem;
}

.product-order-btn .btn-cta {
    display: inline-block;
}

.product-image {
    padding: 2rem;
}

.product-image img {
    border-radius: 10px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease;
}

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

/* Personalized Section */
.personalized-section {
    padding: 10rem 2rem;
    background-color: var(--bg-shade);
    text-align: center;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    color: var(--black);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.highlight-text {
    color: var(--accent-brown);
    font-weight: 600;
}

.section-description {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    font-weight: 300;
    color: var(--black);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--black);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid var(--black);
}

.btn-cta:hover {
    background-color: transparent;
    color: var(--black);
    transform: translateY(-2px);
}

/* Wellness Section */
.wellness-section {
    padding: 10rem 2rem;
    background-color: rgba(255, 255, 255, 0.3);
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: 8rem 2rem;
    background-color: var(--bg-shade);
}

.faq-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    color: var(--black);
    text-align: center;
    margin-bottom: 1rem;
}

.faq-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 300;
    color: var(--black);
    text-align: center;
    margin-bottom: 4rem;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 1rem;
    background-color: transparent;
}

.accordion-button {
    background-color: transparent;
    color: var(--black);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 1.5rem 0;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--accent-brown);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 0 0 1.5rem 0;
    color: var(--black);
    font-weight: 300;
    line-height: 1.8;
}

/* Footer */
.footer-section {
    background-color: var(--black);
    color: var(--white);
    padding: 5rem 2rem 2rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 0.8rem;
    font-weight: 300;
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-gold);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-social .social-link {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social .social-link:hover {
    color: var(--primary-gold);
}

.footer-tagline {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
    color: #cccccc;
    margin-top: 1rem;
}

.copyright {
    font-size: 0.85rem;
    font-weight: 300;
    color: #999999;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.developer-credit {
    font-size: 0.8rem;
    font-weight: 300;
    color: #999999;
    margin-top: 0.5rem;
}

.developer-credit a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.developer-credit a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .product-item {
        padding: 5rem 0;
    }
    
    .product-number {
        font-size: clamp(4rem, 12vw, 8rem);
    }
    
    .tagline-section,
    .personalized-section,
    .wellness-section {
        padding: 5rem 2rem;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .navbar-logo {
        height: 60px;
       /*  max-width: 150px; */
    }
    
    .hero-section {
        min-height: 100vh;
        padding-top: 70px;
    }
    
    .hero-content {
        padding: 1.5rem 1rem;
    }
    
    .hero-images {
        height: 100%;
    }
    
    .hero-image {
        object-fit: cover;
        object-position: center;
    }
    
    .product-item {
        padding: 4rem 0;
    }
    
    .product-description {
        max-width: 100%;
    }
    
    .social-icons {
        margin-top: 1rem;
    }
    
    .footer-section {
        padding: 3rem 1rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 100vh;
        padding-top: 60px;
    }
    
    .hero-content {
        padding: 1rem 0.75rem;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        letter-spacing: 1px;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: clamp(0.85rem, 3vw, 1rem);
        padding: 8px 16px;
        margin-bottom: 2rem;
        letter-spacing: 1px;
        line-height: 1.4;
    }
    
    .hero-images {
        height: 100%;
    }
    
    .hero-image {
        object-fit: cover;
        object-position: center;
    }
    
    .scroll-indicator {
        font-size: 0.75rem;
        margin-top: 1rem;
    }
    
    .scroll-indicator i {
        font-size: 1.2rem;
    }
    
    .tagline-text {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-cta {
        padding: 0.8rem 2rem;
    }
}

@media (max-width: 400px) {
    .hero-section {
        min-height: 100vh;
        padding-top: 55px;
    }
    
    .hero-content {
        padding: 0.75rem 0.5rem;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        letter-spacing: 0.5px;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.75rem, 2.5vw, 0.9rem);
        padding: 6px 12px;
        margin-bottom: 1.5rem;
        letter-spacing: 0.5px;
    }
    
    .scroll-indicator {
        font-size: 0.7rem;
    }
    
    .scroll-indicator i {
        font-size: 1rem;
    }
}

/* Smooth Scroll Animation */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

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

/* Page Hero Section (for inner pages) */
.page-hero-section {
    padding: 12rem 2rem 6rem;
    background-color: var(--bg-shade);
    text-align: center;
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(243, 210, 156, 0.8) 0%, rgba(185, 112, 17, 0.1) 100%);
    z-index: 1;
}

.page-hero-section .container {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    color: var(--black);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.page-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 400;
    color: var(--accent-brown);
    letter-spacing: 1px;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 2rem;
}

.page-hero-divider {
    width: 100px;
    height: 3px;
    background-color: var(--accent-brown);
    margin: 2rem auto;
    border-radius: 2px;
}

/* Section Number Styling */
.section-number {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    color: var(--primary-gold);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
    text-align: center;
}

.product-number-large,
.service-number-large {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 900;
    color: var(--primary-gold);
    opacity: 0.15;
    line-height: 1;
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 0;
    pointer-events: none;
}

.product-detail-card,
.service-card {
    position: relative;
}

.product-detail-content,
.service-content {
    position: relative;
    z-index: 1;
}

/* Enhanced Card Styles */
.about-text-card,
.philosophy-card {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    margin-top: 2rem;
}

.mvv-card {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.mvv-card-inner {
    position: relative;
    z-index: 1;
}

.contact-info-card {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    height: 100%;
}

.contact-form-wrapper {
    position: relative;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header .section-number {
    margin-bottom: 1rem;
}

/* About Page Styles */
.about-content-section {
    padding: 5rem 2rem;
    background-color: var(--bg-shade);
}

.section-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--black);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
}

.about-description {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    font-weight: 300;
    color: var(--black);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Mission, Vision, Values Section */
.mvv-section {
    padding: 5rem 2rem;
    background-color: rgba(255, 255, 255, 0.3);
}

.mvv-card {
    text-align: center;
    padding: 2rem;
    height: 100%;
}

.mvv-icon {
    font-size: 3rem;
    color: var(--accent-brown);
    margin-bottom: 1.5rem;
}

.mvv-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
}

.mvv-text {
    font-size: 1rem;
    font-weight: 300;
    color: var(--black);
    line-height: 1.8;
}

.mvv-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 250px;
    margin: 0 auto;
}

.mvv-list li {
    font-size: 1rem;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.mvv-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-brown);
    font-weight: 600;
}

/* Philosophy Section */
.philosophy-section {
    padding: 5rem 2rem;
    background-color: var(--bg-shade);
}

.philosophy-text {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    font-weight: 300;
    color: var(--black);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Why Choose Section */
.why-choose-section {
    padding: 5rem 2rem;
    background-color: rgba(255, 255, 255, 0.3);
}

.feature-card {
    text-align: center;
    padding: 2.5rem;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-brown);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
}

.feature-text {
    font-size: 1rem;
    font-weight: 300;
    color: var(--black);
    line-height: 1.6;
}

/* Products Page Styles */
.products-grid-section {
    padding: 5rem 2rem;
    background-color: var(--bg-shade);
}

.product-detail-card {
    margin-bottom: 6rem;
    padding: 4rem 2rem;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.product-detail-card:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.5);
}

.product-detail-card:last-child {
    margin-bottom: 0;
}

.product-detail-image {
    padding: 1rem;
}

.product-detail-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-detail-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--black);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.product-detail-weight {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--accent-brown);
    margin-bottom: 1.5rem;
}

.product-detail-content .product-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-brown);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.product-detail-description {
    font-size: 1rem;
    font-weight: 300;
    color: var(--black);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.product-highlights {
    margin-top: 2rem;
}

.highlights-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
}

.highlights-list {
    list-style: none;
    padding: 0;
}

.highlights-list li {
    font-size: 1rem;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.highlights-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-brown);
    font-weight: 600;
    font-size: 1.5rem;
}

.product-usage {
    margin-top: 2rem;
}

.usage-text {
    font-size: 1rem;
    font-weight: 300;
    color: var(--black);
    line-height: 1.8;
    font-style: italic;
}

/* Services Page Styles */
.services-content-section {
    padding: 5rem 2rem;
    background-color: var(--bg-shade);
}

.service-card {
    margin-bottom: 6rem;
    padding: 4rem 2rem;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.service-card:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.5);
}

.service-card:last-child {
    margin-bottom: 0;
}

.service-image {
    padding: 1rem;
}

.service-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--black);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.service-description {
    font-size: 1rem;
    font-weight: 300;
    color: var(--black);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.service-features li {
    font-size: 1rem;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-brown);
    font-weight: 600;
}

.service-cta {
    margin-top: 2rem;
}

/* Why Services Section */
.why-services-section {
    padding: 5rem 2rem;
    background-color: rgba(255, 255, 255, 0.3);
}

.service-benefit-card {
    text-align: center;
    padding: 2.5rem;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--accent-brown);
    margin-bottom: 1.5rem;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
}

.benefit-text {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--black);
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 2rem;
    background-color: var(--bg-shade);
}

.contact-info {
    padding: 2rem 0;
}

.contact-heading {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--black);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.contact-intro {
    font-size: 1rem;
    font-weight: 300;
    color: var(--black);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--accent-brown);
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.contact-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.contact-text p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 0.3rem;
}

.contact-text a {
    color: var(--accent-brown);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--black);
}

.contact-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-form-wrapper {
    padding: 3rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
}

.contact-form .form-label {
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 300;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--accent-brown);
    box-shadow: 0 0 0 0.2rem rgba(185, 112, 17, 0.1);
}

.contact-form .form-control.is-invalid {
    border-color: #dc3545;
}

.map-section {
    padding: 5rem 2rem;
    background-color: rgba(255, 255, 255, 0.3);
}

.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-placeholder {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.social-contact {
    margin-top: 2rem;
}

.social-contact h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
}

/* Active Navigation Link */
.nav-link.active {
    color: var(--accent-brown) !important;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 32px;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .page-hero-section {
        padding: 10rem 1rem 4rem;
        min-height: 40vh;
    }
    
    .page-hero-title {
        font-size: 2.5rem;
    }
    
    .page-hero-subtitle {
        font-size: 1rem;
        padding: 0.4rem 1rem;
    }
    
    .about-content-section,
    .products-grid-section,
    .services-content-section,
    .contact-section {
        padding: 3rem 1rem;
    }
    
    .product-detail-card,
    .service-card {
        margin-bottom: 4rem;
        padding: 2rem 1rem;
    }
    
    .product-number-large,
    .service-number-large {
        font-size: 4rem;
        top: 1rem;
        left: 1rem;
    }
    
    .section-number {
        font-size: 3rem;
    }
    
    .about-text-card,
    .philosophy-card {
        padding: 2rem 1.5rem;
    }
    
    .mvv-card,
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .contact-cta {
        flex-direction: column;
    }
    
    .contact-cta .btn-cta {
        width: 100%;
        text-align: center;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float i {
        font-size: 28px;
    }
    
    .feature-card,
    .service-benefit-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
}

/* Order Modal Styles */
#orderModal .modal-content {
    border-radius: 8px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

#orderModal .modal-header {
    border-bottom: 2px solid var(--bg-shade);
    padding: 1.5rem;
}

#orderModal .modal-title {
    font-weight: 600;
    color: var(--black);
    font-size: 1.5rem;
    letter-spacing: 1px;
}

#orderModal .modal-body {
    padding: 2rem;
}

#orderModal .form-label {
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

#orderModal .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

#orderModal .form-control:focus {
    border-color: var(--accent-brown);
    box-shadow: 0 0 0 0.2rem rgba(185, 112, 17, 0.1);
}

#orderModal .form-control[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

#orderModal .modal-footer {
    border-top: 2px solid var(--bg-shade);
    padding: 1.5rem;
}

#orderModal .modal-footer .btn-secondary {
    background-color: #6c757d;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 500;
}

#orderModal .modal-footer .btn-secondary:hover {
    background-color: #5a6268;
}

#orderModal .modal-footer .btn-cta {
    padding: 0.75rem 2rem;
    margin: 0;
}

@media (max-width: 576px) {
    #orderModal .modal-dialog {
        margin: 1rem;
    }
    
    #orderModal .modal-body {
        padding: 1.5rem;
    }
    
    #orderModal .modal-footer {
        padding: 1rem;
    }
    
    #orderModal .modal-footer .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    #orderModal .modal-footer .btn:last-child {
        margin-bottom: 0;
    }
}

