/* Sections and Components Styles */

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    animation: slideUp 0.8s ease-in-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* About Section */
.about-section {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-charcoal);
}

.about-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.about-features {
    list-style: none;
    margin-top: 2rem;
}

.about-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
}

.about-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-dark);
}

/* Services Section */
.services-section {
    background-color: var(--primary-beige);
    padding: 4rem 0;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-title {
    color: var(--dark-charcoal);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-excerpt {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Portfolio / Projects */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.portfolio-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-light));
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    box-shadow: var(--shadow-dark);
    transform: translateY(-5px);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-title {
    padding: 1.5rem;
    color: var(--dark-charcoal);
    margin: 0;
    font-size: 1.3rem;
}

.portfolio-category {
    padding: 0 1.5rem 1.5rem;
    color: var(--gold-accent);
    font-size: 0.9rem;
    margin: 0;
}

/* Testimonials */
.testimonials-slider {
    background-color: var(--primary-beige);
    padding: 4rem 2rem;
    border-radius: 8px;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    overflow-x: hidden;
}

.testimonial-slide {
    flex: 0 0 100%;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-light));
}

.testimonial-content {
    text-align: center;
}

.testimonial-stars {
    color: var(--gold-accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.2rem;
}

.testimonial-slide p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-charcoal);
}

.testimonial-location {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.slider-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.slider-prev,
.slider-next {
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold-accent);
    background: transparent;
    color: var(--gold-accent);
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    background-color: var(--gold-accent);
    color: white;
}

/* Statistics */
.statistics-section {
    padding: 3rem 0;
    background-color: var(--dark-charcoal);
    color: white;
}

.stat-card {
    padding: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* FAQ Accordion */
.faq-accordion {
    margin: 2rem 0;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background-color: var(--primary-white);
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: var(--primary-beige);
    color: var(--gold-accent);
}

.faq-question.active {
    background-color: var(--gold-accent);
    color: white;
}

.faq-icon {
    font-size: 1.5rem;
}

.faq-answer {
    padding: 1.5rem;
    background-color: var(--primary-beige);
    color: var(--text-light);
    line-height: 1.8;
}

/* Cards with Glassmorphism */
.glass-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}
