/* FM Nail Studio - Turquoise Luxury Theme */

/* CSS Variables for the new color palette */
:root {
    --primary: #40E0D0;      /* Turquoise */
    --secondary: #20B2AA;    /* Light Sea Green */
    --accent: #00FFFF;       /* Cyan/Aqua */
    --dark: #008B8B;         /* Dark Cyan */
    --light: #E0FFFF;        /* Light Cyan */
    --neutral: #2F4F4F;      /* Dark Slate Gray */
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.1);
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(64, 224, 208, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(64, 224, 208, 0.6);
    }
}

/* Animation classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

/* Glass morphism effect */
.glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
    background: rgba(47, 79, 79, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom hover effects */
.hover-lift {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(64, 224, 208, 0.15);
}

/* Turquoise gradient backgrounds */
.gradient-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.gradient-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.gradient-accent {
    background: linear-gradient(135deg, var(--accent), var(--primary));
}

.gradient-dark {
    background: linear-gradient(135deg, var(--dark), var(--neutral));
}

/* Custom button styles with turquoise theme */
.btn-turquoise {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-turquoise::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-turquoise:hover::before {
    left: 100%;
}

.btn-turquoise:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(64, 224, 208, 0.4);
}

/* Navigation enhancements */
.nav-blur {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(64, 224, 208, 0.1);
}

/* Service card hover effects with turquoise theme */
.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(64, 224, 208, 0.1), transparent);
    transition: left 0.8s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(64, 224, 208, 0.15);
}

/* Time slot custom styles with turquoise theme */
.time-slot input[type="radio"]:checked + label {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    color: white !important;
    border-color: var(--primary) !important;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(64, 224, 208, 0.3);
}

.time-slot label:hover {
    border-color: var(--primary);
    background: rgba(64, 224, 208, 0.05);
    transform: translateY(-2px);
}

/* Form enhancements */
.form-input:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(64, 224, 208, 0.15);
    border-color: var(--primary);
}

/* Loading spinner with turquoise theme */
.spinner {
    border: 3px solid rgba(64, 224, 208, 0.1);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success and error message styles */
.alert-slide-in {
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.alert-slide-out {
    animation: slideOutRight 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Custom scrollbar with turquoise theme */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(224, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--secondary), var(--dark));
}

/* Text gradient effects */
.text-gradient-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-accent {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Backdrop blur utilities */
.backdrop-blur-light {
    backdrop-filter: blur(10px);
}

.backdrop-blur-medium {
    backdrop-filter: blur(15px);
}

.backdrop-blur-heavy {
    backdrop-filter: blur(25px);
}

/* Shadow utilities with turquoise theme */
.shadow-turquoise {
    box-shadow: 0 10px 25px rgba(64, 224, 208, 0.15);
}

.shadow-turquoise-lg {
    box-shadow: 0 20px 40px rgba(64, 224, 208, 0.2);
}

.shadow-turquoise-xl {
    box-shadow: 0 25px 50px rgba(64, 224, 208, 0.25);
}

/* Border utilities */
.border-gradient-primary {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--primary), var(--secondary)) border-box;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-text {
        font-size: 2.5rem;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
    
    .time-slot label {
        padding: 0.75rem 0.5rem;
        font-size: 0.875rem;
    }
    
    .glass {
        backdrop-filter: blur(10px);
    }
}

@media (max-width: 640px) {
    .hero-text {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .btn-turquoise {
        padding: 0.75rem 1.5rem;
    }
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    * {
        background: white !important;
        color: black !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-turquoise {
        background: #000;
        color: #fff;
        border: 2px solid #fff;
    }
    
    .time-slot input[type="radio"]:checked + label {
        background: #000 !important;
        color: #fff !important;
        border: 2px solid #fff !important;
    }
    
    .text-gradient-primary,
    .text-gradient-accent {
        -webkit-text-fill-color: initial;
        color: #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .hover-lift:hover {
        transform: none;
    }
}

/* Dark mode support (if needed in future) */
@media (prefers-color-scheme: dark) {
    .glass {
        background: rgba(47, 79, 79, 0.2);
        border: 1px solid rgba(64, 224, 208, 0.2);
    }
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Selection styles */
::selection {
    background: rgba(64, 224, 208, 0.3);
    color: var(--neutral);
}
/* Polic
ies Page Styles */
.policy-highlight {
    background: #f8f9fa;
    border-left: 5px solid var(--primary);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.policy-highlight:hover {
    transform: translateY(-5px);
}

.policy-highlight.warning {
    border-left-color: #ffc107;
    background: #fff8e1;
}

.policy-highlight.danger {
    border-left-color: #dc3545;
    background: #ffebee;
}

.policy-highlight i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.policy-highlight.warning i {
    color: #ffc107;
}

.policy-highlight.danger i {
    color: #dc3545;
}

.policy-highlight h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--neutral);
    margin-bottom: 1rem;
}

.policy-highlight p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.policy-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary);
}

.policy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.policy-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.policy-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--neutral);
    margin-bottom: 1rem;
}

.policy-card p {
    color: #666;
    line-height: 1.6;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.payment-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.payment-item i {
    font-size: 2.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.payment-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--neutral);
    margin-bottom: 1rem;
}

.payment-item ul {
    list-style: none;
    padding: 0;
}

.payment-item li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.payment-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.payment-item .small-text {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.term-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--primary);
}

.term-item:hover {
    transform: translateY(-5px);
}

.term-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.term-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--neutral);
    margin-bottom: 1rem;
}

.term-item p {
    color: #666;
    line-height: 1.6;
}

.contact-policies {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-policies p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-btn.whatsapp {
    background: #25d366;
    color: white;
}

.contact-btn.whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.contact-btn.phone {
    background: var(--primary);
    color: white;
}

.contact-btn.phone:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.contact-btn.email {
    background: #6c757d;
    color: white;
}

.contact-btn.email:hover {
    background: #495057;
    transform: translateY(-2px);
}

.section-title i {
    color: var(--primary);
}

.mr-2 {
    margin-right: 0.5rem;
}

.mr-3 {
    margin-right: 1rem;
}

/* Responsive Design for Policies */
@media (max-width: 768px) {
    .policy-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .terms-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 200px;
        justify-content: center;
    }
    
    .policy-highlight {
        padding: 1.5rem;
    }
    
    .payment-item {
        flex-direction: column;
        text-align: center;
    }
}