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

:root {
    --primary-color: #8b5cf6;
    --primary-dark: #7c3aed;
    --primary-light: #a78bfa;
    --gold-accent: #ec4899;
    --gold-light: #f472b6;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #666666;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --bg-cream: #fefcf9;
    --border-color: #e8e8e8;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(139, 92, 246, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--bg-white);
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

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

.nav-button {
    padding: 0.75rem 1.75rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
}

.nav-button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

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

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    background-image: url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 100px;
}

.hero-content {
    max-width: 700px;
    color: white;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.badge-divider {
    color: var(--gold-accent);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: white;
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.cta-primary {
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
}

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.cta-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-features {
    display: flex;
    gap: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-feature {
    flex: 1;
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold-accent);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.feature-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 300;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-scroll svg {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

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

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-title {
    font-size: 4rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 300;
}

.title-underline {
    position: relative;
    display: inline-block;
}

.title-underline::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    opacity: 0.3;
}

.accent-text {
    color: var(--primary-color);
    font-weight: 400;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* Products Section */
.products {
    background: var(--bg-white);
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.product-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.product-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--bg-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-item:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-info h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 400;
    font-family: 'Cormorant Garamond', serif;
}

.product-info p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    flex: 1;
}

.product-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.product-link:hover {
    gap: 1rem;
    color: var(--primary-dark);
}

/* About Section */
.about {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.about-diagonal {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--bg-cream);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-quote {
    margin: 2rem 0;
    color: var(--primary-color);
    opacity: 0.3;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    font-weight: 300;
}

.about-intro {
    font-size: 1.25rem;
    color: var(--text-dark) !important;
    font-weight: 400;
    line-height: 1.8;
}

.about-highlight {
    margin: 2.5rem 0;
    padding: 2rem;
    border-left: 3px solid var(--primary-color);
    background: var(--bg-cream);
}

.about-philosophy {
    font-style: italic;
    color: var(--text-dark) !important;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.8;
    font-family: 'Cormorant Garamond', serif;
}

.about-services {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.service-tag {
    padding: 0.6rem 1.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-medium);
    transition: all 0.3s ease;
}

.service-tag:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.about-visual {
    position: relative;
}

.about-image-main {
    height: 600px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.about-image-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.03) 10px, rgba(255,255,255,0.03) 20px);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.about-image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--gold-accent);
    opacity: 0.1;
    z-index: -1;
}

/* Contact Section */
.contact {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.contact-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(139, 92, 246, 0.02) 20px, rgba(139, 92, 246, 0.02) 40px);
    opacity: 0.5;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.contact-info-panel {
    padding-right: 2rem;
}

.contact-intro h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 400;
    font-family: 'Cormorant Garamond', serif;
}

.contact-intro p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 300;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.detail-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-cream);
    border: 1px solid var(--border-color);
    flex-shrink: 0;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-detail-item:hover .detail-icon {
    background: var(--primary-color);
    color: white;
    transform: rotate(5deg);
}

.detail-content {
    flex: 1;
}

.detail-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.detail-value {
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.detail-value:hover {
    color: var(--primary-color);
}

.contact-form-panel {
    background: var(--bg-cream);
    padding: 3rem;
    border: 1px solid var(--border-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-medium);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0.5rem;
}

.submit-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.submit-button svg {
    transition: transform 0.3s ease;
}

.submit-button:hover svg {
    transform: translateX(5px);
}

.map-wrapper {
    position: relative;
    z-index: 1;
}

.map-container {
    border-radius: 0;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    display: block;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    pointer-events: none;
    z-index: 0;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    line-height: 1.8;
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--gold-accent);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
}

.footer-column a:hover {
    color: var(--gold-accent);
    transform: translateX(5px);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

.footer-social-section {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
    color: var(--gold-accent);
    border-color: var(--gold-accent);
    transform: translateY(-2px) scale(1.05);
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0 0;
    margin: 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    gap: 1rem;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.footer-bottom-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 2rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
}

.footer-credit {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    font-weight: 300;
    margin: 0.5rem 0 0;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.credit-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    position: relative;
    z-index: 11;
    display: inline-block;
    padding: 0.5rem 0.75rem;
    margin: -0.5rem -0.75rem;
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.3);
    touch-action: manipulation;
    cursor: pointer;
    pointer-events: auto;
    min-height: 44px;
    line-height: 44px;
    vertical-align: middle;
}

.credit-link:hover,
.credit-link:active,
.credit-link:focus {
    color: var(--gold-accent);
    text-decoration: underline;
    outline: none;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    pointer-events: none; /* Container doesn't block clicks */
}

.whatsapp-float > * {
    pointer-events: auto; /* But children can receive clicks */
}

.whatsapp-bubble {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    bottom: 70px;
    right: 0;
    max-width: 250px;
    pointer-events: none;
    z-index: 998;
    white-space: nowrap;
    width: max-content;
    display: none; /* Completely remove from layout when hidden */
}

.whatsapp-bubble.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: none; /* Never block clicks - bubble is informational only */
    display: block; /* Show in layout when visible */
}

.bubble-arrow {
    position: absolute;
    bottom: -8px;
    right: 30px;
    width: 16px;
    height: 16px;
    background: var(--bg-white);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    transform: rotate(45deg);
}

.bubble-content {
    position: relative;
    z-index: 1;
}

.bubble-text {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: block;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: rgba(37, 211, 102, 0.3);
    touch-action: manipulation;
    cursor: pointer;
    z-index: 1000;
    pointer-events: auto;
}

.whatsapp-button svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.whatsapp-button:hover::before {
    width: 300px;
    height: 300px;
}

.whatsapp-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-button:active {
    transform: translateY(-1px) scale(1.02);
}

.whatsapp-button svg {
    position: relative;
    z-index: 1;
    width: 28px;
    height: 28px;
}

/* Pulse animation for WhatsApp button */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

.whatsapp-button {
    animation: pulse 2s infinite;
    z-index: 999;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .products-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-feature.large {
        grid-column: span 1;
    }
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 3rem 0;
        gap: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }

    .about-content,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-diagonal {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-panel {
        padding-right: 0;
    }
    
    .contact-form-panel {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        margin: 0 20px;
    }
    
    .footer-bottom-main {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .about-image-main {
        height: 400px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 1rem 20px;
    }
    
    .nav-button {
        padding: 0.625rem 1.25rem;
        font-size: 0.8rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo-text {
        height: 32px;
        max-width: 130px;
    }

    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-image {
        background-attachment: scroll;
    }

    .section-title {
        font-size: 2rem;
    }
    
    section {
        padding: 80px 0;
    }
    
    .product-image {
        height: 220px;
    }
    
    .product-info {
        padding: 1.5rem;
    }
    
    .about-image-main {
        height: 300px;
    }
    
    .contact-form-panel {
        padding: 1.5rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-button {
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-button svg {
        width: 24px;
        height: 24px;
    }
    
    .whatsapp-bubble {
        max-width: 220px;
        padding: 0.875rem 1rem;
        bottom: 66px;
    }
    
    .bubble-text {
        font-size: 0.85rem;
    }
}

/* Extra Small Mobile Devices - 460px and below */
@media (max-width: 460px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header/Navbar fixes */
    .navbar {
        overflow: visible;
    }
    
    .nav-container {
        padding: 0.75rem 15px;
        flex-wrap: nowrap;
        gap: 0.75rem;
        min-height: 60px;
    }
    
    .logo-link {
        gap: 0.5rem;
        flex: 0 1 auto;
        min-width: 0;
        max-width: calc(100% - 140px);
    }
    
    .logo-img {
        height: 32px;
        width: 32px;
        min-width: 32px;
        object-fit: contain;
        flex-shrink: 0;
    }
    
    .logo-text {
        height: 26px;
        width: auto;
        max-width: 90px;
        object-fit: contain;
        flex-shrink: 1;
    }
    
    .nav-cta {
        display: flex;
        flex-shrink: 0;
    }
    
    .nav-button {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }
    
    .hamburger {
        flex-shrink: 0;
        margin-left: 0.5rem;
    }
    
    .nav-menu {
        top: 60px;
        padding: 2rem 0;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    .nav-link {
        font-size: 0.95rem;
        padding: 0.5rem 0;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .hero-features {
        gap: 1.5rem;
        padding-top: 2rem;
    }
    
    .feature-number {
        font-size: 2rem;
    }
    
    .feature-label {
        font-size: 0.75rem;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    /* Products */
    .products-grid {
        gap: 1.5rem;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 1.25rem;
    }
    
    .product-info h3 {
        font-size: 1.25rem;
    }
    
    .product-info p {
        font-size: 0.875rem;
    }
    
    /* About Section */
    .about-text {
        font-size: 1rem;
    }
    
    .about-intro {
        font-size: 1.1rem;
    }
    
    .about-philosophy {
        font-size: 1rem;
    }
    
    .about-image-main {
        height: 250px;
    }
    
    .about-highlight {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    /* Contact Section */
    .contact-layout {
        gap: 3rem;
    }
    
    .contact-intro h3 {
        font-size: 1.5rem;
    }
    
    .contact-details-list {
        gap: 2rem;
    }
    
    .detail-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    
    .detail-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .detail-value {
        font-size: 1rem;
    }
    
    .contact-form-panel {
        padding: 1.25rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.9rem;
    }
    
    .submit-button {
        padding: 1rem 2rem;
        font-size: 0.85rem;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-logo-img {
        height: 70px;
    }
    
    .footer-logo-text {
        height: 70px;
    }
    
    .footer-description {
        font-size: 0.875rem;
    }
    
    .footer-column h4 {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .footer-column a,
    .footer-column p {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        margin: 0 15px;
        padding: 1.5rem 0 0;
        font-size: 0.8rem;
    }
    
    /* WhatsApp Button */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-button svg {
        width: 22px;
        height: 22px;
    }
    
    .whatsapp-bubble {
        max-width: 200px;
        padding: 0.75rem 0.875rem;
        bottom: 60px;
    }
    
    .bubble-text {
        font-size: 0.8rem;
    }
    
    .bubble-arrow {
        right: 25px;
    }
    
    /* Ensure credit link is clickable on mobile */
    .credit-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1rem;
        margin: -0.75rem -1rem;
        z-index: 100;
        position: relative;
    }
    
    .footer-credit {
        z-index: 100;
        position: relative;
    }
    
    .footer-bottom {
        z-index: 100;
    }
    
    /* Prevent horizontal overflow */
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    body {
        max-width: 100vw;
    }
    
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    /* Ensure text wraps properly */
    h1, h2, h3, h4, h5, h6, p, span, a {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Fix any potential overflow in sections */
    section {
        overflow-x: hidden;
    }
    
    .container {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Hero scroll indicator */
    .hero-scroll {
        font-size: 0.7rem;
        bottom: 30px;
    }
    
    .hero-scroll svg {
        width: 14px;
        height: 20px;
    }
}
