/* ===== CSS RESET & VARIABLES ===== */
:root {
    --primary: #e07a5f;
    --primary-dark: #c5654a;
    --secondary: #3d405b;
    --accent: #f2cc8f;
    --dark: #2c2c2c;
    --light: #f4f1de;
    --white: #ffffff;
    --text: #333333;
    --text-light: #666666;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --radius: 12px;
    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

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

.logo {
    height: 50px;
    width: auto;
}

.logo-link {
    display: flex;
    align-items: center;
}

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

.nav-link {
    padding: 10px 18px;
    color: var(--text);
    font-weight: 500;
    border-radius: 25px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(224,122,95,0.1);
}

.nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(224,122,95,0.4);
}

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

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    transition: var(--transition);
    border-radius: 3px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(44,44,44,0.7), rgba(61,64,91,0.8)), url('../assets/images/hero-bg.webp') no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 35px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(224,122,95,0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    z-index: 2;
    animation: bounce 2s infinite;
}

/* ===== SECTIONS GENERAL ===== */
section {
    padding: 100px 0;
}

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

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-description {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--light);
}

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

.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    border-radius: var(--radius);
    width: 100%;
    height: auto;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.experience-badge span:first-child {
    font-size: 2rem;
    font-weight: 800;
}

.about-content .section-title {
    margin-bottom: 20px;
}

.about-text {
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feature svg {
    flex-shrink: 0;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(224,122,95,0.3);
}

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

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--secondary);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
    border: 2px solid var(--white);
    padding: 10px 24px;
    border-radius: 50px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--light);
    padding: 35px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.testimonial-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    color: var(--secondary);
}

.testimonial-author span {
    color: var(--primary);
    font-size: 0.9rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

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

.cta-content .btn-primary:hover {
    background: var(--accent);
    color: var(--dark);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item a {
    color: var(--primary);
    text-decoration: underline;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(224,122,95,0.1);
}

.btn-submit {
    width: 100%;
    font-size: 1.1rem;
    padding: 16px;
    margin-bottom: 10px;
}

.form-note {
    text-align: center;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin-top: 15px;
}

.footer-links h4,
.footer-services h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-links li,
.footer-services li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-services a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 30px;
        box-shadow: var(--shadow-lg);
        transition: 0.3s;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .testimonials-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 25px;
    }
}

/* ===== INSTAGRAM HEADER BADGE ===== */
.instagram-header-badge {
    position: absolute;
    top: 120px;
    right: 30px;
    z-index: 10;
    animation: floatBadge 3s ease-in-out infinite;
}

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

.insta-badge-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    padding: 12px 20px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(220, 39, 67, 0.4);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.insta-badge-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(220, 39, 67, 0.6);
}

.insta-badge-link:active {
    transform: scale(0.98);
}

.insta-icon {
    flex-shrink: 0;
    color: white;
}

.insta-handle {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.insta-followers {
    font-size: 0.75rem;
    padding: 3px 10px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    display: flex;
    align-items: center;
}

.insta-arrow {
    flex-shrink: 0;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.insta-badge-link:hover .insta-arrow {
    transform: translate(3px, -3px);
    opacity: 1;
}

/* ===== INSTAGRAM SOCIAL PROOF STRIP ===== */
.instagram-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.insta-mini-gallery {
    display: flex;
    gap: 8px;
}

.insta-thumb {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.insta-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(220,39,67,0.3), rgba(188,24,136,0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insta-thumb:hover {
    transform: translateY(-3px);
    border-color: white;
}

.insta-thumb:hover::after {
    opacity: 1;
}

.insta-view-more {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.1);
}

.insta-view-more:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.5);
}

/* Instagram Stat in Hero */
.insta-stat .stat-number {
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== RESPONSIVE INSTAGRAM HEADER ===== */
@media (max-width: 1024px) {
    .instagram-header-badge {
        top: 100px;
        right: 20px;
    }
    
    .insta-handle {
        display: none;
    }
    
    .insta-badge-link {
        padding: 10px 15px;
    }
}

@media (max-width: 768px) {
    .instagram-header-badge {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 25px;
        display: flex;
        justify-content: center;
        animation: none;
    }
    
    .insta-handle {
        display: block;
        font-size: 0.8rem;
    }
    
    .insta-followers {
        font-size: 0.7rem;
    }
    
    .insta-mini-gallery {
        gap: 5px;
    }
    
    .insta-thumb {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .instagram-social-proof {
        flex-direction: column;
        gap: 15px;
    }
    
    .insta-view-more {
        font-size: 0.85rem;
        padding: 8px 18px;
    }
}

@media (max-width: 480px) {
    .insta-badge-link {
        padding: 8px 15px;
        gap: 6px;
    }
    
    .insta-handle,
    .insta-followers {
        font-size: 0.7rem;
    }
}

/* ===== INSTAGRAM FEED SECTION ===== */
.instagram-section {
    background: var(--white);
    padding: 80px 0;
}

.insta-profile-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 5px;
}

.insta-profile-link:hover {
    color: var(--primary-dark);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.insta-grid-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.insta-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-grid-item:hover img {
    transform: scale(1.1);
}

.insta-grid-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-weight: 600;
}

.insta-grid-item:hover .insta-grid-overlay {
    opacity: 1;
}

.instagram-cta {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

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

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Main WhatsApp Button */
.whatsapp-main-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.whatsapp-main-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    border-radius: 50px;
}

.whatsapp-main-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
    background: #20bd5a;
}

.whatsapp-main-btn:active {
    transform: scale(0.95);
}

/* Pulse Animation */
.whatsapp-main-btn::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 55px;
    border: 3px solid #25D366;
    animation: whatsappPulse 2s infinite;
    opacity: 0;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.whatsapp-icon {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.whatsapp-btn-text {
    position: relative;
    z-index: 1;
}

/* WhatsApp Popup */
.whatsapp-popup {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 350px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.whatsapp-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Popup Header */
.whatsapp-popup-header {
    background: #075E54;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.whatsapp-popup-avatar {
    position: relative;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid white;
    flex-shrink: 0;
}

.whatsapp-popup-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whatsapp-online-dot {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 12px;
    height: 12px;
    background: #25D366;
    border-radius: 50%;
    border: 2px solid white;
    animation: onlinePulse 2s infinite;
}

@keyframes onlinePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.whatsapp-popup-info h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.whatsapp-popup-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    margin: 0;
}

.whatsapp-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.whatsapp-popup-close:hover {
    opacity: 1;
}

/* Popup Body */
.whatsapp-popup-body {
    padding: 20px;
    background: #e5ddd5;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.whatsapp-message-preview {
    background: white;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.whatsapp-message-preview::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
}

.whatsapp-message-preview p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: var(--text);
}

/* Quick Options */
.whatsapp-quick-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.whatsapp-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.whatsapp-option:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: #dcf8c6;
}

.whatsapp-option-icon {
    font-size: 1.3rem;
}

/* Popup Footer */
.whatsapp-popup-footer {
    padding: 15px 20px;
    background: white;
    border-top: 1px solid #e0e0e0;
}

.whatsapp-start-chat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.whatsapp-start-chat:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* ===== RESPONSIVE WHATSAPP ===== */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
    }
    
    .whatsapp-btn-text {
        display: none;
    }
    
    .whatsapp-main-btn {
        width: 60px;
        height: 60px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
    
    .whatsapp-popup {
        width: 300px;
        left: 0;
        bottom: 70px;
    }
}

@media (max-width: 480px) {
    .whatsapp-popup {
        width: 280px;
        left: -20px;
    }
    
    .whatsapp-popup-header {
        padding: 15px;
    }
    
    .whatsapp-popup-avatar {
        width: 45px;
        height: 45px;
    }
    
    .whatsapp-popup-info h4 {
        font-size: 1rem;
    }
}
/* WhatsApp Contact Item */
.whatsapp-contact {
    padding: 15px;
    background: #e8f5e9;
    border-radius: 10px;
    border-left: 4px solid #25D366;
}

.whatsapp-contact a {
    color: #075E54 !important;
    font-weight: 600;
    text-decoration: none !important;
}

.whatsapp-contact a:hover {
    color: #25D366 !important;
}   
