/* Landing Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #cc3366;
    --primary-hover: #b02954;
    --dark-blue: #001B44;
    --light-blue: #E6F0FF;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    color: var(--primary-color);
    font-size: 24px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Button Styles */
.btn {
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #0052CC;
    transform: translateY(-2px);
}

.btn-primary-white {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-primary-white:hover {
    background: #f5f5f5;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 0s linear 1s;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 1s ease-in-out, visibility 0s linear 0s;
    z-index: 2;
}

.hero-slide[data-bg="/images/landing/Casablanca_Vission-1-1.png"] {
    background: linear-gradient(135deg, rgba(0, 27, 68, 0.4), rgba(0, 61, 130, 0.4)), url('/images/landing/Casablanca_Vission-1-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide[data-bg="/images/landing/img32.jpg"] {
    background: linear-gradient(135deg, rgba(0, 27, 68, 0.4), rgba(0, 61, 130, 0.4)), url('/images/landing/img32.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide[data-bg="/images/landing/img72.jpg"] {
    background: linear-gradient(135deg, rgba(0, 27, 68, 0.4), rgba(0, 61, 130, 0.4)), url('/images/landing/img72.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    margin-top: 250px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 8px 20px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    color: white;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-hero-primary {
    background: #cc3366;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-hero-primary:hover {
    background: #b02954;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204, 51, 102, 0.3);
}

/* Navigation Arrows */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(204, 51, 102, 0.9);
    border: none;
    border-radius: 8px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.hero-nav:hover {
    background: #cc3366;
    transform: translateY(-50%) scale(1.1);
}

.hero-nav-prev {
    left: 30px;
}

.hero-nav-next {
    right: 30px;
}

/* Slide Indicators */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: #cc3366;
    border-color: #cc3366;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .hero-nav {
        width: 40px;
        height: 40px;
    }
    
    .hero-nav-prev {
        left: 15px;
    }
    
    .hero-nav-next {
        right: 15px;
    }
    
    .btn-hero-primary {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Experience Section */
.experience-section {
    padding: 80px 0;
    background: var(--white);
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.section-title {
    text-align: start;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    line-height: 1.3;
}

.text-blue {
    color: var(--primary-blue);
}

.text-light {
    font-weight: 300;
    color: var(--text-light);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.experience-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.experience-card:hover {
    transform: translateY(-10px);
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.card-title {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-dark);
}

.section-action {
    text-align: center;
    margin-top: 40px;
}

/* Tailor Made Section */
.tailor-made-section {
    padding: 80px 0;
    background: var(--light-blue);
}

.tailor-made-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.section-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.content-right img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Products Banner */
.products-banner {
    background: var(--dark-blue);
    color: var(--white);
    padding: 20px 0;
    overflow: hidden;
}

.banner-text {
    font-size: 24px;
    font-weight: 700;
    white-space: nowrap;
    text-align: left;
    animation: scroll 15s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Generator Products Section */
.generator-products-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* .generator-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    opacity: 0.03;
    border-radius: 50%;
    transform: translate(30%, -30%);
} */

.featured-header {
    text-align: center;
    margin-bottom: 60px;
}

.featured-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.featured-badge i {
    margin-right: 5px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.section-title-center {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-blue);
    line-height: 1.2;
}

.highlight-text {
    color: var(--primary-color);
    position: relative;
    text-align: center;
}

.section-subtitle-center {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 60px;
    font-size: 18px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 60px;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    padding: 0;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(204, 51, 102, 0.2);
    border-color: var(--primary-color);
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--white);
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(204, 51, 102, 0.3);
}

.product-badge i {
    margin-right: 5px;
    font-size: 11px;
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #f5f5f5;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(204, 51, 102, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .image-overlay {
    opacity: 1;
}

.view-details {
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    padding: 12px 30px;
    border: 2px solid var(--white);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.view-details:hover {
    background: var(--white);
    color: var(--primary-color);
}

.product-content {
    padding: 25px;
    text-align: left;
}

.product-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-blue);
}

.product-description {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--text-light);
}

.product-description i {
    color: var(--primary-color);
    margin-right: 8px;
}

.project-specs {
    display: flex;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-light);
}

.spec-item i {
    color: var(--primary-color);
    font-size: 14px;
}

.product-link {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.product-link:hover {
    text-decoration: underline;
}

/* Planet Section */
.planet-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #004D40 0%, #00695C 100%);
    color: var(--white);
    position: relative;
}

.planet-background {
    position: relative;
}

.planet-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/images/landing/planet-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.planet-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.planet-icon {
    margin-bottom: 30px;
}

.section-title-white {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.section-text-white {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.8;
}

/* Blog Cases Section */
.blog-cases-section {
    padding: 80px 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.blog-card-featured {
    background: var(--primary-blue);
    color: var(--white);
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 10px;
}

.blog-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    display: block;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.8;
}

.blog-link {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.blog-link:hover {
    text-decoration: underline;
}

/* After Sales Section */
.after-sales-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.after-sales-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-left img {
    width: 100%;
    border-radius: 12px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 14px;
    font-weight: 600;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #CC3366 0%, #CC3366 100%);
    color: var(--white);
    position: relative;
}

.contact-background {
    position: relative;
}

.contact-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/images/landing/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.contact-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-form {
    margin-top: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: inherit;
    font-size: 16px;
}

.form-row textarea {
    grid-column: 1 / -1;
    resize: vertical;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid var(--border-color);
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.newsletter-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.newsletter-text {
    color: var(--text-light);
}

.newsletter-form {
    display: flex;
    gap: 15px;
}

.newsletter-form input {
    padding: 12px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    min-width: 300px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

/* Footer Styles */
.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
}

.footer-links-group h4,
.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--white);
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--primary-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .experience-grid,
    .products-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title,
    .section-title-center {
        font-size: 32px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .experience-grid,
    .products-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .tailor-made-content,
    .after-sales-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Featured Projects Page Styles */
.featured-projects-hero {
    background-color: #CC3366;
    padding: 80px 0 60px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}



.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb span {
    margin: 0 10px;
}

.page-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Projects Showcase Section */
.featured-projects-showcase {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-intro {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.intro-text {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
   
    line-height: 1.8;
    text-align: left;
}

/* Projects Filter */
.projects-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Detailed Projects Grid */
.projects-grid-detailed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.project-card-detailed {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.project-card-detailed:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(204, 51, 102, 0.15);
}

.project-image-wrapper {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.project-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card-detailed:hover .project-image-wrapper img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 27, 68, 0.5), rgba(204, 51, 102, 0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-card-detailed:hover .project-overlay {
    opacity: 1;
}

.project-status {
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.project-status i {
    margin-right: 8px;
}

.project-details {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.project-type,
.project-year {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-light);
}

.project-type i,
.project-year i {
    color: var(--primary-color);
    font-size: 12px;
}

.project-title-detailed {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.project-location {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 15px;
}

.project-location i {
    color: var(--primary-color);
    margin-right: 8px;
}

.project-description-detailed {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    flex: 1;
}

.project-specs-detailed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-top: 20px;
    border-top: 2px solid #f5f5f5;
}

.spec-item-detailed {
    display: flex;
    align-items: center;
    gap: 12px;
}

.spec-item-detailed i {
    font-size: 24px;
    color: var(--primary-color);
}

.spec-info {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-blue);
}

/* Projects CTA Section */
.projects-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-large i {
    margin-right: 10px;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Responsive Design for Featured Projects Page */
@media (max-width: 1024px) {
    .projects-grid-detailed {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .featured-projects-hero {
        padding: 80px 0 60px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .projects-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .project-specs-detailed {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(204, 51, 102, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-choose-us-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(204, 51, 102, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-choose-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.why-choose-header .section-subtitle {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.why-choose-header .section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.why-choose-header .highlight-text {
    color: var(--primary-color);
    position: relative;
}

.why-choose-header .section-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Features Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.why-choose-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(204, 51, 102, 0.1);
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(204, 51, 102, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(204, 51, 102, 0.15);
    border-color: var(--primary-color);
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-card:hover::after {
    opacity: 1;
}

.why-choose-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(204, 51, 102, 0.1), rgba(204, 51, 102, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.card-icon svg {
    transition: all 0.3s ease;
}

.why-choose-card:hover .card-icon svg {
    filter: brightness(0) invert(1);
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.card-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Call to Action */
.why-choose-cta {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(204, 51, 102, 0.2);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.why-choose-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.cta-text {
    font-size: 28px;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.why-choose-cta .btn-primary {
    background: white;
    color: var(--primary-color);
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.why-choose-cta .btn-primary:hover {
    background: var(--white);
    color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .why-choose-header .section-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .why-choose-us-section {
        padding: 60px 0;
    }
    
    .why-choose-header {
        margin-bottom: 40px;
    }
    
    .why-choose-header .section-title {
        font-size: 32px;
    }
    
    .why-choose-header .section-intro {
        font-size: 16px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-choose-card {
        padding: 30px 25px;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
    }
    
    .card-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .card-description {
        font-size: 14px;
    }
    
    .why-choose-cta {
        padding: 40px 30px;
    }
    
    .cta-text {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .why-choose-header .section-title {
        font-size: 28px;
    }
    
    .why-choose-card {
        padding: 25px 20px;
    }
    
    .cta-text {
        font-size: 20px;
    }
    
    .why-choose-cta .btn-primary {
        padding: 14px 30px;
        font-size: 14px;
    }
}
