:root {
    --color-black: #000000;
    --color-dark-grey: #1a1a1a;
    --color-teal: #00e6e6; /* Bright Teal */
    --color-purple: #9d00ff; /* Bright Purple */
    --color-light-purple: #e0b0ff; /* Lighter purple for subtle accents */
    --color-text-light: #e0e0e0;
    --color-glow-start: rgba(0, 230, 230, 0.7); /* Teal glow with transparency */
    --color-glow-end: rgba(157, 0, 255, 0.7); /* Purple glow with transparency */

    --font-heading: 'Sora', sans-serif;
    --font-body: 'Kanit', sans-serif;

    --max-width-container: 1200px;
    --spacing-unit: 1rem;
    --border-radius-card: 15px;
    --box-shadow-glow: 0 0 15px rgba(0, 230, 230, 0.5), 0 0 30px rgba(157, 0, 255, 0.5);
    --transition-speed: 0.3s ease-in-out;
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-light);
    background-color: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Particle Background - CSS only for basic effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(0, 230, 230, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(157, 0, 255, 0.08) 0%, transparent 50%);
    opacity: 1;.7;
    z-index: -1;
    pointer-events: none;
    animation: backgroundShift 20s infinite alternate ease-in-out;
}

@keyframes backgroundShift {
    0% { background-position: 0% 0%, 100% 100%; }
    100% { background-position: 100% 100%, 0% 0%; }
}

/* Glowing Aura Container */
.glow-container {
    background: linear-gradient(135deg, rgba(0, 230, 230, 0.1) 0%, rgba(157, 0, 255, 0.1) 100%);
    border-radius: var(--border-radius-card);
    padding: calc(var(--spacing-unit) * 4);
    margin: calc(var(--spacing-unit) * 2) auto;
    max-width: var(--max-width-container);
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow-glow);
}

.glow-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%,
        rgba(0, 230, 230, 0.2) 0deg,
        rgba(157, 0, 255, 0.2) 90deg,
        rgba(0, 230, 230, 0.2) 180deg,
        rgba(157, 0, 255, 0.2) 270deg,
        rgba(0, 230, 230, 0.2) 360deg
    );
    animation: rotateGlow 15s linear infinite;
    z-index: -1;
    filter: blur(50px);
    opacity: 1;.3;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-text-light);
    margin-bottom: var(--spacing-unit);
    line-height: 1.2;
    text-align: center;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(90deg, var(--color-teal), var(--color-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px var(--color-teal), 0 0 20px var(--color-purple);
}

h2 {
    font-size: 2.8rem;
    margin-top: calc(var(--spacing-unit) * 4);
    background: linear-gradient(90deg, var(--color-purple), var(--color-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 8px rgba(157, 0, 255, 0.6), 0 0 16px rgba(0, 230, 230, 0.6);
}

h3 {
    font-size: 1.8rem;
    color: var(--color-light-purple);
    text-shadow: 0 0 5px rgba(224, 176, 255, 0.5);
}

h4 {
    font-size: 1.2rem;
    color: var(--color-teal);
    text-shadow: 0 0 3px rgba(0, 230, 230, 0.4);
}

p {
    margin-bottom: var(--spacing-unit);
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.lead {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 1;.9;
}

a {
    color: var(--color-teal);
    text-decoration: none;
    transition: color var(--transition-speed), text-shadow var(--transition-speed);
}

a:hover {
    color: var(--color-purple);
    text-shadow: 0 0 5px var(--color-teal);
}

.container {
    max-width: var(--max-width-container);
    margin: 0 auto;
    padding: 0 calc(var(--spacing-unit) * 2);
}

.section-title {
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 2);
    padding-top: calc(var(--spacing-unit) * 4);
}

.section-description {
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.15rem;
    opacity: 1;.85;
}

/* Buttons and CTAs */
.cta-button {
    display: inline-block;
    padding: calc(var(--spacing-unit) * 1.2) calc(var(--spacing-unit) * 2.5);
    background: linear-gradient(45deg, var(--color-teal), var(--color-purple));
    color: var(--color-text-light);
    border: none;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition-speed);
    box-shadow: 0 0 15px rgba(0, 230, 230, 0.6), 0 0 30px rgba(157, 0, 255, 0.6);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 25px var(--color-teal), 0 0 50px var(--color-purple);
}

.cta-button.pulse {
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 10px rgba(0, 230, 230, 0.5), 0 0 20px rgba(157, 0, 255, 0.5); }
    50% { box-shadow: 0 0 20px rgba(0, 230, 230, 0.8), 0 0 40px rgba(157, 0, 255, 0.8); }
    100% { box-shadow: 0 0 10px rgba(0, 230, 230, 0.5), 0 0 20px rgba(157, 0, 255, 0.5); }
}


/* Header */
.header {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: calc(var(--spacing-unit) * 1.5) 0;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 230, 230, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--color-teal), var(--color-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 8px rgba(0, 230, 230, 0.5);
    padding: 0;
}

.main-nav .nav-links {
    list-style: none;
    display: flex;
    gap: calc(var(--spacing-unit) * 2.5);
}

.main-nav .nav-links a {
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 400;
    padding: var(--spacing-unit) calc(var(--spacing-unit) * 0.5);
    position: relative;
    transition: all var(--transition-speed);
}

.main-nav .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-teal), var(--color-purple));
    transition: all var(--transition-speed);
    transform: translateX(-50%);
}

.main-nav .nav-links a:hover::after,
.main-nav .nav-links a.active::after {
    width: 100%;
}

.main-nav .nav-links a:hover {
    color: var(--color-teal);
    text-shadow: 0 0 8px rgba(0, 230, 230, 0.6);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    padding: 0;
    z-index: 1001;
}

.menu-toggle .hamburger {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-teal);
    border-radius: 2px;
    transition: all var(--transition-speed);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--spacing-unit) * 4) 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(0, 230, 230, 0.1) 0%, rgba(157, 0, 255, 0.1) 100%);
}

.hero-content {
    max-width: 900px;
    padding: calc(var(--spacing-unit) * 4);
    background: rgba(0, 0, 0, 0.5);
    border-radius: var(--border-radius-card);
    box-shadow: var(--box-shadow-glow);
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    margin-bottom: calc(var(--spacing-unit) * 1.5);
    font-size: 4rem;
}

.hero-content .lead {
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.hero-content p {
    margin-bottom: calc(var(--spacing-unit) * 2.5);
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 1;.8;
}

/* Story Section (Timeline Layout) */
.story-section {
    padding: calc(var(--spacing-unit) * 8) 0;
    background-color: var(--color-dark-grey);
}

.timeline {
    position: relative;
    margin: calc(var(--spacing-unit) * 5) 0;
    padding: var(--spacing-unit) 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-teal), var(--color-purple));
    transform: translateX(-50%);
    z-index: 0;
    box-shadow: 0 0 10px rgba(0, 230, 230, 0.5), 0 0 20px rgba(157, 0, 255, 0.5);
}

.timeline-item {
    position: relative;
    margin-bottom: calc(var(--spacing-unit) * 5);
    padding: calc(var(--spacing-unit) * 2);
    border-radius: var(--border-radius-card);
    background: rgba(0, 0, 0, 0.7);
    box-shadow: var(--box-shadow-glow);
    transition: transform var(--transition-speed);
    z-index: 1;
}

.timeline-item:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 0 20px rgba(0, 230, 230, 0.7), 0 0 40px rgba(157, 0, 255, 0.7);
}

.timeline-item:nth-child(odd) {
    left: 0;
    transform: translateX(-50%);
    text-align: right;
    width: 45%;
    margin-right: 55%;
}

.timeline-item:nth-child(even) {
    left: 50%;
    transform: translateX(5%);
    text-align: left;
    width: 45%;
    margin-left: 55%;
}

.timeline-dot {
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--color-teal), var(--color-purple));
    border: 3px solid var(--color-black);
    transform: translateY(-50%);
    box-shadow: 0 0 10px var(--color-teal), 0 0 20px var(--color-purple);
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -28px; /* Position dot on the timeline */
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -28px; /* Position dot on the timeline */
}

.timeline-content h3 {
    margin-bottom: var(--spacing-unit);
    font-size: 1.6rem;
    text-align: inherit;
}

.timeline-content p {
    font-size: 1rem;
    opacity: 1;.9;
}

.timeline-date {
    display: block;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    color: var(--color-teal);
    margin-top: var(--spacing-unit);
    font-weight: 600;
}

/* Products Section (Feature Highlights) */
.products-section {
    padding: calc(var(--spacing-unit) * 8) 0;
    background-color: var(--color-black);
}

.feature-blocks {
    margin-top: calc(var(--spacing-unit) * 4);
}

.feature-block {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 4);
    margin-bottom: calc(var(--spacing-unit) * 6);
    padding: calc(var(--spacing-unit) * 3);
    border-radius: var(--border-radius-card);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: var(--box-shadow-glow);
    transition: transform var(--transition-speed);
}

.feature-block:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 0 20px rgba(0, 230, 230, 0.7), 0 0 40px rgba(157, 0, 255, 0.7);
}

.feature-block.layout-left .feature-image { order: 1; }
.feature-block.layout-left .feature-content { order: 2; text-align: left;}

.feature-block.layout-right .feature-image { order: 2; }
.feature-block.layout-right .feature-content { order: 1; text-align: right;}

.feature-image {
    flex: 1;
    min-width: 300px;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
}

.feature-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 230, 230, 0.3), rgba(157, 0, 255, 0.3));
    opacity: 1;
    transition: opacity var(--transition-speed);
}
.feature-block:hover .feature-image::before {
    opacity: 1;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--border-radius-card);
    transition: transform var(--transition-speed);
}

.feature-block:hover .feature-image img {
    transform: scale(1.05);
}

.feature-content {
    flex: 1;
    padding: var(--spacing-unit) 0;
}

.feature-content h3 {
    font-size: 2.2rem;
    margin-bottom: var(--spacing-unit);
    text-align: inherit;
    background: linear-gradient(90deg, var(--color-purple), var(--color-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 1;.9;
}

/* Reviews Section (Social Proof) */
.reviews-section {
    padding: calc(var(--spacing-unit) * 8) 0;
    background-color: var(--color-dark-grey);
}

.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(var(--spacing-unit) * 3);
    margin-top: calc(var(--spacing-unit) * 4);
}

.social-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: var(--border-radius-card);
    padding: calc(var(--spacing-unit) * 2.5);
    box-shadow: var(--box-shadow-glow);
    transition: transform var(--transition-speed);
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 230, 230, 0.7), 0 0 40px rgba(157, 0, 255, 0.7);
}

.social-card .card-header {
    display: flex;
    align-items: center;
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.social-card .card-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: var(--spacing-unit);
    border: 2px solid var(--color-teal);
    box-shadow: 0 0 10px rgba(0, 230, 230, 0.5);
}

.social-card .user-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    text-align: left;
    color: var(--color-teal);
    text-shadow: none;
}

.social-card .user-info span {
    font-size: 0.9rem;
    color: var(--color-text-light);
    opacity: 1;.7;
}

.social-card .card-body h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-unit);
    color: var(--color-light-purple);
    text-align: left;
}

.social-card .card-body p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 1;.85;
}


/* Highlights Section (Highlights Grid) */
.highlights-section {
    padding: calc(var(--spacing-unit) * 8) 0;
    background-color: var(--color-black);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(var(--spacing-unit) * 3);
    margin-top: calc(var(--spacing-unit) * 4);
}

.highlight-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: var(--border-radius-card);
    padding: calc(var(--spacing-unit) * 2.5);
    text-align: center;
    box-shadow: var(--box-shadow-glow);
    transition: transform var(--transition-speed);
    overflow: hidden;
}

.highlight-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 25px rgba(0, 230, 230, 0.8), 0 0 50px rgba(157, 0, 255, 0.8);
}

.highlight-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius-card) var(--border-radius-card) 0 0;
    margin-bottom: calc(var(--spacing-unit) * 1.5);
    opacity: 1;.8;
    transition: opacity var(--transition-speed);
}
.highlight-card:hover img {
    opacity: 1;
}

.highlight-card h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-unit);
    text-align: center;
    color: var(--color-light-purple);
}

.highlight-card p {
    font-size: 1.05rem;
    opacity: 1;.85;
}

/* Gallery Section (Slideshow) */
.gallery-section {
    padding: calc(var(--spacing-unit) * 8) 0;
    background-color: var(--color-dark-grey);
}

.slideshow-container {
    max-width: var(--max-width-container);
    position: relative;
    margin: calc(var(--spacing-unit) * 4) auto;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    box-shadow: var(--box-shadow-glow);
    background-color: var(--color-black);
    padding: var(--spacing-unit);
}

.slide {
    display: none;
    position: relative;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 500px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: var(--border-radius-card);
    opacity: 1;.9;
    transition: opacity 1s ease-in-out;
}

.slide.active img {
    opacity: 1;
}

.slide-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--color-text-light);
    font-size: 1.5rem;
    padding: calc(var(--spacing-unit) * 1) calc(var(--spacing-unit) * 2);
    border-radius: var(--border-radius-card);
    font-family: var(--font-heading);
    box-shadow: 0 0 15px rgba(0, 230, 230, 0.6), 0 0 30px rgba(157, 0, 255, 0.6);
}

/* Prev/Next buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: calc(var(--spacing-unit) * 1.5);
    margin-top: calc(var(--spacing-unit) * -2);
    color: var(--color-text-light);
    font-weight: bold;
    font-size: 2rem;
    transition: 0.6s ease;
    border-radius: 0 5px 5px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: var(--box-shadow-glow);
}

.next {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 230, 230, 0.5);
    color: var(--color-black);
}

/* FAQ Section (Searchable FAQ - implemented as accordion) */
.faq-section {
    padding: calc(var(--spacing-unit) * 8) 0;
    background-color: var(--color-black);
}

.faq-accordion {
    max-width: 900px;
    margin: calc(var(--spacing-unit) * 4) auto;
}

.faq-item {
    background: rgba(0, 0, 0, 0.6);
    border-radius: var(--border-radius-card);
    margin-bottom: calc(var(--spacing-unit) * 1.5);
    overflow: hidden;
    box-shadow: var(--box-shadow-glow);
    transition: all var(--transition-speed);
}

.faq-item.active {
    box-shadow: 0 0 20px rgba(0, 230, 230, 0.7), 0 0 40px rgba(157, 0, 255, 0.7);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: calc(var(--spacing-unit) * 2.5);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-light-purple);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

.faq-question h3 {
    margin: 0;
    flex-grow: 1;
    text-align: left;
    color: var(--color-light-purple);
    text-shadow: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    color: var(--color-teal);
    transition: transform var(--transition-speed);
}

.faq-question[aria-expanded="true"]::after {
    content: '-';
    transform: rotate(45deg); /* Simple visual for 'open' */
    color: var(--color-purple);
}

.faq-answer {
    padding: 0 calc(var(--spacing-unit) * 2.5);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    opacity: 1;.9;
    font-size: 1.05rem;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    padding-bottom: calc(var(--spacing-unit) * 2.5);
    max-height: 200px; /* Adjust as needed, or calculate dynamically with JS */
    /* Dynamically calculated max-height in JS handles varying content */
}

.faq-answer p {
    margin-bottom: 0;
}

/* Location Section (Map Integration) */
.location-section {
    padding: calc(var(--spacing-unit) * 8) 0;
    background-color: var(--color-dark-grey);
}

.map-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    margin-top: calc(var(--spacing-unit) * 4);
    box-shadow: var(--box-shadow-glow);
    background-color: var(--color-black); /* Fallback */
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%) brightness(0.5); /* Desaturate and darken map image */
    opacity: 1;.7;
    transition: opacity var(--transition-speed), filter var(--transition-speed);
}

.map-container:hover img {
    filter: grayscale(50%) brightness(0.7);
    opacity: 1;.8;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.85);
    padding: calc(var(--spacing-unit) * 3);
    border-radius: var(--border-radius-card);
    text-align: center;
    color: var(--color-text-light);
    max-width: 450px;
    width: 90%;
    box-shadow: var(--box-shadow-glow);
    z-index: 10;
}

.map-overlay h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-unit);
    background: linear-gradient(90deg, var(--color-teal), var(--color-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none; /* Override default h3 text-shadow */
}

.map-overlay p {
    margin-bottom: calc(var(--spacing-unit) * 1.5);
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 1;.9;
}

.overlay-buttons {
    margin-top: calc(var(--spacing-unit) * 2);
}

/* Footer */
.footer {
    background-color: var(--color-black);
    padding: calc(var(--spacing-unit) * 4) 0 calc(var(--spacing-unit) * 2) 0;
    border-top: 1px solid rgba(157, 0, 255, 0.2);
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: calc(var(--spacing-unit) * 3);
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.footer-brand, .footer-nav, .footer-legal {
    flex: 1;
    min-width: 200px;
    text-align: left;
    padding: var(--spacing-unit);
}

.footer-brand .logo {
    margin-bottom: var(--spacing-unit);
    display: inline-block;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 1;.7;
}

.footer-nav h4, .footer-legal h4 {
    color: var(--color-teal);
    font-family: var(--font-heading);
    margin-bottom: calc(var(--spacing-unit) * 1.5);
    font-size: 1.3rem;
    text-align: left;
    text-shadow: none;
}

.footer-nav ul, .footer-legal ul {
    list-style: none;
}

.footer-nav ul li, .footer-legal ul li {
    margin-bottom: var(--spacing-unit);
}

.footer-nav ul li a, .footer-legal ul li a {
    color: var(--color-text-light);
    font-size: 0.95rem;
    opacity: 1;.8;
    transition: color var(--transition-speed), opacity var(--transition-speed);
}

.footer-nav ul li a:hover, .footer-legal ul li a:hover {
    color: var(--color-purple);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 230, 230, 0.1);
    padding-top: calc(var(--spacing-unit) * 1.5);
    margin-top: calc(var(--spacing-unit) * 2);
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 1;.6;
    margin: 0;
}


/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
    h3 { font-size: 1.6rem; }

    .hero-content { padding: calc(var(--spacing-unit) * 3); }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: 90%;
        margin-left: 5%;
        margin-right: 5%;
        transform: translateX(0);
        text-align: left;
    }
    .timeline-item:nth-child(odd) .timeline-dot { right: auto; left: -28px; }
    .timeline::before { left: 20px; transform: translateX(0); } /* Align timeline line to the left */
    .timeline-dot { left: 10px !important; } /* Make all dots align to the left line */
    .timeline-content { padding-left: calc(var(--spacing-unit) * 3); }

    .feature-block { flex-direction: column; text-align: center; }
    .feature-block.layout-right .feature-image { order: 1; }
    .feature-block.layout-right .feature-content { order: 2; text-align: center; }
    .feature-content h3, .feature-content p { text-align: center; }
    .feature-image { min-width: unset; width: 100%; }

    .social-proof-grid, .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.4rem; }
    p { font-size: 1rem; }
    .lead { font-size: 1.1rem; }
    .cta-button { padding: calc(var(--spacing-unit) * 1) calc(var(--spacing-unit) * 2); font-size: 1rem; }

    /* Mobile Navigation */
    .menu-toggle { display: flex; }
    .main-nav .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(15px);
        box-shadow: 0 10px 20px rgba(0, 230, 230, 0.2);
        padding: calc(var(--spacing-unit) * 2) 0;
        border-bottom-left-radius: var(--border-radius-card);
        border-bottom-right-radius: var(--border-radius-card);
        overflow: hidden;
    }

    .main-nav .nav-links.active {
        display: flex;
        animation: fadeInDown 0.5s ease-out;
    }

    @keyframes fadeInDown {
        from { opacity: 1; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .main-nav .nav-links li {
        text-align: center;
        margin-bottom: var(--spacing-unit);
    }
    .main-nav .nav-links a {
        font-size: 1.2rem;
        padding: var(--spacing-unit) 0;
        width: 100%;
        display: block;
    }
    .main-nav .nav-links a::after {
        width: 0; /* Remove underline on mobile */
    }
    .main-nav .nav-links a:hover::after {
        width: 50%; /* Reintroduce a smaller hover effect */
    }

    /* Hamburger Animation */
    .menu-toggle[aria-expanded="true"] .hamburger:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] .hamburger:nth-child(2) { opacity: 1; }
    .menu-toggle[aria-expanded="true"] .hamburger:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .glow-container { padding: calc(var(--spacing-unit) * 2); }

    .story-section { padding: calc(var(--spacing-unit) * 5) 0; }
    .timeline-item { width: 95%; margin-left: 2.5%; margin-bottom: calc(var(--spacing-unit) * 3); }
    .timeline::before { left: 15px; }
    .timeline-dot { left: 5px !important; }
    .timeline-content { padding-left: calc(var(--spacing-unit) * 2); }
    .timeline-content h3 { font-size: 1.4rem; }

    .products-section, .reviews-section, .highlights-section, .gallery-section, .faq-section, .location-section {
        padding: calc(var(--spacing-unit) * 5) 0;
    }

    .social-proof-grid, .highlights-grid {
        grid-template-columns: 1fr;
    }

    .slideshow-container { margin-top: calc(var(--spacing-unit) * 2); }
    .slide img { height: 300px; }
    .slide-text { font-size: 1.2rem; padding: calc(var(--spacing-unit) * 0.8) calc(var(--spacing-unit) * 1.5); }
    .prev, .next { font-size: 1.5rem; padding: calc(var(--spacing-unit) * 1); }

    .faq-question { font-size: 1.1rem; padding: calc(var(--spacing-unit) * 1.5); }
    .faq-question h3 { font-size: 1.2rem; }
    .faq-question::after { font-size: 1.5rem; }

    .map-container { height: 400px; }
    .map-overlay { max-width: 90%; padding: calc(var(--spacing-unit) * 2); }
    .map-overlay h3 { font-size: 1.5rem; }
    .map-overlay p { font-size: 0.95rem; }

    .footer-content { flex-direction: column; text-align: center; }
    .footer-brand, .footer-nav, .footer-legal { text-align: center; }
    .footer-nav h4, .footer-legal h4 { text-align: center; }
    .footer-brand .logo { margin-left: auto; margin-right: auto; }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.2rem; }
    .lead { font-size: 1rem; }
    .section-description { font-size: 0.95rem; }
    .cta-button { font-size: 0.9rem; padding: calc(var(--spacing-unit) * 0.8) calc(var(--spacing-unit) * 1.5); }

    .logo { font-size: 1.8rem; }

    .hero-content { padding: calc(var(--spacing-unit) * 2); }
    .hero-content h1 { font-size: 2.2rem; }

    .timeline-item { padding: calc(var(--spacing-unit) * 1.5); }
    .timeline-content h3 { font-size: 1.2rem; }
    .timeline-content p { font-size: 0.9rem; }
    .timeline-date { font-size: 0.8rem; }

    .feature-block { gap: calc(var(--spacing-unit) * 2); margin-bottom: calc(var(--spacing-unit) * 4); padding: calc(var(--spacing-unit) * 2); }
    .feature-content h3 { font-size: 1.8rem; }
    .feature-content p { font-size: 1rem; }

    .social-card { padding: calc(var(--spacing-unit) * 1.5); }
    .social-card .card-header img { width: 50px; height: 50px; }
    .social-card .user-info h4 { font-size: 1rem; }
    .social-card .user-info span { font-size: 0.8rem; }
    .social-card .card-body h3 { font-size: 1.3rem; }
    .social-card .card-body p { font-size: 0.9rem; }

    .highlight-card { padding: calc(var(--spacing-unit) * 1.5); }
    .highlight-card img { height: 150px; }
    .highlight-card h3 { font-size: 1.5rem; }
    .highlight-card p { font-size: 0.95rem; }

    .slide img { height: 250px; }
    .slide-text { font-size: 1rem; padding: calc(var(--spacing-unit) * 0.5) calc(var(--spacing-unit)); }

    .faq-question { font-size: 1rem; padding: calc(var(--spacing-unit)); }
    .faq-question h3 { font-size: 1rem; }
    .faq-question::after { font-size: 1.3rem; }
    .faq-answer { font-size: 0.9rem; padding: 0 calc(var(--spacing-unit)); }

    .map-container { height: 300px; }
    .map-overlay { padding: calc(var(--spacing-unit) * 1.5); }
    .map-overlay h3 { font-size: 1.3rem; }
    .map-overlay p { font-size: 0.85rem; }
}

/* Visible state helpers */
+ .animate-fade-in-up.visible,
+ .animate-fade-in-left.visible,
+ .animate-fade-in-right.visible,
+ .animate-bounce-y.visible,
+ .section-scroll-animate.visible,
+ .text-animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Universal Icon Fixes for Buttons */
button svg, .carousel-next svg, .carousel-prev svg, .slider-next svg, .slider-prev svg,
.next svg, .prev svg, .tab-button svg, .tab-btn svg {
    display: inline-block;
    vertical-align: middle;
    pointer-events: none;
    width: 1em;
    height: 1em;
    fill: currentColor;
}

button i, .carousel-next i, .carousel-prev i, .slider-next i, .slider-prev i,
.next i, .prev i, .tab-button i, .tab-btn i {
    display: inline-block;
    vertical-align: middle;
    pointer-events: none;
    font-style: normal;
}

button .icon, .carousel-next .icon, .carousel-prev .icon,
.slider-next .icon, .slider-prev .icon, .tab-button .icon {
    display: inline-block;
    vertical-align: middle;
    pointer-events: none;
}

/* Ensure carousel buttons are clickable even with icons */
.carousel-next, .carousel-prev, .slider-next, .slider-prev,
.next, .prev, .next-btn, .prev-btn {
    cursor: pointer;
    position: relative;
}

.carousel-next *, .carousel-prev *, .slider-next *, .slider-prev *,
.next *, .prev *, .next-btn *, .prev-btn * {
    pointer-events: none;
}

/* Tab button icon fixes */
.tab-button, .tab-btn, .tab {
    cursor: pointer;
    position: relative;
}

.tab-button *, .tab-btn *, .tab * {
    pointer-events: none;
}

/* Ensure icons don't block clicks */
button > svg, button > i, button > .icon,
.carousel-next > svg, .carousel-prev > svg,
.tab-button > svg, .tab-button > i {
    pointer-events: none !important;
}

/* Safe visibility overrides (auto-added) */
:root, html, body, main, header, footer, section, .container, .content {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Accessibility focus outlines */
:focus{outline:2px solid #5ac8fa;outline-offset:2px;}
:focus:not(:focus-visible){outline:none;}
