/* Salunara SPA - Components Styles */

/* Service Cards */
.salunara-service-card {
    background: #FAFAFA;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(44, 76, 98, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 184, 159, 0.2);
}

.salunara-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(44, 76, 98, 0.15);
    border-color: #A8B89F;
}

.salunara-service-icon {
    background: linear-gradient(135deg, #A8B89F, #98A88F);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #FAFAFA;
    font-size: 2rem;
}

.salunara-service-card h3 {
    color: #2C4C62;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.salunara-service-card p {
    color: #2C4C62;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Testimonial Cards */
.salunara-testimonial-card {
    background: #FAFAFA;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(44, 76, 98, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #A8B89F;
}

.salunara-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(44, 76, 98, 0.15);
}

.salunara-testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2C4C62;
}

.salunara-testimonial-author strong {
    color: #2C4C62;
    font-size: 1.1rem;
}

.salunara-testimonial-author span {
    color: #A8B89F;
    font-size: 0.95rem;
    display: block;
    margin-top: 0.25rem;
}

/* Blog Cards */
.salunara-blog-card {
    background: #FAFAFA;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(44, 76, 98, 0.1);
    transition: all 0.3s ease;
}

.salunara-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(44, 76, 98, 0.15);
}

.salunara-blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.salunara-blog-card:hover img {
    transform: scale(1.05);
}

.salunara-blog-content {
    padding: 2rem;
}

.salunara-blog-date {
    color: #A8B89F;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.salunara-blog-card h3 {
    margin: 1rem 0;
    font-size: 1.4rem;
}

.salunara-blog-card h3 a {
    color: #2C4C62;
    transition: color 0.3s ease;
}

.salunara-blog-card h3 a:hover {
    color: #D07A4E;
}

.salunara-blog-card p {
    color: #2C4C62;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Team Cards */
.salunara-team-card {
    background: #FAFAFA;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(44, 76, 98, 0.1);
    transition: all 0.3s ease;
}

.salunara-team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(44, 76, 98, 0.15);
}

.salunara-team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 4px solid #A8B89F;
}

.salunara-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.salunara-team-card h3 {
    color: #2C4C62;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.salunara-team-position {
    color: #D07A4E;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.salunara-team-bio {
    color: #2C4C62;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.salunara-team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.salunara-team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #A8B89F, #98A88F);
    border-radius: 50%;
    color: #FAFAFA;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.salunara-team-social a:hover {
    background: linear-gradient(135deg, #D07A4E, #B86A3E);
    transform: translateY(-2px);
}

/* Form Components */
.salunara-form {
    background: #FAFAFA;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(44, 76, 98, 0.1);
    margin: 2rem 0;
}

.salunara-form-group {
    margin-bottom: 1.5rem;
}

.salunara-form-label {
    display: block;
    color: #2C4C62;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.salunara-form-input,
.salunara-form-textarea,
.salunara-form-select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(168, 184, 159, 0.3);
    border-radius: 15px;
    font-size: 1rem;
    font-family: inherit;
    background: #FAFAFA;
    color: #2C4C62;
    transition: all 0.3s ease;
}

.salunara-form-input:focus,
.salunara-form-textarea:focus,
.salunara-form-select:focus {
    outline: none;
    border-color: #A8B89F;
    box-shadow: 0 0 0 3px rgba(168, 184, 159, 0.2);
}

.salunara-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.salunara-form-error {
    color: #D07A4E;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.salunara-form-success {
    background: linear-gradient(135deg, #A8B89F, #98A88F);
    color: #FAFAFA;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 1rem;
    display: none;
}

/* Price Tables */
.salunara-price-table {
    background: #FAFAFA;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 25px rgba(44, 76, 98, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.salunara-price-table:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(44, 76, 98, 0.15);
    border-color: #A8B89F;
}

.salunara-price-table.featured {
    border-color: #D07A4E;
    transform: scale(1.05);
}

.salunara-price-table.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.salunara-price-header {
    margin-bottom: 2rem;
}

.salunara-price-title {
    font-size: 1.5rem;
    color: #2C4C62;
    margin-bottom: 1rem;
}

.salunara-price-amount {
    font-size: 3rem;
    color: #D07A4E;
    font-weight: 600;
}

.salunara-price-period {
    color: #A8B89F;
    font-size: 1rem;
}

.salunara-price-features {
    list-style: none;
    margin: 2rem 0;
}

.salunara-price-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(168, 184, 159, 0.2);
    color: #2C4C62;
    display: flex;
    align-items: center;
    justify-content: center;
}

.salunara-price-features li:last-child {
    border-bottom: none;
}

.salunara-price-features i {
    color: #A8B89F;
    margin-right: 0.5rem;
}

/* Alert Components */
.salunara-alert {
    padding: 1rem 1.5rem;
    border-radius: 15px;
    margin: 1rem 0;
    display: flex;
    align-items: center;
}

.salunara-alert i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.salunara-alert-info {
    background: rgba(168, 184, 159, 0.2);
    color: #2C4C62;
    border-left: 4px solid #A8B89F;
}

.salunara-alert-success {
    background: rgba(168, 184, 159, 0.3);
    color: #2C4C62;
    border-left: 4px solid #A8B89F;
}

.salunara-alert-warning {
    background: rgba(208, 122, 78, 0.2);
    color: #2C4C62;
    border-left: 4px solid #D07A4E;
}

/* Badge Components */
.salunara-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.salunara-badge-primary {
    background: linear-gradient(135deg, #D07A4E, #B86A3E);
    color: #FAFAFA;
}

.salunara-badge-secondary {
    background: linear-gradient(135deg, #A8B89F, #98A88F);
    color: #FAFAFA;
}

/* Loading Spinner */
.salunara-spinner {
    border: 3px solid rgba(168, 184, 159, 0.3);
    border-top: 3px solid #A8B89F;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: salunara-spin 1s linear infinite;
    margin: 2rem auto;
}

@keyframes salunara-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Modal Components */
.salunara-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 76, 98, 0.8);
    backdrop-filter: blur(5px);
}

.salunara-modal-content {
    background: #FAFAFA;
    margin: 5% auto;
    padding: 3rem;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: salunara-modal-fade-in 0.3s ease;
}

@keyframes salunara-modal-fade-in {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.salunara-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: #A8B89F;
    cursor: pointer;
    transition: color 0.3s ease;
}

.salunara-modal-close:hover {
    color: #D07A4E;
}

/* Responsive Components */
@media (max-width: 768px) {
    .salunara-service-card,
    .salunara-testimonial-card,
    .salunara-blog-card,
    .salunara-team-card,
    .salunara-price-table {
        margin-bottom: 2rem;
    }
    
    .salunara-form {
        padding: 2rem 1.5rem;
    }
    
    .salunara-modal-content {
        padding: 2rem;
        margin: 10% auto;
    }
    
    .salunara-team-social {
        gap: 0.75rem;
    }
    
    .salunara-price-amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .salunara-service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .salunara-team-photo {
        width: 120px;
        height: 120px;
    }
    
    .salunara-form {
        padding: 1.5rem 1rem;
    }
    
    .salunara-modal-content {
        padding: 1.5rem;
        margin: 15% auto;
    }
}