/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #ff6b35;
    --primary-dark: #e55a2b;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --dark-color: #1a252f;
    --darker-color: #0d1419;
    --light-color: #ecf0f1;
    --white-color: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --text-muted: #95a5a6;
    --font-primary: 'Roboto', sans-serif;
    --font-heading: 'Oswald', sans-serif;

    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 5px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 10px 40px rgba(0,0,0,0.2);

    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.section-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-tag.light {
    background: var(--white-color);
    color: var(--primary-color);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.section-title.light {
    color: var(--white-color);
}

.text-highlight {
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-subtitle.light {
    color: rgba(255,255,255,0.8);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white-color);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

.btn-secondary:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.btn-light {
    background: var(--white-color);
    color: var(--primary-color);
    box-shadow: var(--shadow-medium);
}

.btn-light:hover {
    background: var(--light-color);
    transform: translateY(-2px);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 37, 47, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    font-size: 1.5rem;
    color: var(--white-color);
}

.logo-text h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white-color);
    margin: 0;
}

.logo-text span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--white-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white-color);
    font-weight: 500;
}

.nav-contact i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== HERO SECTION - IMPROVED CONTRAST & REDUCED OVERLAY ===== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Reduced overlay significantly for better image visibility */
    background-image:
        linear-gradient(135deg, rgba(13, 20, 25, 0.4) 0%, rgba(26, 37, 47, 0.3) 50%, rgba(44, 62, 80, 0.2) 100%),
        url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Minimal additional overlay - just for text contrast */
    background: linear-gradient(
        45deg,
        rgba(13, 20, 25, 0.15) 0%,
        transparent 30%,
        transparent 70%,
        rgba(26, 37, 47, 0.1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text {
    margin-bottom: 4rem;
    /* Add text shadow for better contrast */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 2rem;
    line-height: 1.1;
    /* Enhanced text shadow for title */
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.5);
}

.title-main {
    display: block;
    font-weight: 400;
    /* Slightly stronger shadow for main title */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

.title-highlight {
    display: block;
    color: var(--primary-color);
    font-weight: 800;
    /* Bright highlight with strong shadow for visibility */
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 107, 53, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin-bottom: 3rem;
    line-height: 1.6;
    /* Text shadow for subtitle */
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Enhanced button styling for better visibility */
.hero-buttons .btn {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), #d14d2a);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-color);
    border-color: var(--white-color);
}

.hero-stats-bar {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius);
    padding: 2rem;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* Add shadow for better definition */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
    /* Enhanced shadow for numbers */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    /* Text shadow for labels */
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* Text shadow for scroll indicator */
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: var(--primary-color);
    animation: scrollAnimation 2s infinite;
    /* Add glow effect */
    box-shadow: 0 0 10px var(--primary-color);
}

@keyframes scrollAnimation {
    0%, 100% {
        opacity: 0.3;
        box-shadow: 0 0 5px var(--primary-color);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 20px var(--primary-color);
    }
}

/* ===== RESPONSIVE HERO ADJUSTMENTS ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-stats-bar {
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats-bar {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-stats-bar {
        margin-top: 1.5rem;
    }
}

/* ===== ALTERNATIVE: Dark gradient overlay for extreme contrast ===== */
/* Uncomment this if you need even more contrast */
/*
.hero-bg {
    background-image:
        linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(13, 20, 25, 0.4) 50%, rgba(26, 37, 47, 0.3) 100%),
        url('../img/hero-bg.jpg');
}

.hero-overlay {
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
}
*/

/* ===== ENHANCED BACKGROUND IMAGE VISIBILITY ===== */
/* If you want to make the background image even more visible */
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

/* Enhanced contrast for mobile devices */
@media (max-width: 768px) {
    .hero-bg {
        background-attachment: scroll;
    }

    .hero-bg::before {
        background-attachment: scroll;
    }

    /* Slightly stronger overlay on mobile for better text readability */
    .hero-overlay {
        background: linear-gradient(
            45deg,
            rgba(13, 20, 25, 0.2) 0%,
            transparent 30%,
            transparent 70%,
            rgba(26, 37, 47, 0.15) 100%
        );
    }
}

/* ===== ABOUT SNAPSHOT SECTION - FIXED WITH IMAGE ===== */
.about-snapshot {
    padding: 6rem 0;
    background: var(--white-color);
}

.about-snapshot-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text .section-tag {
    margin-bottom: 1.5rem;
}

.about-text .section-title {
    margin-bottom: 2rem;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.about-features {
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.about-visual {
    position: relative;
}

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    /* FIXED: Added image path with very light overlay */
    background-image:
        linear-gradient(135deg, rgba(26, 37, 47, 0.25), rgba(44, 62, 80, 0.25)),
        url('../img/about.png');
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder i {
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.floating-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 280px;
    border-left: 4px solid var(--primary-color);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon i {
    color: var(--white-color);
    font-size: 1.3rem;
}

.card-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--dark-color);
}

.card-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* ===== SERVICES OVERVIEW SECTION ===== */
.services-overview {
    padding: 6rem 0;
    background: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.section-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,');
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--white-color);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-top-color: var(--primary-color);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white-color);
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: var(--transition);
    border: 3px solid var(--primary-color);
}

.service-icon i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
    transition: var(--transition);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-count {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-arrow i {
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-arrow {
    background: var(--primary-color);
}

.service-card:hover .service-arrow i {
    color: var(--white-color);
}

/* ===== COMPANY HIGHLIGHTS SECTION ===== */
.company-highlights {
    padding: 4rem 0;
    background: var(--light-color);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border-left: 5px solid var(--primary-color);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.8rem;
    color: var(--white-color);
}

.highlight-content {
    text-align: left;
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    font-family: var(--font-heading);
    display: block;
}

.highlight-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== FEATURED PROJECTS SECTION - FIXED WITH IMAGES ===== */
.featured-projects {
    padding: 6rem 0;
    background: var(--white-color);
}

.featured-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.featured-project-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.featured-project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    /* FIXED: Added default image path with minimal overlay */
    background-image:
        linear-gradient(135deg, rgba(26, 37, 47, 0.2), rgba(44, 62, 80, 0.2)),
        url('img/project-default.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.4;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(26, 37, 47, 0.4), rgba(44, 62, 80, 0.3));
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1.5rem;
}

.project-type {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-content {
    padding: 2.5rem;
}

.project-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.project-location {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.project-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-color);
}

.project-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.project-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.project-status.completed {
    color: #27ae60;
}

.project-description {
    color: var(--text-light);
    line-height: 1.6;
}

.projects-cta {
    text-align: center;
}

/* ===== INDIVIDUAL PROJECT IMAGE CLASSES ===== */
/* Nestle Project - Add class "project-nestle" to the featured-project-card */
.project-nestle .project-placeholder {
    background-image:
        linear-gradient(135deg, rgba(26, 37, 47, 0.2), rgba(44, 62, 80, 0.2)),
        url('../img/nestle.png');
    background-size: cover;
    background-position: center;
}

/* P&G Project - Add class "project-pg" to the featured-project-card */
.project-pg .project-placeholder {
    background-image:
        linear-gradient(135deg, rgba(26, 37, 47, 0.2), rgba(44, 62, 80, 0.2)),
        url('../img/project.png');
    background-size: cover;
    background-position: center;
}

/* ===== CORE VALUES STRIP ===== */
.core-values-strip {
    padding: 3rem 0;
    background: var(--primary-color);
}

.values-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white-color);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.value-icon i {
    font-size: 1.3rem;
    color: var(--white-color);
}

.value-divider {
    width: 2px;
    height: 40px;
    background: rgba(255,255,255,0.3);
}

/* ===== TESTIMONIAL PREVIEW SECTION ===== */
.testimonial-preview {
    padding: 6rem 0;
    background: var(--light-color);
}

.testimonial-content {
    text-align: center;
}

.testimonial-header {
    margin-bottom: 4rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white-color);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    text-align: left;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-quote {
    position: absolute;
    top: -20px;
    left: 2rem;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-quote i {
    font-size: 1.2rem;
    color: var(--white-color);
}

.testimonial-card p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.3rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
}

.testimonial-rating i {
    color: var(--accent-color);
    font-size: 1rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 5rem 0;
    background: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(243, 156, 18, 0.1) 100%);
}

.cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-text p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.cta-actions {
    text-align: center;
}

.cta-contact-info {
    margin-top: 1.5rem;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
}

.cta-contact-info strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--darker-color);
    color: var(--white-color);
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.footer-logo h3 {
    font-size: 1.5rem;
    color: var(--white-color);
    margin: 0;
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-contact-quick {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.quick-contact-item i {
    color: var(--primary-color);
    width: 20px;
}

.footer-section h4 {
    color: var(--white-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.7);
}

.footer-contact .contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 3px;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.footer-tagline {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: var(--white-color);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-medium);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .about-snapshot-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(26, 37, 47, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1.5rem;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-contact {
        display: none;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-stats-bar {
        flex-direction: column;
        gap: 1.5rem;
    }
    .stat-divider {
        width: 100%;
        height: 1px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .section-title {
        font-size: 2rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .featured-projects-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .values-list {
        flex-direction: column;
        gap: 2rem;
    }
    .value-divider {
        display: none;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .service-card,
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    .floating-card {
        position: static;
        margin-top: 2rem;
    }
    .cta-text h2 {
        font-size: 2rem;
    }
}