:root {
    --cream: #FAF9F6;
    --warm-white: #FFFEF7;
    --blush-pink: #F4E6E7;
    --sage-green: #5c6b41;
    --soft-gray: #726e6a;
    --charcoal: #2C2C2C;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--warm-white);
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.hero-gradient {
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 50%, var(--blush-pink) 100%);
}

.text-gradient {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--soft-gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary {
    background: linear-gradient(135deg, var(--sage-green) 0%, #9CAF88 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(183, 196, 160, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(183, 196, 160, 0.4);
    color: white;
}

.btn-secondary {
    border: 2px solid var(--sage-green);
    color: var(--sage-green);
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-secondary:hover {
    background: var(--sage-green);
    color: white;
    transform: translateY(-2px);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.overlay {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(250,249,246,0.8) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    aspect-ratio: 4/5;
}

.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;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(183, 196, 160, 0.8) 0%, rgba(244, 230, 231, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}

.lightbox.show {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.pricing-card {
    background: white;
    border-radius: 30px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--sage-green);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--sage-green);
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 0.9rem;
    font-weight: 600;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--sage-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    margin-right: 2rem;
    flex-shrink: 0;
}

.testimonial-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    position: relative;
    margin: 2rem 0;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 6rem;
    color: var(--blush-pink);
    font-family: 'Playfair Display', serif;
}

.star-rating {
    color: #FFD700;
    margin-bottom: 1rem;
}

.floating-navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.floating-navbar.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E5E5E5;
    border-radius: 15px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: var(--sage-green);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-info {
    background: linear-gradient(135deg, var(--sage-green) 0%, #9CAF88 100%);
    color: white;
    border-radius: 25px;
    padding: 3rem;
}

.social-links a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: white;
    color: var(--sage-green);
    transform: translateY(-3px);
}

.image-placeholder {
    background: linear-gradient(135deg, var(--cream) 0%, var(--blush-pink) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--soft-gray);
    font-size: 3rem;
    border-radius: 15px;
}

.hero-image {
    background: linear-gradient(135deg, var(--blush-pink) 0%, var(--sage-green) 50%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}