:root {
    --primary: #2C1810;
    --secondary: #8B6F47;
    --accent: #D4AF37;
    --light: #F5F1E8;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --gradient-primary: linear-gradient(135deg, #2C1810 0%, #4A2C1A 100%);
    --gradient-accent: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.20);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 15px 0;
    box-shadow: var(--shadow-md);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.cta-button {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
    margin-top: 90px;
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #F5F1E8 0%, #FFFFFF 50%, #F5F1E8 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-text .subtitle {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 16px;
    font-weight: 400;
}

.hero-text .description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dark);
}

.hero-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

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

.menu-card-wrapper {
    width: 100%;
    max-width: 500px;
    position: relative;
}

.menu-card-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 50px 50px 0 0;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.menu-label-icon {
    font-size: 20px;
}

.hero-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-accent);
}

.hero-card-content {
    text-align: center;
}

.hero-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero-card p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

.menu-card-container {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    background: var(--white);
    border-radius: 0 0 24px 24px;
    border: 3px solid var(--accent);
    border-top: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
}

.menu-card-container::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
}

.menu-card-img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
}

.menu-card-wrapper:hover .menu-card-img {
    transform: scale(1.02);
}

.menu-card-wrapper:hover .menu-card-container {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    border-color: var(--secondary);
}

.menu-card-wrapper:hover .menu-card-label {
    background: var(--gradient-accent);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.menu-card-wrapper {
    cursor: pointer;
}

/* Menu Modal Popup */
.menu-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-modal.active {
    opacity: 1;
    visibility: visible;
}

.menu-modal-content {
    background: var(--white);
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.menu-modal.active .menu-modal-content {
    transform: scale(1);
}

.menu-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.menu-modal-close:hover {
    background: var(--accent);
    color: var(--primary);
    transform: rotate(90deg);
}

.menu-modal-header {
    padding: 30px 30px 20px;
    text-align: center;
    border-bottom: 2px solid var(--light);
}

.menu-modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--primary);
    margin: 0;
    font-weight: 700;
}

.menu-modal-body {
    padding: 30px;
    overflow-y: auto;
    max-height: calc(90vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-modal-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Trust Badges */
.trust-section {
    padding: 60px 0;
    background: var(--white);
}

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

.trust-badge {
    text-align: center;
    padding: 30px;
    background: var(--light);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.trust-badge-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.trust-badge h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.trust-badge p {
    font-size: 14px;
    color: var(--text-light);
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header .section-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.category-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--primary);
    font-weight: 600;
}

.category-description {
    font-size: 16px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 10px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

.product-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--light) 0%, #e8e0d5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image-placeholder::after {
    content: '📷';
    font-size: 48px;
    opacity: 0.3;
}

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

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    padding: 20px 20px 0;
}

.product-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.product-badge {
    background: var(--accent);
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-pricing {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 20px 20px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.price-item:last-child {
    border-bottom: none;
}

.price-weight {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.price-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.price-note {
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 4px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 700;
}

.about-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dark);
}

.about-feature-item::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

.about-visual {
    background: var(--gradient-primary);
    border-radius: 24px;
    padding: 60px;
    color: var(--white);
    box-shadow: var(--shadow-xl);
}

.about-visual h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 24px;
}

.about-visual p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
}

/* Founder Section */
.founder-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.founder-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
}

.founder-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 3/4;
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.founder-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(44, 24, 16, 0.7) 0%, transparent 100%);
    pointer-events: none;
}

.founder-text {
    padding-left: 20px;
}

.founder-text .section-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
}

.founder-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.founder-title {
    font-size: 20px;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 8px;
}

.founder-location {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
    font-style: italic;
}

.founder-description {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.9;
}

.founder-description p {
    margin-bottom: 20px;
}

.founder-description p:last-child {
    margin-bottom: 0;
}

.founder-quote {
    margin-top: 32px !important;
    padding: 24px 32px;
    background: var(--light);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    font-style: italic;
    font-size: 18px;
    color: var(--primary);
    position: relative;
}

.founder-quote::before {
    content: '"';
    font-size: 64px;
    font-family: 'Playfair Display', serif;
    color: var(--accent);
    position: absolute;
    top: -10px;
    left: 16px;
    opacity: 0.3;
    line-height: 1;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 24px;
}

.contact-info p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
}

.contact-details h4 {
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-details a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.contact-details a:hover {
    opacity: 1;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.15);
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.fssai-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .contact-content,
    .founder-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .founder-content {
        grid-template-columns: 1fr;
    }

    .founder-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .founder-text {
        padding-left: 0;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 56px;
    }

    .section-header h2 {
        font-size: 42px;
    }

    .founder-text h2 {
        font-size: 42px;
    }
}

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

    nav {
        padding: 15px 0;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero-visual {
        height: auto;
        min-height: 400px;
    }

    .menu-card-wrapper {
        max-width: 100%;
    }

    .menu-card-label {
        font-size: 14px;
        padding: 12px 20px;
    }

    .menu-card-img {
        padding: 15px;
        max-height: 350px;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-text .subtitle {
        font-size: 18px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .category-header h3 {
        font-size: 32px;
    }

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

    .product-image-placeholder {
        height: 180px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .founder-section {
        padding: 60px 0;
    }

    .founder-content {
        gap: 40px;
    }

    .founder-image-wrapper {
        max-width: 100%;
    }

    .founder-text h2 {
        font-size: 36px;
    }

    .founder-description {
        font-size: 16px;
    }

    .founder-quote {
        padding: 20px 24px;
        font-size: 16px;
    }

    .menu-modal-content {
        max-width: 100%;
        max-height: 95vh;
        border-radius: 16px;
    }

    .menu-modal-header {
        padding: 20px 20px 15px;
    }

    .menu-modal-header h2 {
        font-size: 24px;
    }

    .menu-modal-body {
        padding: 20px;
        max-height: calc(95vh - 100px);
    }

    .menu-modal-close {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
    background: #20BA5A;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }
}
