/* 
 * Homepage Specific Styles
 * Atelier Flint & Associates Architects Website
 * 
 * Styles specific to the homepage including futuristic hero section,
 * featured content, and page-specific components.
 */

/* ==========================================================================
   FUTURISTIC HERO SECTION WITH SLIDESHOW
   ========================================================================== */

#hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
}

/* Background Video Styles */
#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

/* Hero Slides Container */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 10;
}

.hero-slide.active {
    display: flex;
}

/* Hero Typography Animations */
.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(50px);
    animation: heroTitleFadeIn 1.2s ease-out 0.3s forwards;
}

.hero-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    animation: heroSubtitleFadeIn 1s ease-out 0.6s forwards;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    opacity: 0;
    transform: translateY(30px);
    animation: heroCTAFadeIn 1s ease-out 0.9s forwards;
}

.btn-hero-primary, .btn-hero-secondary {
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    z-index: 1;
}

.btn-hero-primary::before,
.btn-hero-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn-hero-primary:hover::before,
.btn-hero-secondary:hover::before {
    left: 100%;
}

/* Hero Stats Grid */
.hero-stats {
    opacity: 0;
    transform: translateY(30px);
    animation: heroStatsAnimateIn 1s ease-out 0.9s forwards;
}

.stat-item {
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #FFD700;
    line-height: 1;
}

.stat-label {
    font-family: 'Open Sans', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Hero Services Grid */
.hero-services {
    opacity: 0;
    transform: translateY(30px);
    animation: heroServicesAnimateIn 1s ease-out 0.9s forwards;
}

.service-item {
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(15px);
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.6);
    background: rgba(0, 0, 0, 0.6);
}

.service-item i {
    display: block;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: #FFD700;
}

.service-item h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.service-item p {
    font-family: 'Open Sans', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Slide Navigation Dots */
.slide-dot {
    cursor: pointer;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.slide-dot.active {
    background-color: #FFD700;
    border-color: #FFD700;
    transform: scale(1.2);
}

.slide-dot:hover {
    background-color: rgba(255, 215, 0, 0.7);
    border-color: #FFD700;
}

/* Slide Navigation Arrows */
#prev-slide, #next-slide {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

#prev-slide:hover, #next-slide:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    transform: scale(1.1);
}

/* Animations */
@keyframes heroTitleFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSubtitleFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroCTAFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroStatsAnimateIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroServicesAnimateIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Hero Section */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem !important;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 2rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem !important;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-services {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-item {
        padding: 1.5rem;
    }
    
    #prev-slide, #next-slide {
        width: 50px;
        height: 50px;
    }
    
    #prev-slide {
        left: 1rem;
    }
    
    #next-slide {
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   ABOUT PREVIEW SECTION
   ========================================================================== */

#about-preview {
    background-color: #F8F9FA;
    position: relative;
}

#about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700 0%, #FF6B35 50%, #007BFF 100%);
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #FFD700;
}

.highlight-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.highlight-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.credentials-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.credentials-list li {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #E5E7EB;
    transition: color 0.3s ease;
}

.credentials-list li:last-child {
    border-bottom: none;
}

.credentials-list li:hover {
    color: #FFD700;
}

.credentials-list i {
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

/* ==========================================================================
   SERVICES OVERVIEW SECTION
   ========================================================================== */

#services-overview {
    background: white;
    position: relative;
    overflow: hidden;
}

#services-overview::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
    animation: servicesBgRotate 30s linear infinite;
    z-index: 1;
}

@keyframes servicesBgRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.services-grid {
    position: relative;
    z-index: 2;
}

.service-card {
    background: #F8F9FA;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s;
    z-index: 1;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #FFD700;
    background: white;
}

.service-icon {
    position: relative;
    z-index: 2;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.3);
}

.service-card h3 {
    position: relative;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #000000;
}

.service-card p {
    position: relative;
    z-index: 2;
    font-family: 'Open Sans', sans-serif;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card ul {
    position: relative;
    z-index: 2;
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.service-card ul li {
    font-family: 'Open Sans', sans-serif;
    color: #6B7280;
    padding: 0.25rem 0;
    font-size: 0.875rem;
    position: relative;
    padding-left: 1rem;
}

.service-card ul li::before {
    content: '•';
    color: #FFD700;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-card a {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    color: #FFD700;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.service-card a:hover {
    color: #000000;
    transform: translateX(5px);
}

.service-card a i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.service-card a:hover i {
    transform: translateX(3px);
}

/* Services CTA Section */
.services-cta {
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23FFD700" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23FFD700" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23FFD700" opacity="0.1"/><circle cx="10" cy="90" r="0.5" fill="%23FFD700" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.services-cta h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.services-cta p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.services-cta .btn-group {
    position: relative;
    z-index: 2;
}

.services-cta a {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.services-cta a:first-child {
    background: #FFD700;
    color: #000000;
}

.services-cta a:first-child:hover {
    background: white;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.services-cta a:last-child {
    border: 2px solid white;
    color: white;
}

.services-cta a:last-child:hover {
    background: white;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Responsive Design for About and Services */
@media (max-width: 768px) {
    .about-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .highlight-item {
        padding: 1.5rem;
    }
    
    .highlight-number {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .services-cta {
        padding: 2rem;
    }
    
    .services-cta h3 {
        font-size: 1.5rem;
    }
    
    .services-cta a {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .highlight-number {
        font-size: 1.8rem;
    }
    
    .service-card ul {
        text-align: center;
    }
}

/* ==========================================================================
   PORTFOLIO HIGHLIGHTS SECTION
   ========================================================================== */

#portfolio-highlights {
    background: white;
    position: relative;
}

/* Portfolio Filter Buttons */
.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid #E5E7EB;
    color: #6B7280;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
    background: #FFD700;
    border-color: #FFD700;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* Portfolio Grid */
.portfolio-grid {
    margin-bottom: 3rem;
}

.portfolio-item {
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.portfolio-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.portfolio-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-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.7) 50%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content {
    color: white;
}

.portfolio-category {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.75rem;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.portfolio-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.portfolio-description {
    font-family: 'Open Sans', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.portfolio-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.portfolio-details span {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
}

.portfolio-details i {
    margin-right: 0.5rem;
    color: #FFD700;
    width: 16px;
}

.portfolio-actions {
    display: flex;
    gap: 1rem;
}

.btn-portfolio-view,
.btn-portfolio-gallery {
    background: rgba(255, 215, 0, 0.9);
    color: #000000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-portfolio-view:hover,
.btn-portfolio-gallery:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Portfolio CTA */
.portfolio-cta {
    background: #F8F9FA;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
}

.portfolio-cta h3 {
    font-family: 'Poppins', sans-serif;
    color: #000000;
    margin-bottom: 1rem;
}

.portfolio-cta p {
    font-family: 'Open Sans', sans-serif;
    color: #6B7280;
    margin-bottom: 2rem;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

#testimonials {
    background: #F8F9FA;
    position: relative;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.testimonial-avatar {
    position: relative;
    margin-bottom: 1rem;
}

.testimonial-avatar img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-top: 1rem;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 1.2rem;
}

.testimonial-content {
    text-align: left;
}

.testimonial-quote {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.125rem;
    font-style: italic;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
}

.testimonial-quote::before {
    content: '"';
    font-family: 'Georgia', serif;
    font-size: 4rem;
    color: #FFD700;
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    line-height: 1;
}

.testimonial-author h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    font-family: 'Open Sans', sans-serif;
    color: #6B7280;
    margin-bottom: 0.5rem;
}

.testimonial-author small {
    font-family: 'Open Sans', sans-serif;
    color: #FFD700;
    font-weight: 600;
}

/* Carousel Custom Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: -30px;
}

.carousel-control-next {
    right: -30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: #FFD700;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Custom Indicators */
.custom-indicators {
    bottom: -50px;
    margin-bottom: 0;
}

.custom-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D1D5DB;
    border: none;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.custom-indicators button.active {
    background: #FFD700;
    transform: scale(1.2);
}

/* Testimonial Stats */
.testimonial-stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #000000;
    font-size: 1.5rem;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Open Sans', sans-serif;
    color: #6B7280;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

#contact {
    background: white;
    position: relative;
}

.contact-info {
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 16px;
    height: fit-content;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    color: #000000;
    font-size: 1.2rem;
}

.contact-details h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-family: 'Open Sans', sans-serif;
    color: #6B7280;
    line-height: 1.6;
}

.contact-details a {
    color: inherit;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #FFD700;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #E5E7EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #FFD700;
    color: #000000;
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrapper {
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 16px;
}

.contact-form .form-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #FFD700;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

.contact-form .btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 1rem 3rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

/* Quick Action Cards */
.quick-actions {
    margin-top: 3rem;
}

.quick-action-card {
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.quick-action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #FFD700;
    background: white;
}

.action-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #000000;
}

.quick-action-card h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.quick-action-card p {
    font-family: 'Open Sans', sans-serif;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.quick-action-card .btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quick-action-card .btn:hover {
    transform: translateY(-2px);
}

/* Responsive Design for Portfolio, Testimonials & Contact */
@media (max-width: 768px) {
    .portfolio-filters {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .portfolio-overlay {
        padding: 1.5rem;
    }
    
    .portfolio-title {
        font-size: 1.25rem;
    }
    
    .portfolio-actions {
        flex-direction: column;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-avatar img {
        width: 80px;
        height: 80px;
    }
    
    .testimonial-quote {
        font-size: 1rem;
        padding-left: 1.5rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .quick-action-card {
        padding: 1.5rem;
    }
    
    .action-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .portfolio-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-quote::before {
        font-size: 2.5rem;
        top: -0.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}
