:root {
    --primary-color: #f9af1b; /* Golden Yellow from logo */
    --secondary-color: #233d57; /* Navy Blue from logo */
    --accent-color: #ff4d00;
    --dark-bg: #0a0a0c;
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: #a0a0a5;
    --font-heading: 'League Spartan', sans-serif;
    --font-title: 'League Spartan', sans-serif;
    --font-body: 'League Spartan', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: bold;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 80px; /* Space for fixed header */
    cursor: none; /* Hide default cursor */
}

/* Custom Cursor Styles */
#custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%; /* Solid circle base */
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out, width 0.3s, height 0.3s, background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(249, 175, 27, 0.6), 0 0 40px rgba(249, 175, 27, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

#custom-cursor svg {
    width: 0%; /* Hidden by default, shown on hover */
    height: 0%;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

#custom-cursor.active {
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border-color: var(--primary-color);
}

#custom-cursor.active svg {
    width: 60%;
    height: 60%;
}

.click-ripple {
    position: fixed;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    animation: ripple-effect 0.6s ease-out forwards;
}

@keyframes ripple-effect {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
        border-width: 4px;
    }
    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
        border-width: 1px;
    }
}

/* Ensure links and buttons have cursor: none too */
a, button, input, textarea, .btn, .menu-toggle, .mute-btn, .side-scroll-nav div {
    cursor: none !important;
}

/* Typography */
h1, h2, h3 {
    text-transform: uppercase;
}

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

.container-narrow {
    max-width: 800px;
}

/* Preloader */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--dark-bg);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo img {
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(249, 175, 27, 0.4));
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto 15px;
    position: relative;
    overflow: hidden;
}

.loader-bar .progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width 0.3s ease;
}

/* Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(249, 175, 27, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(249, 175, 27, 0.5));
}

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

/* Revised Navigation Styles */
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

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

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    align-items: center;
    gap: 15px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 25px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-main);
    transition: all 0.3s;
}

/* Buttons */
.btn {
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 5px;
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
}

.btn-highlight {
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 10px 20px rgba(249, 175, 27, 0.2);
}

.btn-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(249, 175, 27, 0.4);
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c00 100%);
    color: var(--secondary-color);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 0.9rem;
    box-shadow: 0 10px 25px rgba(249, 175, 27, 0.3), inset 0 0 0 1px rgba(255,255,255,0.2);
    margin-top: 25px;
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-premium:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(249, 175, 27, 0.5);
    background: linear-gradient(135deg, #ffc107 0%, var(--primary-color) 100%);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0 40px; /* Reduced top padding */
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, #1a1a2e 0%, #0a0a0c 100%);
}

.hero-main-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px; /* Reduced gap to bring buttons up */
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: auto auto; /* Both auto to collapse to center */
    justify-content: center; /* Push both towards the middle */
    gap: 100px; /* Adjust this to control the distance between them */
    align-items: center;
    width: 100%;
    max-width: 1200px; /* Constrain grid width to keep them close */
}

.hero-text-side {
    text-align: center; /* Centered as requested */
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem); /* Horizontal sizing */
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-main);
    letter-spacing: -1px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-title .outline {
    -webkit-text-stroke: 2px var(--primary-color);
    color: transparent;
    filter: drop-shadow(0 0 10px rgba(249, 175, 27, 0.3));
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    max-width: 700px;
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 2px 15px rgba(0,0,0,0.9);
}

.hero-video-side {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.video-container {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 9/16;
    background: var(--card-bg);
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid var(--glass-border);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    position: relative; /* For mute button */
}

.mute-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(249, 175, 27, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 10;
    transition: all 0.3s ease;
}

.mute-btn:hover {
    transform: scale(1.1);
    background: var(--primary-color);
}


.hero-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bottom-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.hero-scroll-indicator .line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    animation: scrollLine 2s infinite;
}

.animate-video {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 1s cubic-bezier(0.23, 1, 0.32, 1) forwards 0.4s;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.scroll-experience {
    position: relative;
    background: #000;
}

.canvas-sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

#hero-canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scroll-spacer {
    height: 600vh; /* Adjust length of scroll */
}

/* Product Overlay */
.products-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.product-item {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0) scale(0.9);
    opacity: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    padding-bottom: 0;
    visibility: hidden;
    pointer-events: none;
}

.product-item.active {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
    visibility: visible;
    pointer-events: auto;
}

.product-item img {
    height: 85vh;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
}

.product-info {
    position: absolute;
    top: 50%;
    max-width: 380px;
    opacity: 0;
    transform: translateY(-40%) translateY(30px); /* Initial position slightly lower for animation */
    transition: all 0.6s ease 0.3s;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.product-item.active .product-info {
    opacity: 1;
    transform: translateY(-50%); /* Final centered position */
}

.product-info.left {
    left: 8%;
    text-align: left;
}

.product-info.right {
    right: 8%;
    text-align: right;
}

.product-info h3 {
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.product-info p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 400;
}

/* Contact Section */
.contact-section {
    padding: 150px 0;
    background: var(--dark-bg);
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
}

.contact-card h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

input, textarea {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.3s;
}

input:focus, textarea:focus {
    border-color: var(--primary-color);
}

textarea {
    width: 100%;
    margin-bottom: 30px;
}

.full-width {
    width: 100%;
}

/* Footer */
.footer {
    background: #050507;
    padding: 100px 0 40px;
    border-top: 1px solid var(--glass-border);
}

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

.footer-logo {
    height: 50px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 8px rgba(249, 175, 27, 0.2));
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-title);
    font-weight: 800;
    margin-bottom: 25px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

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

.footer-links li, .footer-contact li {
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a, .footer-contact a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover, .footer-contact a:hover {
    color: var(--primary-color);
}



.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
    text-align: center;
    color: rgba(255,255,255,0.2);
    font-size: 0.8rem;
}

/* Animations */
.mobile-br { display: none; }
@media (max-width: 768px) {
    .mobile-br { display: block; }
}

/* Button Pulse Animation */
.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 175, 27, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(249, 175, 27, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(249, 175, 27, 0);
    }
}

/* Professional Hero Text Animations */
.animate-title {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.animate-subtitle {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards 0.3s;
}

.animate-actions {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollLine {
    0% { transform: translateY(-50%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(100%); opacity: 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Navigation */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 12, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px;
        gap: 30px;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links.show {
        display: flex;
        animation: fadeInDown 0.4s ease forwards;
    }

    .nav-links a {
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
    }

    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .product-item {
        flex-direction: column-reverse;
        justify-content: flex-end; /* Align to bottom of viewport if space allows */
        align-items: center;
        padding-bottom: 50px;
        padding-top: 100px; /* Space for fixed header */
    }

    .product-item img {
        height: 45vh; /* Slightly smaller to fit below card */
        margin-top: 20px;
        margin-bottom: 0;
    }

    .product-info { 
        position: relative; 
        top: auto !important;
        left: auto !important; 
        right: auto !important; 
        bottom: auto !important;
        margin: 0 auto; 
        padding: 25px; 
        width: 90%; 
        text-align: center !important; 
        transform: translateY(-20px) !important; /* Start slightly higher */
    }
    
    .product-item.active .product-info {
        transform: translateY(0) !important;
    }

    .product-info h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .form-grid { grid-template-columns: 1fr; }
    .contact-card { padding: 30px 20px; }
    .contact-card h2 { font-size: 2.2rem; }
    
    .hero {
        padding: 100px 0 40px;
    }

    .hero-title { 
        font-size: 2.8rem; 
        text-align: center; 
        line-height: 1.2;
    }
    
    .hero-subtitle { 
        text-align: center; 
        margin: 0 auto 30px; 
        font-size: 1.2rem;
        max-width: 320px; /* Constrain width to avoid side nav */
        line-height: 1.5;
    }

    .canvas-sticky-container {
        padding-top: 80px; /* Space for the fixed header */
    }

    .hero-grid, .hero-bottom-actions {
        display: contents;
    }

    .hero-text-side { order: 1; }
    .hero-actions { 
        order: 2; 
        margin-bottom: 20px;
    }
    .hero-video-side { order: 3; }
    .hero-scroll-indicator { 
        order: 4;
        margin-top: 40px;
    }

    .hero-main-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0; /* Managed by margins and order */
    }

    .video-container {
        max-width: 260px;
        margin: 0 auto;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.75rem;
    }

    .side-scroll-nav {
        right: 8px; /* Even closer to edge on mobile */
        padding: 10px 4px;
        gap: 8px;
        opacity: 0.5; /* More subtle until interaction */
    }

    .scroll-text {
        font-size: 0.55rem;
        letter-spacing: 1.5px;
    }

    .arrow-up, .arrow-down {
        width: 22px;
        height: 22px;
    }

    .ticker-content span {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .ticker-wrapper {
        padding: 8px 0;
    }
    
    .ticker-content .dot {
        width: 5px;
        height: 5px;
    }
}

/* Side Scroll Navigation */
.side-scroll-nav {
    position: fixed;
    right: 25px; /* Moved closer to edge */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* More compact */
    z-index: 999;
    background: rgba(10, 10, 12, 0.4); /* More subtle */
    padding: 20px 8px; /* Thinner capsule */
    border-radius: 40px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(249, 175, 27, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.side-scroll-nav:hover {
    background: rgba(10, 10, 12, 0.7);
    border-color: rgba(249, 175, 27, 0.3);
}

.scroll-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.65rem; /* Smaller text */
    letter-spacing: 3px;
    color: var(--primary-color);
    font-weight: 700;
    margin: 10px 0;
    text-shadow: 0 0 8px rgba(249, 175, 27, 0.3);
    opacity: 0.8;
}

@keyframes textGlow {
    from { text-shadow: 0 0 10px rgba(249, 175, 27, 0.3); }
    to { text-shadow: 0 0 20px rgba(249, 175, 27, 0.8), 0 0 30px rgba(249, 175, 27, 0.4); }
}

.arrow-up, .arrow-down {
    width: 28px; /* Smaller arrows */
    height: 28px;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 5px rgba(249, 175, 27, 0.2));
    opacity: 0.7;
}

.side-scroll-nav:hover .arrow-up,
.side-scroll-nav:hover .arrow-down,
.side-scroll-nav:hover .scroll-text {
    opacity: 1;
}

.arrow-up:hover { transform: translateY(-5px); }
.arrow-down:hover { transform: translateY(5px); }

.arrow-up svg, .arrow-down svg {
    width: 100%;
    height: 100%;
}

/* Ensure smooth anchor jumps for the experience section */
/* Infinite Scrolling Ticker */
.ticker-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #f9af1b; /* Solid Golden Yellow */
    padding: 15px 0;
    overflow: hidden;
    z-index: 100;
    border-top: 2px solid rgba(0,0,0,0.1);
    box-shadow: 0 -15px 40px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
}

.ticker-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: tickerLoop 40s linear infinite; /* Slightly slower for better readability */
    gap: 40px;
}

.ticker-content span {
    font-family: var(--font-title);
    font-weight: 800;
    color: #000000; /* Pure Black for maximum contrast */
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.ticker-content .dot {
    width: 8px;
    height: 8px;
    background: #000000;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

@keyframes tickerLoop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .ticker-content span {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    .ticker-wrapper {
        padding: 10px 0;
    }
    .ticker-content .dot {
        width: 6px;
        height: 6px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 30px;
    z-index: 1000;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.whatsapp-content {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #25d366;
    padding: 8px 8px 8px 20px;
    border-radius: 50px;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), inset 0 0 0 1px rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.1);
}

.whatsapp-text {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-transform: uppercase;
}

.whatsapp-icon-wrapper {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25d366;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    animation: vibrate 2s infinite;
}

.whatsapp-icon-wrapper svg {
    width: 25px;
    height: 25px;
}

/* Vibrating and Pulsing Animation */
@keyframes vibrate {
    0% { transform: rotate(0) scale(1); }
    5% { transform: rotate(-10deg) scale(1.1); }
    10% { transform: rotate(10deg) scale(1.1); }
    15% { transform: rotate(-10deg) scale(1.1); }
    20% { transform: rotate(10deg) scale(1.1); }
    25% { transform: rotate(0) scale(1.1); }
    30% { transform: scale(1); }
    100% { transform: scale(1); }
}

.whatsapp-float:hover {
    transform: scale(1.05) translateY(-5px);
}

.whatsapp-float:hover .whatsapp-content {
    background: #20ba5a;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

/* Hide text on small screens, keep icon */
@media (max-width: 500px) {
    .whatsapp-text {
        display: none;
    }
    .whatsapp-content {
        padding: 8px;
    }
}
