/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #ffd700;
    --gray-1:#f8fafc;
    --gray-2:#e2e8f0;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffd700;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.burger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 95vh; /* Increased from 80vh to 100vh */
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 7rem 0 0 0;
}

.hero-flex {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0;
    height: 100%;
}

.hero-text {
    flex: 1 1 0;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 3rem 4rem 6rem;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.hero-main-price {
    font-size: 1.1rem;
    background: rgba(255,255,255,0.12);
    padding: 1rem 1.8rem;
    border-radius: 1.5rem;
    color: #fff;
    font-weight: 500;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.main-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffd700;
    margin: 0 0.2rem;
    letter-spacing: -0.02em;
}

.hero-cta-button {
    background: #ffd700;
    color: #333;
    border: none;
    padding: 1rem 1.8rem; /* Match the price box padding */
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    letter-spacing: -0.01em;
    width: fit-content; /* Allow button to size to content */
    display: inline-block;
}

.hero-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.hero-image {
    flex: 1 1 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    min-width: 0;
    overflow: hidden;
}

.hero-image img {
    width: 100%; /* Full width to use more space */
    height: 100%;
    object-fit: contain; /* Show full image without cropping */
    border-radius: 0;
    min-height: 500px; /* Increased from 400px */
    max-height: 100vh;
    box-shadow: none;
    margin: 0 auto; /* Center the image */
    display: block;
}

/* Remove old hero feature/pricing styles if not needed */
.hero-features, .feature, .hero-price, .cta-button, .checkmark, .bonus {
    display: none !important;
}

/* Price Tiers */
.price-tiers {
    padding: 5rem 2rem;
    background: var(--gray-1);
}

.price-tiers h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tier-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.tier-card:hover {
    transform: translateY(-5px);
}

.tier-card.featured {
    border-color: #667eea;
    transform: scale(1.05);
}

.tier-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.popular-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-top: 0.5rem;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 2rem;
}

.tier-features {
    list-style: none;
    margin-bottom: 2rem;
}

.tier-features li {
    padding: 0.5rem 0;
    color: #666;
}

.tier-button {
    background: #667eea;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.tier-button:hover {
    background: #5a67d8;
}

/* Price Tiers Discount Badge */
.discount-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: #ffd700;
    color: #333;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 2;
    border: 3px solid #fff;
}

/* Price Tiers Pricing */
.tier-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    gap: 0.2rem;
}

.tier-pricing .old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    opacity: 0.7;
}

.tier-pricing .new-price {
    font-size: 2.2rem;
    font-weight: bold;
    color: #667eea;
}

/* Mobile Swiper */
.mobile-tiers {
    display: none;
    overflow: hidden; /* Prevent overflow */
    width: 100%;
    position: relative;
}

.swiper-container {
    padding: 2rem 0 3rem 0; /* Add bottom padding for pagination */
    overflow: hidden; /* Prevent overflow */
    width: 100%;
    position: relative;
}

.swiper-wrapper {
    width: 100%;
}

.swiper-slide {
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

.swiper-pagination {
    position: relative;
    z-index: 10;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.swiper-pagination-bullet {
    background: #667eea;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    margin: 0 5px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #667eea;
}

/* Extra Services */
.extra-services {
    padding: 5rem 2rem;
    background: #764ba2;
}

.extra-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffd700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.service-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #f8fafc;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #667eea;
}

/* Portfolio */
.portfolio {
    padding: 5rem 2rem;
    background: #f8fafc;
}

.portfolio h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-item h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #333;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.before, .after {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.before h4, .after h4 {
    margin-bottom: 1rem;
    color: #667eea;
    font-size: 1.2rem;
    font-weight: 600;
}

.portfolio-image {
    width: 100%;
    max-height: 400px;
    min-height: 250px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clickable-image {
    cursor: pointer;
}

.clickable-image:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.placeholder {
    background: #e2e8f0;
    height: 250px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-style: italic;
}

/* Image Modal/Lightbox */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #bbb;
}

#modalImage {
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    cursor: grab;
    user-select: none;
}

#modalImage:active {
    cursor: grabbing;
}

#modalImage.dragging {
    transition: none;
}

.modal-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    background: rgba(0,0,0,0.7);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.modal-controls button {
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.modal-controls button:hover {
    background: rgba(255,255,255,0.3);
}

/* Zoom functionality */
#modalImage.zoomed {
    transform: scale(1.5);
}

#modalImage.zoomed-2 {
    transform: scale(2);
}

#modalImage.zoomed-3 {
    transform: scale(2.5);
}

/* FAQ */
.faq {
    padding: 5rem 2rem;
    background: var(--gray-2);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: #f8fafc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    color: #333;
    font-size: 1.2rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: bold;
}

.faq-answer {
    padding: 1.5rem;
    background: white;
    display: none;
}

.faq-answer.active {
    display: block;
}

/* Contact */
.contact {
    padding: 5rem 2rem;
    background: #f8fafc;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.contact-info p {
    margin-bottom: 1rem;
    color: #666;
}

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

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #667eea;
}

/* Custom Select Dropdown Styling */
.custom-select {
    position: relative;
    width: 100%;
}

.select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.select-trigger:hover {
    border-color: #5a67d8;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
}

.select-trigger.active {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.select-text {
    color: #333;
}

.select-arrow {
    color: #667eea;
    transition: transform 0.3s ease;
}

.select-trigger.active .select-arrow {
    transform: rotate(180deg);
}

.select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.select-options.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 200px;
}

.select-option {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f1f5f9;
    font-weight: 500;
    color: #333;
}

.select-option:last-child {
    border-bottom: none;
}

.select-option:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateX(5px);
}

.select-option.selected {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
}

.contact-form button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #5a67d8;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.footer-logo img{
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-description {
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #ffd700;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #e2e8f0;
    font-size: 0.95rem;
}


.contact-item svg {
    color: #ffd700;
    flex-shrink: 0;
}

.contact-item a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ffd700;
}

.contact-info a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffd700;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #cbd5e0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffd700;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Navigation */
    .burger-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px; /* Position right below the header, 10px higher */
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    /* Hero Section */
    .hero-flex {
        flex-direction: column !important;
        padding: 0 1rem;
        height: auto !important;
    }
    
    .hero-text {
        padding: 2rem 1rem;
        text-align: center;
        align-items: center;
        order: 1; /* Ensure text comes first */
        flex: none !important;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-image {
        order: 2; /* Ensure image comes second */
        margin-top: 2rem;
        width: 100%;
        display: flex;
        justify-content: center;
        flex: none !important;
        height: auto !important;
    }
    
    .hero-image img {
        width: 100%;
        max-width: 400px;
        height: auto;
        min-height: 300px;
        object-fit: contain;
    }
    
    /* Price Tiers */
    .desktop-tiers {
        display: none;
    }
    
    .mobile-tiers {
        display: block;
        overflow: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .tier-card {
        margin: 0 auto;
        max-width: 350px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .before-after {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Contact */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* FAQ */
    .faq-question h3 {
        font-size: 1rem;
    }
    
    /* General */
    .price-tiers, .extra-services, .portfolio, .faq, .contact {
        padding: 3rem 1rem;
        overflow: hidden; /* Prevent overflow */
    }
    
    .price-tiers h2, .extra-services h2, .portfolio h2, .faq h2, .contact h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

/* Responsive adjustments for desktop */
@media (min-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero-flex {
        margin-top: 0rem; /* Only on desktop */
    }
    
    .tiers-grid {
        gap: 3rem;
    }
    
    .services-grid {
        gap: 3rem;
    }
} 

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
}

.floating-whatsapp a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Mobile responsive for WhatsApp button */
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-whatsapp a {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* Custom Notification Styles */
.custom-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 4px solid;
}

.custom-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.custom-notification.success {
    border-left-color: #10b981;
}

.custom-notification.error {
    border-left-color: #ef4444;
}

.notification-content {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    gap: 12px;
}

.notification-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.custom-notification.success .notification-icon {
    background: #10b981;
    color: white;
}

.custom-notification.error .notification-icon {
    background: #ef4444;
    color: white;
}

.notification-message {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    background: #f3f4f6;
    color: #6b7280;
}

/* Mobile responsive for notifications */
@media (max-width: 768px) {
    .custom-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100%);
    }
    
    .custom-notification.show {
        transform: translateY(0);
    }
} 