/* Beautiful You Website Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Open+Sans:wght@300;400;600&display=swap');

/* CSS Variables for Pastel Color Palette */
:root {
    --soft-pink: #FADADD;
    --lavender: #E6E6FA;
    --mint-green: #DFFFE0;
    --baby-blue: #D6EAF8;
    --light-peach: #FFE5B4;
    --white: #FFFFFF;
    --text-dark: #555555;
    --text-light: #777777;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Typography */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--light-peach), var(--soft-pink));
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 120px;
    width: auto;
    margin-right: 60px;
}

/* Burger Menu Styles (Hidden on Desktop) */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.burger-menu:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.burger-line {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
}

/* Burger menu animation when active */
.burger-menu.active {
    background: rgba(255, 255, 255, 0.3);
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--text-dark);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--text-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 12px;
    position: relative;
    margin-left: auto;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    padding: 14px 22px;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-align: center;
    min-width: 85px;
    height: 45px;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    z-index: 10;
}

/* Floating animation for buttons - REMOVED */
/* Static buttons with no bounce effect */

/* Static buttons with no bounce effect */

/* Glowing edge effect */
.nav-menu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, 
        transparent, 
        rgba(255, 255, 255, 0.6), 
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Shimmer effect */
.nav-menu li a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        rgba(255, 255, 255, 0.6),
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.6s ease;
    border-radius: 30px;
}

/* Hover effects - "fly over" behavior */
.nav-menu li a:hover {
    background: linear-gradient(135deg, var(--soft-pink), var(--lavender));
    color: var(--text-dark);
    transform: translateY(-12px) scale(1.08);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(255, 182, 193, 0.4);
    border-color: var(--soft-pink);
    z-index: 20;
}

.nav-menu li a:hover::before {
    opacity: 1;
}

.nav-menu li a:hover::after {
    left: 100%;
}

/* Active state with pulsing glow */
.nav-menu li a:active {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.1s ease;
}

/* Current page active state */
.nav-menu li a.active {
    background: linear-gradient(135deg, var(--lavender), var(--soft-pink));
    color: var(--text-dark);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 0 20px rgba(230, 230, 250, 0.5);
    border-color: var(--lavender);
}

/* Enhanced Navigation Button Effects */
.nav-menu li a:focus {
    outline: none;
    box-shadow: 
        0 0 0 4px rgba(52, 152, 219, 0.3), 
        0 8px 25px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(52, 152, 219, 0.4);
    transform: translateY(-8px) scale(1.05);
    background: linear-gradient(135deg, var(--baby-blue), var(--lavender));
    animation: none;
}

/* Magnetic effect on hover */
.nav-menu li {
    position: relative;
}

.nav-menu li:hover {
    z-index: 30;
}

/* Special fly-over effects for different button types - REMOVED */
/* All buttons now use the same standard styling as home button */

/* Prevent collision between floating buttons */
.nav-menu li a:hover {
    z-index: 50;
}

/* Pulse animation for active button with enhanced glow */
@keyframes buttonPulse {
    0% {
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.15),
            0 0 20px rgba(230, 230, 250, 0.5);
    }
    50% {
        box-shadow: 
            0 12px 35px rgba(0, 0, 0, 0.25), 
            0 0 40px rgba(255, 255, 255, 0.8),
            0 0 60px rgba(230, 230, 250, 0.7);
    }
    100% {
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.15),
            0 0 20px rgba(230, 230, 250, 0.5);
    }
}

.nav-menu li a.active {
    animation: activeFloat 3s ease-in-out infinite, buttonPulse 2s ease-in-out infinite;
}

/* Pulse animation for active button */
@keyframes buttonPulse {
    0% {
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25), 0 0 20px rgba(255, 255, 255, 0.3);
    }
    100% {
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    }
}

.nav-menu li a.active {
    animation: buttonPulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Button ripple effect */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.nav-button {
    position: relative;
    overflow: hidden;
}

.nav-button:active::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s linear;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-left: -10px;
    margin-top: -10px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Main Content */
.main-content {
    margin-top: 90px;
    min-height: calc(100vh - 90px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--soft-pink), var(--lavender));
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 50px;
}

.hero h1 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.service-card:nth-child(odd) {
    background: linear-gradient(135deg, var(--mint-green), var(--baby-blue));
}

.service-card:nth-child(even) {
    background: linear-gradient(135deg, var(--light-peach), var(--lavender));
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.5;
}

/* Forms */
.form-container {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--lavender);
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--soft-pink);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn {
    background: linear-gradient(135deg, var(--soft-pink), var(--lavender));
    color: var(--text-dark);
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Contact Info */
.contact-info {
    background: linear-gradient(135deg, var(--mint-green), var(--baby-blue));
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--lavender), var(--baby-blue));
    padding: 40px 20px;
    text-align: center;
    margin-top: 50px;
}

.footer p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Success/Error Messages */
.message {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.message.success {
    background-color: var(--mint-green);
    color: var(--text-dark);
    border: 2px solid #90EE90;
}

.message.error {
    background-color: #FFE4E1;
    color: var(--text-dark);
    border: 2px solid #FFB6C1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 20px;
    }
    
    /* Show burger menu on mobile */
    .burger-menu {
        display: flex !important;
        z-index: 1001;
    }
    
    /* Completely hide nav menu by default on mobile - Override desktop styles */
    .nav-menu {
        display: none !important; /* Hide completely until activated */
        position: fixed !important;
        top: 0;
        right: -100% !important;
        width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, var(--light-peach), var(--soft-pink));
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 100px;
        gap: 20px;
        transition: right 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
        margin-left: 0 !important;
    }
    
    /* Show nav menu when active - Override the display: none */
    .nav-menu.active {
        display: flex !important;
        right: 0 !important;
    }
    
    /* Mobile menu items styling */
    .nav-menu li {
        width: 100%;
        text-align: center;
        margin: 0;
    }
    
    .nav-menu li a {
        display: block;
        width: 80%;
        margin: 0 auto;
        padding: 15px 20px;
        font-size: 16px;
        border-radius: 25px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
        border: 2px solid rgba(255, 255, 255, 0.5);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        /* Remove float animation on mobile for performance */
        animation: none;
        position: relative;
        overflow: hidden;
    }
    
    /* Add ripple effect for touch feedback */
    .nav-menu li a::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.3s, height 0.3s;
    }
    
    .nav-menu li a:active::after {
        width: 300px;
        height: 300px;
    }
    
    .nav-menu li a:hover, .nav-menu li a:active {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.9));
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Add overlay when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .main-content {
        margin-top: 90px; /* Reduced since nav is now horizontal on mobile */
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 30px 15px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 12px 15px;
    }
    
    .logo {
        height: 80px;
    }
    
    .nav-menu {
        width: 280px;
        padding-top: 80px;
    }
    
    .nav-menu li a {
        width: 90%;
        font-size: 15px;
        padding: 12px 18px;
    }
    
    .nav-menu li a {
        width: 100%;
        padding: 14px 22px;
        font-size: 14px;
        text-align: center;
        border-radius: 30px;
        /* Gentler animation on very small screens */
        animation: float 8s ease-in-out infinite;
    }
    
    .nav-menu li a:hover {
        /* Simplified hover for small touch screens */
        transform: translateY(-4px) scale(1.02);
        box-shadow: 
            0 8px 20px rgba(0, 0, 0, 0.15),
            0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .main-content {
        margin-top: 280px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    .hero {
        padding: 50px 15px;
    }
}

/* ============================================================================ */
/* ANIMATIONS AND INTERACTIVE ENHANCEMENTS */
/* ============================================================================ */

/* Page Load 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 slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Page Transition Effects */
.page-transition {
    animation: fadeInUp 0.6s ease-out;
}

.hero {
    animation: fadeInUp 0.8s ease-out;
}

.service-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* Form Animations */
.form-container {
    animation: fadeInUp 0.7s ease-out;
}

.form-group {
    animation: fadeInLeft 0.5s ease-out;
    animation-fill-mode: both;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }

/* Enhanced Button Animations */
.btn {
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    transition: all 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn:active {
    transform: translateY(0);
    transition: transform 0.1s;
}

/* Loading States */
.loading {
    position: relative;
    color: transparent;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--soft-pink);
    border-radius: 50%;
    border-top-color: var(--lavender);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================================================ */
/* CALENDAR PICKER STYLES */
/* ============================================================================ */

.calendar-picker {
    background: white;
    border: 2px solid var(--soft-pink);
    border-radius: 10px;
    padding: 20px;
    margin-top: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.4s ease-out;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--soft-pink);
}

.calendar-header button {
    background: var(--lavender);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-header button:hover {
    background: var(--soft-pink);
    transform: scale(1.1);
}

#current-month-year {
    font-weight: 600;
    font-size: 18px;
    color: var(--text-dark);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 15px;
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    color: var(--text-light);
    padding: 10px 5px;
    font-size: 14px;
}

.calendar-day {
    text-align: center;
    padding: 10px 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-day.empty {
    cursor: default;
}

.calendar-day.past-day {
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.available-day:hover {
    background: var(--mint-green);
    transform: scale(1.1);
}

.calendar-day.selected-day {
    background: var(--lavender);
    color: var(--text-dark);
    font-weight: 600;
    transform: scale(1.05);
}

.calendar-day.today {
    background: var(--soft-pink);
    font-weight: 600;
}

.calendar-day.busy-day {
    background: var(--light-peach);
    color: var(--text-dark);
}

.calendar-day.closed-day {
    background: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--soft-pink);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-light);
}

.legend-item span:first-child {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.legend-item .available-day {
    background: var(--mint-green);
}

.legend-item .busy-day {
    background: var(--light-peach);
}

.legend-item .closed-day {
    background: #f8f9fa;
}

.calendar-toggle-btn {
    background: var(--baby-blue);
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.calendar-toggle-btn:hover {
    background: var(--lavender);
    transform: translateY(-1px);
}

/* ============================================================================ */
/* BLOG AND TESTIMONIAL STYLES */
/* ============================================================================ */

.featured-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.featured-post-card {
    background: linear-gradient(135deg, var(--soft-pink), var(--lavender));
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.featured-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.post-date, .post-author {
    background: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    border-radius: 20px;
}

.featured-badge {
    background: var(--mint-green);
    color: var(--text-dark);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.post-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-content h3 a:hover {
    color: var(--lavender);
}

.post-excerpt {
    line-height: 1.6;
    margin: 15px 0;
}

.post-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.post-views {
    font-size: 14px;
    color: var(--text-light);
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.blog-post-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.blog-post-card:nth-child(odd) {
    animation-delay: 0.1s;
}

.blog-post-card:nth-child(even) {
    animation-delay: 0.2s;
}

.blog-post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.post-tags {
    margin: 15px 0;
}

.tag {
    background: var(--mint-green);
    color: var(--text-dark);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
    margin-right: 8px;
    display: inline-block;
    margin-bottom: 5px;
}

.read-more-link {
    color: var(--lavender);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: var(--soft-pink);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.testimonials-grid.featured {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.testimonial-card.featured {
    background: linear-gradient(135deg, var(--mint-green), var(--baby-blue));
    padding: 30px;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.customer-info h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
}

.location {
    font-size: 14px;
    color: var(--text-light);
}

.rating {
    display: flex;
    gap: 2px;
}

.star {
    color: #ddd;
    font-size: 18px;
    transition: color 0.3s ease;
}

.star.filled {
    color: #ffc107;
}

.service-tag {
    background: var(--lavender);
    color: var(--text-dark);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    display: inline-block;
    margin-top: 10px;
}

.testimonial-date {
    font-size: 12px;
    color: var(--text-light);
    text-align: right;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* Newsletter Signup */
.newsletter-signup {
    background: linear-gradient(135deg, var(--baby-blue), var(--mint-green));
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin: 50px 0;
    animation: fadeInUp 0.7s ease-out;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group-inline {
    display: flex;
    gap: 15px;
    align-items: stretch;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

.newsletter-btn {
    white-space: nowrap;
    padding: 12px 25px;
}

/* Responsive Design for New Elements */
@media (max-width: 768px) {
    .form-group-inline {
        flex-direction: column;
    }
    
    .newsletter-input {
        min-width: unset;
    }
    
    .calendar-picker {
        padding: 15px;
    }
    
    .calendar-grid {
        gap: 3px;
    }
    
    .calendar-day {
        min-height: 30px;
        font-size: 14px;
    }
    
    .featured-posts {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid.featured {
        grid-template-columns: 1fr;
    }
    
    .post-actions {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
}