﻿ 
:root {
    --primary-black: #000000;
    --secondary-black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --gold: #FFD700;
    --gold-light: #FFE55C;
    --gold-dark: #B8860B;
    --text-light: #ffffff;
    --text-gray: #cccccc;
}

body {
    background-color: var(--primary-black);
    color: var(--text-light);
}

/* Page Header */
.page-header {
    position: relative;
    padding: 60px 0;
    margin-bottom: 50px;
    text-align: center;
    overflow: hidden;
}

    .page-header::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
        animation: rotate 30s linear infinite;
        z-index: -1;
    }

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.page-header h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

/* Emotional Quote Section */
.emotional-quote {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
    padding: 60px 0;
    margin: 40px 0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 20px;
}

.quote-text {
    font-size: 2rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.quote-author {
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 600;
}

/* Service Cards (Without Price) */
.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    cursor: pointer;
}

    .service-card:hover {
        transform: translateY(-10px) scale(1.02);
        border-color: var(--gold);
        box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    }

.service-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

    .service-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.service-card:hover .service-image-wrapper img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay p {
    color: var(--gold);
    font-size: 1rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.service-card:hover .service-overlay p {
    transform: translateY(0);
}

.service-content {
    padding: 20px;
}

.service-title {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.feature-tag {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    padding: 5px 12px;
    border-radius: 25px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2 {
        font-size: 3rem;
        font-weight: 800;
        color: var(--gold);
        margin-bottom: 15px;
    }

    .section-title p {
        color: var(--text-gray);
        font-size: 1.2rem;
        max-width: 600px;
        margin: 0 auto;
    }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

    .gallery-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .gallery-item:nth-child(2) {
        animation-delay: 0.2s;
    }

    .gallery-item:nth-child(3) {
        animation-delay: 0.3s;
    }

    .gallery-item:nth-child(4) {
        animation-delay: 0.4s;
    }

    .gallery-item:nth-child(5) {
        animation-delay: 0.5s;
    }

    .gallery-item:nth-child(6) {
        animation-delay: 0.6s;
    }

    .gallery-item:nth-child(7) {
        animation-delay: 0.7s;
    }

    .gallery-item:nth-child(8) {
        animation-delay: 0.8s;
    }

    .gallery-item:nth-child(9) {
        animation-delay: 0.9s;
    }

    .gallery-item:nth-child(10) {
        animation-delay: 1s;
    }

    .gallery-item:nth-child(11) {
        animation-delay: 1.1s;
    }

    .gallery-item:nth-child(12) {
        animation-delay: 1.2s;
    }

    .gallery-item:nth-child(13) {
        animation-delay: 1.3s;
    }

    .gallery-item:nth-child(14) {
        animation-delay: 1.4s;
    }

    .gallery-item:nth-child(15) {
        animation-delay: 1.5s;
    }

    .gallery-item img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--gold);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    text-align: center;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-caption p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Emotional Messages */
.emotional-message {
    text-align: center;
    padding: 30px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    margin: 30px 0;
    border-left: 4px solid var(--gold);
}

    .emotional-message i {
        font-size: 2.5rem;
        color: var(--gold);
        margin-bottom: 15px;
    }

    .emotional-message h3 {
        color: var(--gold);
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .emotional-message p {
        color: var(--text-gray);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
    }

/* Animations */
@@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Lightbox Modal */
.modal-gallery {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 1100;
    cursor: pointer;
}

    .modal-gallery.active {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-gallery img {
        max-width: 90%;
        max-height: 90%;
        object-fit: contain;
        border: 3px solid var(--gold);
        border-radius: 10px;
    }

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--gold);
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .modal-close:hover {
        transform: scale(1.2);
    }

/* Responsive */
@@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .quote-text {
        font-size: 1.3rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

 