/* Salon Comfort Pro - Professional Beauty Salon Furniture Website Styles */

/* 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: #2d3748;
    background: #fafafa;
    overflow-x: hidden;
}

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

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

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

/* Color Palette - Coral & Teal */
:root {
    --primary-coral: #ff6b6b;
    --secondary-coral: #ff8e8e;
    --primary-teal: #4ecdc4;
    --secondary-teal: #6ee7de;
    --accent-rose: #ff9999;
    --dark-slate: #2d3748;
    --light-gray: #f7fafc;
    --medium-gray: #a0aec0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-coral), var(--secondary-coral));
    color: #fff;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
}

.btn-secondary {
    background: rgba(78, 205, 196, 0.1);
    color: var(--primary-teal);
    border: 2px solid rgba(78, 205, 196, 0.3);
}

.btn-secondary:hover {
    background: rgba(78, 205, 196, 0.2);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(78, 205, 196, 0.2);
    transition: all 0.3s ease;
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(78, 205, 196, 0.2);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-placeholder {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-coral);
}

.logo-placeholder i {
    font-size: 2rem;
    color: var(--primary-teal);
}

/* Image-based logos */
.logo-placeholder img {
    height: 60px;
    width: auto;
    display: block;
}

.footer-logo .logo-placeholder img { height: 60px; }

/* Hide brand text next to logo in nav and footer */
.logo-placeholder span { display: none; }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-slate);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-slate);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fafafa 0%, #f0f8ff 50%, #fff5f5 100%);
    padding-top: calc(5rem + 10px);
}

.hero-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234ecdc4' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: float 20s ease-in-out infinite;
}

.hero-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-coral), var(--secondary-coral));
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.element-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(78, 205, 196, 0.2);
    color: var(--primary-teal);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(78, 205, 196, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--dark-slate);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-coral), var(--primary-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-coral), var(--secondary-coral));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-slate);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chair-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.showcase-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.hero-chair {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(78, 205, 196, 0.3);
    transition: transform 0.3s ease;
}

.hero-chair:hover {
    transform: scale(1.05);
}

.feature-highlights {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.highlight {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-slate);
    border: 2px solid var(--primary-coral);
}

.highlight-pulse {
    width: 12px;
    height: 12px;
    background: var(--primary-coral);
    border-radius: 50%;
    animation: ping 2s ease-in-out infinite;
}

@keyframes ping {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.highlight-1 {
    top: 15%;
    left: -10%;
}

.highlight-2 {
    top: 45%;
    right: -15%;
}

.highlight-3 {
    bottom: 20%;
    left: -5%;
}

/* Video Showcase Section */
.video-showcase-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
}

.video-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 3rem;
    align-items: stretch;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 107, 0.2);
    color: var(--primary-coral);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.video-content {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 12px 35px rgba(78, 205, 196, 0.12);
    backdrop-filter: blur(6px);
}

.video-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-slate);
    margin-bottom: 1.5rem;
}

.video-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.video-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.video-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #4a5568;
    font-weight: 500;
    padding: 0.75rem;
    background: rgba(78, 205, 196, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(78, 205, 196, 0.1);
}

.video-feature i {
    color: var(--primary-teal);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.video-player {
    position: relative;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(78, 205, 196, 0.2);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-overlay {
    opacity: 0.7;
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-coral), var(--secondary-coral));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
}

/* Features Hexagon Section */
.features-hexagon-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #fff5f5 100%);
    position: relative;
}

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

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-slate);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

.hexagon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-hexagon {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    border: 1px solid rgba(78, 205, 196, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-hexagon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.1), transparent);
    transition: left 0.6s;
}

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

.feature-hexagon:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(78, 205, 196, 0.2);
    border-color: rgba(78, 205, 196, 0.4);
}

.hexagon-shape {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.hexagon-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-coral), var(--primary-teal));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    transform: rotate(45deg);
}

.hexagon-inner i {
    transform: rotate(-45deg);
}

.feature-hexagon:hover .hexagon-inner {
    transform: rotate(45deg) scale(1.1);
}

.feature-hexagon h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-slate);
    margin-bottom: 1rem;
}

.feature-hexagon p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

/* Gallery Carousel Section */
.gallery-carousel-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
}

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

.gallery-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-slate);
    margin-bottom: 1rem;
}

.gallery-header p {
    font-size: 1.1rem;
    color: var(--medium-gray);
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(78, 205, 196, 0.2);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    padding: 2rem;
}

.slide-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.slide-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--primary-coral);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(78, 205, 196, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-teal);
    transform: scale(1.2);
}

/* Specifications Wave Section */
.specifications-wave-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #fff5f5 100%);
    position: relative;
}

.wave-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
}

.wave-background svg {
    width: 100%;
    height: 100%;
    fill: var(--primary-teal);
    opacity: 0.1;
}

.specs-content {
    position: relative;
    z-index: 2;
}

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

.specs-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-slate);
    margin-bottom: 1rem;
}

.specs-header p {
    font-size: 1.1rem;
    color: var(--medium-gray);
}

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

.spec-category {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(78, 205, 196, 0.2);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.1);
    transition: all 0.3s ease;
}

.spec-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(78, 205, 196, 0.15);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(78, 205, 196, 0.2);
}

.category-header i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-coral), var(--primary-teal));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
}

.category-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-slate);
    margin: 0;
}

.spec-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(78, 205, 196, 0.1);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: var(--dark-slate);
}

.spec-value {
    color: var(--primary-coral);
    font-weight: 600;
    text-align: right;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.cta-geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.geometric-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-coral), var(--primary-teal));
    opacity: 0.05;
    animation: float 12s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 4s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 30%;
    animation-delay: 8s;
}

.cta-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark-slate);
}

.cta-text p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-row {
    display: flex;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #4a5568;
    font-weight: 500;
    flex: 1;
}

.benefit-item i {
    color: var(--primary-teal);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

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

.price-showcase {
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.price-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-coral);
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: var(--primary-teal);
    font-weight: 600;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.guarantee-badge i {
    color: var(--primary-teal);
}

/* Footer */
footer {
    background: var(--dark-slate);
    color: #cbd5e0;
    padding: 4rem 0 2rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #f7fafc;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-logo .logo-placeholder {
    color: var(--primary-coral);
    margin-bottom: 1rem;
}

.footer-logo .logo-placeholder i {
    color: var(--primary-teal);
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

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

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-coral);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(78, 205, 196, 0.1);
    color: var(--primary-teal);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(78, 205, 196, 0.2);
    color: #a0aec0;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .video-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 4px 20px rgba(78, 205, 196, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    /* Video showcase tweaks for mobile */
    .video-features {
        grid-template-columns: 1fr;
    }
    
    .hexagon-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-text h2 {
        font-size: 2.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .feature-hexagon {
        padding: 1.5rem;
    }
    
    .hexagon-inner {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .cta-text h2 {
        font-size: 1.8rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

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

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

/* Shop Page Specific Styles */
.product-hero-section {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #fafafa 0%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.product-info h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--dark-slate);
}

.product-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.product-highlights {
    margin-bottom: 3rem;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.highlight-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(78, 205, 196, 0.2);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.15);
}

.highlight-card i {
    font-size: 1.5rem;
    color: var(--primary-coral);
    width: 40px;
    text-align: center;
}

.highlight-card div h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--dark-slate);
}

.highlight-card div p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin: 0;
}

.product-pricing {
    background: rgba(78, 205, 196, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(78, 205, 196, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
}

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

.pricing-header .price-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 0.5rem;
}

.pricing-header .price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-coral);
    margin-bottom: 0.5rem;
}

.pricing-header .price-note {
    font-size: 0.9rem;
    color: var(--primary-teal);
    font-weight: 600;
}

.product-gallery {
    position: relative;
}

.main-product-view {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(78, 205, 196, 0.3);
    margin-bottom: 1.5rem;
}

.main-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

.image-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge {
    background: rgba(255, 107, 107, 0.9);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.badge.professional {
    background: rgba(78, 205, 196, 0.9);
}

.thumbnail-gallery {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thumbnail {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-coral);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Page Sections - Shared Page Hero */
.page-hero {
    padding: 7rem 0 3rem;
    background: linear-gradient(135deg, #fafafa 0%, #f0f8ff 100%);
    border-bottom: 1px solid rgba(78, 205, 196, 0.2);
}

.page-hero h1 {
    font-size: 2.5rem;
    color: var(--dark-slate);
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--medium-gray);
}

/* About Page */
.about-content-section { 
    padding: 4rem 0; 
    background: #fff; 
}

.about-grid { 
    display: grid; 
    grid-template-columns: 1.2fr 0.8fr; 
    gap: 3rem; 
    align-items: start; 
}

.about-text h2 { 
    font-size: 2rem; 
    color: var(--dark-slate); 
    margin-bottom: 1rem; 
}

.about-text h3 { 
    font-size: 1.25rem; 
    color: var(--dark-slate); 
    margin-top: 1.5rem; 
}

.image-stack { 
    position: relative; 
}

.stack-image { 
    width: 100%; 
    border-radius: 14px; 
    box-shadow: 0 12px 35px rgba(78, 205, 196, 0.2); 
}

.stack-image.secondary { 
    position: absolute; 
    right: -10%; 
    bottom: -10%; 
    width: 60%; 
    border: 6px solid #fff; 
}

.stats-overlay { 
    display: grid; 
    grid-template-columns: repeat(3,1fr); 
    gap: 1rem; 
    margin-top: 1.25rem; 
}

.stat-item { 
    background: rgba(255, 255, 255, 0.9); 
    border: 1px solid rgba(78, 205, 196, 0.2); 
    border-radius: 12px; 
    padding: 0.75rem; 
    text-align: center; 
}

.stat-number { 
    color: var(--primary-coral); 
}

.values-section { 
    padding: 4rem 0; 
    background: linear-gradient(135deg, #fafafa 0%, #fff5f5 100%); 
}

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

.value-card { 
    background: rgba(255, 255, 255, 0.9); 
    border: 1px solid rgba(78, 205, 196, 0.2); 
    border-radius: 16px; 
    padding: 1.5rem; 
    box-shadow: 0 8px 24px rgba(78, 205, 196, 0.1); 
    transition: transform 0.2s ease, box-shadow 0.2s ease; 
}

.value-card:hover { 
    transform: translateY(-6px); 
    box-shadow: 0 14px 36px rgba(78, 205, 196, 0.2); 
}

.value-icon { 
    width: 56px; 
    height: 56px; 
    border-radius: 14px; 
    background: linear-gradient(135deg, var(--primary-coral), var(--primary-teal)); 
    color: #fff; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.5rem; 
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3); 
    margin-bottom: 1rem; 
}

/* Contact Page */
.contact-content-section { 
    padding: 4rem 0; 
    background: #fff; 
}

.contact-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 2rem; 
    align-items: start; 
}

.contact-info .info-header h2 { 
    font-size: 1.75rem; 
}

.contact-methods { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 1rem; 
    margin: 1rem 0; 
}

.contact-method { 
    display: flex; 
    gap: 1rem; 
    background: rgba(255, 255, 255, 0.9); 
    border: 1px solid rgba(78, 205, 196, 0.2); 
    border-radius: 14px; 
    padding: 1rem; 
    align-items: center; 
}

.method-icon { 
    width: 44px; 
    height: 44px; 
    border-radius: 10px; 
    background: rgba(78, 205, 196, 0.2); 
    color: var(--primary-teal); 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
}

.support-features .feature-item { 
    background: rgba(255, 255, 255, 0.9); 
    border: 1px solid rgba(78, 205, 196, 0.2); 
    border-radius: 12px; 
    padding: 0.75rem 1rem; 
}

.contact-form-section { 
    background: rgba(255, 255, 255, 0.9); 
    border: 1px solid rgba(78, 205, 196, 0.2); 
    border-radius: 16px; 
    padding: 1.5rem; 
    box-shadow: 0 10px 28px rgba(78, 205, 196, 0.1); 
}

.contact-form .form-row { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 1rem; 
}

.contact-form .form-group { 
    display: flex; 
    flex-direction: column; 
    gap: 0.5rem; 
    margin-bottom: 1rem; 
}

.contact-form label { 
    font-weight: 600; 
    color: var(--dark-slate); 
}

.contact-form input, 
.contact-form select, 
.contact-form textarea { 
    padding: 0.875rem 1rem; 
    border: 1px solid rgba(78, 205, 196, 0.2); 
    border-radius: 10px; 
    font: inherit; 
    color: var(--dark-slate); 
    background: rgba(255, 255, 255, 0.9); 
}

.checkbox-group .checkbox-label { 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    cursor: pointer; 
}

.checkbox-group input[type="checkbox"] { 
    width: 18px; 
    height: 18px; 
}

/* Legal Pages (Privacy, Cookies, Terms) */
.legal-page {
    padding: 7rem 0 4rem; /* ensure title clears fixed navbar */
    background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
}

.legal-header {
    margin-bottom: 1.5rem;
}

.legal-header h1 {
    font-size: 2.4rem;
    color: var(--dark-slate);
    margin-bottom: 0.5rem;
}

.legal-header .last-updated {
    color: var(--medium-gray);
}

.legal-content {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 28px rgba(78, 205, 196, 0.12);
}

.legal-section { margin-bottom: 1.75rem; }
.legal-section h2 { margin-bottom: 0.75rem; }

/* Blog and other pages follow similar pattern with coral/teal theme */

/* Blog Page */
.blog-content-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
}

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

.blog-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(78, 205, 196, 0.12);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(78, 205, 196, 0.18);
}

.blog-card.featured {
    border-color: rgba(255, 107, 107, 0.4);
}

.blog-image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 107, 107, 0.9);
    color: #fff;
    border-radius: 999px;
    padding: 0.35rem 0.65rem;
    font-size: 0.8rem;
    font-weight: 700;
}

.blog-content {
    padding: 1.25rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.blog-content h2 {
    font-size: 1.25rem;
    margin: 0.25rem 0 0.25rem;
}

.blog-content h2 a {
    color: var(--dark-slate);
    text-decoration: none;
}

.blog-content h2 a:hover {
    color: var(--primary-coral);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.25rem;
}

.read-more:hover {
    color: var(--primary-coral);
}

/* Responsive overrides for subpages */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .product-hero-grid { grid-template-columns: 1fr; text-align: center; }
    .stack-image.secondary { position: static; width: 100%; border: none; margin-top: 1rem; }
}

@media (max-width: 768px) {
    .contact-form .form-row { grid-template-columns: 1fr; }
    .highlight-grid { grid-template-columns: 1fr; }
    .product-info h1 { font-size: 2.5rem; }
    /* About page mobile image size reductions */
    .image-stack { max-width: 360px; margin: 0 auto; }
    .stack-image { width: 85%; margin: 0 auto; }
    .stack-image.secondary { width: 60%; }
    /* Hide About stats on mobile */
    .stats-overlay { display: none; }
    /* Completely hide the About images column on mobile */
    .about-visual { display: none; }
}

@media (max-width: 480px) {
    .product-info h1 { font-size: 2rem; }
    /* Further reduce About images on small phones */
    .image-stack { max-width: 300px; }
    .stack-image { width: 75%; }
    .stack-image.secondary { width: 55%; }
}