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

:root {
    /* Pop-art and psychedelic primary colors */
    --primary-red: #ff3b30;
    --primary-blue: #0070e0;
    --dark-blue: #004080;
    --primary-white: #ffffff;
    --primary-black: #000000;
    --accent-yellow: #ffd60a;
    --accent-purple: #8a4fff;
    --text-light: #f5f5f5;
    --text-dark: #333333;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
}

/* Textured background effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"%3E%3Cpath fill="%23FFFFFF" fill-opacity="0.05" d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z"%3E%3C/path%3E%3C/svg%3E');
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    margin-bottom: 60px;
}

button, .button {
    cursor: pointer;
    border: none;
    background-color: var(--primary-red);
    color: var(--primary-white);
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

button:hover, .button:hover {
    background-color: #d83126;
    transform: translateY(-2px);
}

/* Content Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 64, 128, 0.9);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    max-width: 1300px;
    margin: 0 auto;
}

.logo img {
    height: 40px; /* Adjust as needed */
    margin-right: 10px;
}

.logo span {
    font-weight: bold;
    /* Any other text styling you want */
}

.logo a {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-white);
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    text-decoration: none;
}

nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-weight: 600;
    color: var(--primary-white);
    position: relative;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--accent-yellow);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent-yellow);
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after, .nav-menu a.active::after {
    width: 100%;
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1002;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Main Content Styles */
main {
    margin-top: 80px;
    padding-bottom: 50px;
}

/* Hero Section - Light Background with Dark Text */
.hero {
    background-color: var(--primary-white);
    color: var(--text-dark);
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/gem_hero.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.coming-soon {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.subscribe-form {
    background-color: rgba(0, 112, 224, 0.1);
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    margin: 0 auto;
    border: 2px solid rgba(0, 112, 224, 0.2);
}

.subscribe-form p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.subscribe-form form {
    display: flex;
    gap: 10px;
}

.subscribe-form input {
    flex-grow: 1;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    font-size: 16px;
}

.subscribe-form button {
    background-color: var(--primary-red);
}

.subscribe-form button:hover {
    background-color: #d83126;
}

/* Featured Sections */
.featured {
    padding: 70px 20px;
    max-width: 1200px;
    margin: 8px auto;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.featured h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--accent-yellow);
    position: relative;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.featured h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-red);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-yellow);
}

.product-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.product-item h3 {
    padding: 15px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--primary-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 70px 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 1200px;
    margin: 0 auto 60px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--accent-yellow);
    position: relative;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-red);
}

.about p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Footer Styles */
footer {
    background-color: rgba(0, 64, 128, 0.9);
    color: var(--primary-white);
    padding: 30px 20px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-red);
    color: var(--primary-white);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--primary-white);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-yellow);
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Page Title Section */
.page-title {
    background-color: var(--primary-white);
    color: var(--text-dark);
    padding: 60px 0;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/gemh_05.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.page-title h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-blue);
    position: relative;
    z-index: 1;
}

.breadcrumbs {
    font-size: 0.9rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.breadcrumbs a {
    color: var(--primary-blue);
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Bio Section */
.bio-section {
    padding: 70px 0;
}

.bio-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    padding: 30px;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.bio-image {
    position: relative;
}

.frame-effect {
    border: 5px solid var(--primary-white);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.frame-effect:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.bio-content h2 {
    color: var(--accent-yellow);
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-style: italic;
    color: var(--primary-white);
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.bio-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

blockquote {
    padding: 20px;
    margin: 30px 0;
    border-left: 4px solid var(--primary-red);
    background-color: rgba(255, 255, 255, 0.1);
    font-style: italic;
    font-size: 1.1rem;
    position: relative;
}

blockquote::before {
    content: """;
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: 10px;
    color: rgba(255, 255, 255, 0.2);
    font-family: Georgia, serif;
}

/* Timeline */
.journey-section {
    margin-bottom: 60px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    padding: 40px;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.journey-section h2 {
    text-align: center;
    color: var(--accent-yellow);
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-blue), var(--primary-red));
}

.timeline-event {
    margin-bottom: 40px;
    position: relative;
}

.timeline-marker {
    position: absolute;
    left: -39px;
    top: 0;
    width: 16px;
    height: 16px;
    background-color: var(--accent-yellow);
    border-radius: 50%;
    border: 2px solid var(--primary-white);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.2);
}

.timeline-content {
    padding-left: 20px;
}

.timeline-content h3 {
    color: var(--primary-white);
    margin-bottom: 10px;
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Philosophy Section */
.philosophy-section {
    margin-bottom: 60px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    padding: 40px;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.philosophy-section h2 {
    text-align: center;
    color: var(--accent-yellow);
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.principle-item {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.principle-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.principle-icon {
    margin-bottom: 15px;
}

.principle-icon i {
    font-size: 2.5rem;
    color: var(--primary-red);
}

.principle-item h3 {
    color: var(--primary-white);
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* CTA Section */
.cta-section {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    padding: 60px 40px;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cta-section h2 {
    color: var(--accent-yellow);
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.cta-section .subscribe-form {
    max-width: 500px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
}

/* Contact Section Layout */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    padding: 40px;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-info h2,
.contact-form-container h2 {
    color: var(--accent-yellow);
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.contact-info p {
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Contact Details Items */
.contact-details {
    display: grid;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-yellow);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background-color: var(--primary-red);
    transform: scale(1.1);
}

.contact-text h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-white);
}

.contact-text p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Contact Form Styles */
.contact-form {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-white);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    font-size: 16px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 5px rgba(0, 112, 224, 0.5);
}

.submit-button {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-red);
    color: var(--primary-white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #d83126;
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    margin-bottom: 60px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    padding: 40px;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.map-section h2 {
    text-align: center;
    color: var(--accent-yellow);
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* FAQ Section */
.faq-section {
    margin-bottom: 60px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    padding: 40px;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.faq-section h2 {
    text-align: center;
    color: var(--accent-yellow);
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.faq-item h3 {
    color: var(--primary-white);
    margin-bottom: 10px;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

/* Product Categories Section */
.product-categories {
    margin-bottom: 60px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    padding: 40px;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.product-categories h2 {
    text-align: center;
    color: var(--accent-yellow);
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    position: relative;
}

.product-categories h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-red);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--accent-yellow);
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(0, 112, 224, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.category-item:hover .category-icon {
    background-color: var(--primary-red);
    transform: scale(1.1);
}

.category-icon i {
    font-size: 24px;
    color: var(--accent-yellow);
}

.category-item h3 {
    color: var(--primary-white);
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Product Section Styles */
.product-section {
    margin-bottom: 60px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    padding: 40px;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    scroll-margin-top: 100px; /* For smooth scrolling */
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    color: var(--accent-yellow);
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-red);
}

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

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-yellow);
}

.product-image {
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-details {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-details h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.product-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    font-weight: 600;
    color: var(--primary-white);
}

.product-status {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.product-status.in-stock {
    background-color: rgba(39, 174, 96, 0.3);
    color: #2ecc71;
}

.product-status.limited {
    background-color: rgba(241, 196, 15, 0.3);
    color: #f1c40f;
}

.product-status.out-of-stock {
    background-color: rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

/* CTA Section in Products Page */
.cta-section {
    text-align: center;
}

.cta-section h2 {
    color: var(--accent-yellow);
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Responsive Styles  */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bio-wrapper {
        grid-template-columns: 1fr;
    }
    
    .bio-image {
        max-width: 350px;
        margin: 0 auto 30px;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-marker {
        left: -29px;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    
    .map-container {
        height: 300px;
    }
    .product-categories,
    .product-section {
        padding: 30px 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .category-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Title scaling for small screens */
    .product-item h3 {
    padding: 15px;
    text-align: center;
    font-size: calc(0.9rem + 0.2vw); /* Base responsive font size */
    color: var(--primary-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    }
    .product-item:hover h3 {
    color: var(--accent-yellow);
    }

@media (max-width: 576px) {
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .page-title h1 {
        font-size: 2rem;
    }
    
    blockquote {
        padding: 15px;
        font-size: 1rem;
    }
    
    .journey-section,
    .philosophy-section,
    .cta-section {
        padding: 30px 20px;
    }
    .contact-details {
        gap: 20px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .contact-text h3 {
        font-size: 1rem;
    }
    
    .contact-text p {
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .map-container {
        height: 250px;
    }
    
    .faq-item {
        padding: 20px 15px;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    nav#mobile-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--dark-blue);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        z-index: 1001;
        display: block;
    }
    
    nav#mobile-nav.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 20px;
    }
    
    /* Active Toggle Button Appearance */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Prevent scrolling when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* Desktop Navigation */
@media (min-width: 769px) {
    nav#mobile-nav {
        display: block;
    }
    
    .nav-menu {
        display: flex;
        gap: 30px;
    }
}
