/* Enhanced Home Page Styles */
.hero-section {
    position: relative;
    height: 80vh;
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(240, 240, 240, 0.3)), url('../images/homep.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.4;
}

.cta-button {
    background: #60b5da;
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(96, 181, 218, 0.3);
}

.cta-button:hover {
    background: #4a9dc4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96, 181, 218, 0.4);
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    background: white;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #60b5da;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.benefits-section {
    background: #f8f9fa;
    padding: 60px 0;
    margin: 60px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-icon {
    font-size: 2.5rem;
    color: #60b5da;
    margin-bottom: 15px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #60b5da;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: bold;
    font-size: 1.2rem;
}

.testimonial-section {
    background: transparent;
    color: #424949;
    padding: 60px 0;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: bold;
    color: #60b5da;
}

.gallery-preview {
    margin: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.urgency-banner {
    background: #60b5da;
    color: white;
    text-align: center;
    padding: 20px;
    margin: 40px 0;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #424949;
}

/* Canvas Icon Styles */
.canvas-icon {
    position: relative;
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.canvas-frame {
    position: absolute;
    width: 80%;
    height: 70%;
    background: #fff;
    border: 15px solid #e9ecef;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-radius: 5px;
}

.canvas-art {
    position: absolute;
    width: 70%;
    height: 60%;
    background: linear-gradient(45deg, #60b5da, #e03076, #424949);
    opacity: 0.8;
    border-radius: 3px;
    animation: colorShift 8s ease-in-out infinite;
}

@keyframes colorShift {
    0% { background: linear-gradient(45deg, #60b5da, #e03076, #424949); }
    33% { background: linear-gradient(45deg, #e03076, #424949, #60b5da); }
    66% { background: linear-gradient(45deg, #424949, #60b5da, #e03076); }
    100% { background: linear-gradient(45deg, #60b5da, #e03076, #424949); }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .features-grid,
    .benefits-grid,
    .process-steps,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}
