/* KeraCraft Website Styles */
/* Black theme with Algerian headings and Times New Roman body */

/* Import Algerian font from system or fallback */
@font-face {
    font-family: 'Algerian';
    src: local('Algerian');
    font-display: swap;
}

/* CSS Variables for consistent theming */
:root {
    /* Brand Colors from presentation */
    --forest-green: #2D5A27;
    --warm-cream: #D4BC8A;
    --rich-brown: #8B6914;
    --deep-black: #1A1A1A;
    --dark-gray: #1C1C1C;
    --medium-gray: #3A3530;
    --light-cream: #F5EDD6;
    --accent-gold: #EED9A8;
    
    /* Fonts */
    --font-heading: 'Algerian', 'Times New Roman', serif;
    --font-body: 'Times New Roman', Times, serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max-width: 1200px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--deep-black);
    color: var(--light-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--warm-cream);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
    font-family: var(--font-body);
    color: var(--light-cream);
    opacity: 0.9;
}

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

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--warm-cream);
    border: 1px solid var(--warm-cream);
    padding: 8px 20px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.section-title {
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 188, 138, 0.1);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--warm-cream);
}

.logo-icon {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--light-cream);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--warm-cream);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 2px;
    background: var(--warm-cream);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 80px;
    background: 
        radial-gradient(ellipse at top, rgba(45, 90, 39, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(212, 188, 138, 0.1) 0%, transparent 50%),
        var(--deep-black);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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='%23D4BC8A' fill-opacity='0.03'%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");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--forest-green);
    background: rgba(45, 90, 39, 0.2);
    border: 1px solid var(--forest-green);
    padding: 10px 25px;
    margin-bottom: 30px;
    border-radius: 30px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--accent-gold) 50%, var(--warm-cream) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(212, 188, 138, 0.3);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 60px rgba(212, 188, 138, 0.3); }
    to { text-shadow: 0 0 80px rgba(212, 188, 138, 0.5), 0 0 100px rgba(45, 90, 39, 0.3); }
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--accent-gold);
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.8;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 15px 35px;
    border-radius: 30px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--forest-green) 0%, #3d7a35 100%);
    color: var(--light-cream);
    border-color: var(--forest-green);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(45, 90, 39, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--warm-cream);
    border-color: var(--warm-cream);
}

.btn-secondary:hover {
    background: var(--warm-cream);
    color: var(--deep-black);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--warm-cream);
    border-color: var(--warm-cream);
}

.btn-outline:hover {
    background: var(--warm-cream);
    color: var(--deep-black);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--warm-cream);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0.6;
}

.hero-scroll span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--warm-cream);
    border-bottom: 2px solid var(--warm-cream);
    transform: rotate(45deg);
    margin: 0 auto;
    animation: bounce 2s infinite;
}

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

/* About Section */
.about {
    padding: var(--section-padding) 0;
    background: var(--dark-gray);
}

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

.about-card {
    background: rgba(58, 53, 48, 0.5);
    border: 1px solid rgba(212, 188, 138, 0.2);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition-smooth);
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--warm-cream);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-card h3 {
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.about-card p {
    opacity: 0.8;
    line-height: 1.7;
}

/* Problems Section */
.problems {
    padding: var(--section-padding) 0;
    background: var(--deep-black);
}

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

.problem-card {
    background: linear-gradient(135deg, rgba(58, 53, 48, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
    border-left: 4px solid var(--rich-brown);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.problem-card:hover {
    transform: translateX(10px);
    border-left-color: var(--warm-cream);
}

.problem-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--rich-brown);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 30px;
}

.problem-card h3 {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.problem-card p {
    opacity: 0.8;
    line-height: 1.7;
}

/* Products Section */
.products {
    padding: var(--section-padding) 0;
    background: var(--dark-gray);
}

.product-category {
    margin-bottom: 80px;
}

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

.category-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--warm-cream);
    position: relative;
    padding-bottom: 20px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--warm-cream), transparent);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.product-card {
    background: rgba(58, 53, 48, 0.5);
    border: 1px solid rgba(212, 188, 138, 0.15);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--warm-cream);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(45, 90, 39, 0.3) 0%, rgba(212, 188, 138, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-placeholder {
    font-size: 4rem;
    opacity: 0.8;
}

.product-info {
    padding: 25px;
}

.product-info h4 {
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.product-info p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--forest-green);
    background: rgba(45, 90, 39, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid var(--forest-green);
}

/* Benefits Section */
.benefits {
    padding: var(--section-padding) 0;
    background: var(--deep-black);
}

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

.benefit-card {
    background: linear-gradient(135deg, rgba(58, 53, 48, 0.6) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 1px solid rgba(212, 188, 138, 0.1);
    padding: 40px;
    text-align: center;
    border-radius: 15px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--forest-green), var(--warm-cream));
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 188, 138, 0.3);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.benefit-card p {
    opacity: 0.8;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--dark-gray);
}

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

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    background: rgba(58, 53, 48, 0.5);
    border: 1px solid rgba(212, 188, 138, 0.2);
    border-radius: 15px;
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    opacity: 0.9;
    position: relative;
    padding-left: 30px;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--warm-cream);
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--forest-green), var(--rich-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--light-cream);
}

.author-info h4 {
    color: var(--accent-gold);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info span {
    font-size: 0.9rem;
    opacity: 0.7;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--warm-cream);
    background: transparent;
    color: var(--warm-cream);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--warm-cream);
    color: var(--deep-black);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 188, 138, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dot.active {
    background: var(--warm-cream);
}

/* Pricing Section */
.pricing {
    padding: var(--section-padding) 0;
    background: var(--deep-black);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: start;
}

.pricing-card {
    background: rgba(58, 53, 48, 0.5);
    border: 1px solid rgba(212, 188, 138, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--warm-cream);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(45, 90, 39, 0.3) 0%, rgba(58, 53, 48, 0.8) 100%);
    border-color: var(--forest-green);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rich-brown);
    color: var(--light-cream);
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-header h3 {
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.pricing-price {
    margin-bottom: 10px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    vertical-align: top;
    color: var(--warm-cream);
}

.pricing-price .amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--warm-cream);
}

.pricing-price .period {
    font-size: 1rem;
    opacity: 0.7;
}

.pricing-header p {
    opacity: 0.7;
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 188, 138, 0.1);
    font-size: 0.95rem;
    opacity: 0.9;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Process Section */
.process {
    padding: var(--section-padding) 0;
    background: var(--dark-gray);
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--forest-green), var(--rich-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--light-cream);
    margin: 0 auto 20px;
}

.step-content h3 {
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.step-content p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}

.process-arrow {
    font-size: 2rem;
    color: var(--warm-cream);
    opacity: 0.5;
    align-self: center;
}

/* CTA Section */
.cta {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, rgba(45, 90, 39, 0.2) 0%, rgba(139, 105, 20, 0.1) 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--deep-black);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(212, 188, 138, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--warm-cream);
    margin-bottom: 20px;
}

.footer-brand p {
    opacity: 0.7;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 188, 138, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--warm-cream);
    color: var(--deep-black);
    border-color: var(--warm-cream);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--accent-gold);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--warm-cream);
}

.footer-contact p {
    margin-bottom: 12px;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 188, 138, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.6;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 40px 0;
        gap: 25px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-item {
        flex: 1;
        min-width: 100px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-grid,
    .problems-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .carousel-controls {
        gap: 15px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--deep-black);
}

::-webkit-scrollbar-thumb {
    background: var(--warm-cream);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Selection Styling */
::selection {
    background: var(--forest-green);
    color: var(--light-cream);
}