:root {
    --primary: #2d5a27;
    /* Logo Dark Green */
    --primary-rgb: 45, 90, 39;
    --primary-light: #3e7a36;
    --secondary: #5c1515;
    /* Logo Dark Red */
    --secondary-rgb: 92, 21, 21;
    --accent: #8bc34a;
    /* Fresh Green */
    --text-dark: #1b1b1b;
    --text-light: #f8f9fa;
    --bg-light: #ffffff;
    --bg-gray: #f4f7f6;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

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

.highlight {
    color: var(--accent);
}

.script-font {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--primary);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
}

.section-title.white {
    color: white;
}

/* Navigation Redesign */
#main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#main-nav .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4rem;
}

#main-nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.2rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.5px;
}

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

.nav-links a:hover {
    color: var(--accent);
}

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

#main-nav.scrolled .nav-links a {
    color: var(--primary);
}

#main-nav.scrolled .nav-links a:hover {
    color: var(--secondary);
}

#logo-img {
    height: 60px;
    transition: var(--transition);
}

#main-nav.scrolled #logo-img {
    height: 50px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    margin-left: auto;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: var(--transition);
}

#main-nav.scrolled .menu-toggle span {
    background: var(--primary);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: flex-end;
    /* Align content to bottom */
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: var(--text-light);
    text-align: center;
    padding-bottom: 10vh;
    /* Space from bottom edge */
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 0;
}

.hero-content {
    max-width: 1000px;
    padding: 0 2rem;
    z-index: 1;
    position: relative;
}

.hero h1 {
    font-size: 5.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 800;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content {
    max-width: 1100px;
    padding: 0 2rem;
    z-index: 1;
    position: relative;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

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

.btn-primary:hover {
    background: #b20322;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(217, 4, 41, 0.3);
}

.btn-outline {
    border: 2px solid white;
    color: white;
    margin-left: 1rem;
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

/* Highlights */
.highlights {
    padding: 4rem 0;
    background: var(--bg-gray);
    margin-top: 0px;
    position: relative;
    z-index: 5;
}

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

.highlight-item .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.highlight-item p {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about {
    padding: 8rem 0;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-text {
    flex: 1;
}

.section-tag {
    color: #eb5e42;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.about h3 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.1rem;
}

/* Products Premium Section */
.products-premium {
    padding: 2rem 0;
    background: #000;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 350px;
    gap: 10px;
    padding: 0 10px;
}

.category-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: brightness(0.8);
}

.category-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.category-item.wide {
    grid-column: span 2;
}

.category-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    color: white;
    z-index: 2;
    transition: var(--transition);
}

.category-content h3 {
    font-size: 3.5rem;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin: 0;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.category-content h3 span {
    font-weight: 300;
    font-size: 2.5rem;
    display: block;
    margin-top: 5px;
}

.category-content .details {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    margin-top: 1.5rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
}

.category-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.6);
}

.category-item:hover .details {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 300px;
    }

    .category-item.large,
    .category-item.wide {
        grid-column: span 2;
    }

    .category-content h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-item.large,
    .category-item.wide {
        grid-column: span 1;
    }
}

/* Why Sam Agri Section */
.why-sam {
    padding: 10rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/why-bg.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.why-header {
    margin-bottom: 5rem;
}

.why-script {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--accent);
    font-size: 2.5rem;
    display: block;
    margin-bottom: -1rem;
    text-transform: lowercase;
}

.why-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 2px;
}

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

.why-item {
    transition: var(--transition);
}

.why-item:hover {
    transform: translateY(-10px);
}

.why-icon {
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: var(--transition);
}

.why-item:hover .why-icon {
    border-color: var(--accent);
    color: var(--primary);
    background: var(--accent);
    transform: rotateY(360deg);
}

.why-item h4 {
    color: var(--accent);
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.why-item p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
    max-width: 250px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-title {
        font-size: 2.5rem;
    }
}

/* Integrated Model */
.integrated-model {
    padding: 8rem 0;
    background: linear-gradient(rgba(var(--primary-rgb), 0.95), rgba(var(--primary-rgb), 0.95)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&q=80&w=2000') no-repeat center center/cover;
    color: white;
    text-align: center;
}

.section-logo-wrapper {
    text-align: center;
    margin-bottom: 2rem;
}

.section-logo {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

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

.model-item .icon-circle {
    width: 90px;
    height: 90px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
    color: #fff;
    font-size: 2.2rem;
}

.model-item:hover .icon-circle {
    background: var(--accent);
    color: var(--primary);
    transform: rotateY(360deg);
}

.model-item h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.model-item p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Sustainability */
.sustainability {
    padding: 10rem 0;
    background-color: var(--bg-gray);
    position: relative;
    overflow: hidden;
}

.sustainability::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: rgba(var(--primary-rgb), 0.03);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.sust-flex {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.sust-text {
    flex: 1.2;
}

.sust-image {
    flex: 1;
    position: relative;
}

.sust-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.sust-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

.sust-features {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feat {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    border-left: 4px solid var(--secondary);
}

.feat:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feat i {
    font-size: 1.5rem;
    color: #eb5e42;
    ;
    width: 30px;
    text-align: center;
}

.feat span {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

/* Team */
.team {
    padding: 8rem 0;
    background: var(--bg-gray);
}

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

.team-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-card h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.team-card span {
    color: #eb5e42;
    ;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.5rem;
}

.team-card p {
    font-size: 0.9rem;
    color: #666;
}

/* Certifications */
.certifications {
    padding: 4rem 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.cert-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.cert-item {
    background: var(--bg-gray);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 1px solid #eee;
}

.cert-item:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.section-tag.center {
    text-align: center;
    display: block;
}

/* Timeline */
/* Milestones - Clean Professional Redesign */
.milestones {
    padding: 10rem 0;
    background: #fff;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    height: 100%;
    width: 2px;
    background: #eee;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.timeline-item.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item .year {
    width: 100px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #eb5e42;
    text-align: right;
    padding-right: 40px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    margin-top: 5px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 114px;
    top: 15px;
    width: 14px;
    height: 14px;
    background: white;
    border: 3px solid #eb5e42;
    border-radius: 50%;
    z-index: 2;
    transition: var(--transition);
}

.timeline-item:hover::after {
    background: #eb5e42;
    transform: scale(1.3);
}

.timeline-item .event {
    flex-grow: 1;
    padding-left: 60px;
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
    transition: var(--transition);
}

.timeline-item:hover .event {
    color: #eb5e42;
    transform: translateX(10px);
}

.milestone-reveal {
    position: absolute;
    left: 140px;
    /* Center relative to the event area */
    bottom: 100%;
    /* Position above the item */
    width: 400px;
    height: 250px;
    opacity: 0;
    visibility: hidden;
    margin-bottom: 20px;
    transform: translateY(20px) scale(0.8);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    pointer-events: none;
}

.milestone-reveal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fill the card for photos */
    background: white;
    border-radius: 15px;
}

/* Specific styling for the logo milestone to prevent cropping */
.milestone-reveal.is-logo img {
    object-fit: contain;
    padding: 20px;
}

.timeline-item .milestone-reveal {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 6px solid white;
}

.timeline-item:hover .milestone-reveal {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

@media (max-width: 1250px) {
    .milestone-reveal {
        width: 300px;
        height: 200px;
        left: 100px;
    }
}

@media (max-width: 992px) {
    .milestone-reveal {
        display: none;
    }
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        padding-left: 50px;
    }

    .timeline-item .year {
        width: auto;
        text-align: left;
        padding-right: 0;
        margin-bottom: 0.5rem;
    }

    .timeline-item::after {
        left: 14px;
        top: 8px;
    }

    .timeline-item .event {
        padding-left: 0;
        font-size: 1.1rem;
    }
}



/* Products Premium Section */
/* Footer Premium Redesign - More Attractive */
.footer-premium {
    background: var(--secondary);
    color: #fff;
    padding: 10rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 4.878L59.972 0H60v1.182l-5.373 4.878L54.627 4.878zM4.878 54.627L0 59.972V60h1.182l4.878-5.373v-0.001zM54.627 55.122L59.972 60H60v-1.182l-5.373-4.878L54.627 55.122zM4.878 4.878L0 0h1.182l4.878 5.373V4.878z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 6rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.footer-logo-img {
    height: 85px;
    margin-bottom: 2.5rem;
    background: white;
    padding: 12px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.1rem;
}

.social-icons {
    margin-top: 2.5rem;
    display: flex;
    gap: 1.2rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background: #fff;
    color: var(--secondary);
    transform: translateY(-5px) rotate(360deg);
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #fff;
}

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

.footer-links li {
    margin-bottom: 1.2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.05rem;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(8px);
}

.contact-details p {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.contact-details i {
    color: #fff;
    font-size: 1.3rem;
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
}

/* Responsive */
@media (max-width: 992px) {

    .about-flex,
    .sust-flex {
        flex-direction: column;
        gap: 3rem;
    }

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

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

    .model-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25d366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4), 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float span {
    display: none;
}

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

.whatsapp-float i {
    font-size: 2.2rem;
    line-height: 1;
}