/* Root Variables */
:root {
    --primary-dark-blue: #1a2332;
    --secondary-dark-blue: #2c3e50;
    --accent-orange: #ff6b35;
    --light-orange: #ff8c61;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --gradient-blue: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    --gradient-orange: linear-gradient(135deg, #ff6b35 0%, #ff8c61 100%);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 35, 50, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: var(--accent-orange);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent-orange);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
}

/* Banner Section */
.banner {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Construction Particles Animation */
.construction-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s infinite ease-in-out;
}

.particle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 60%; left: 80%; animation-delay: 1s; }
.particle-3 { top: 80%; left: 20%; animation-delay: 2s; }
.particle-4 { top: 40%; left: 90%; animation-delay: 3s; }
.particle-5 { top: 10%; left: 60%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.2); }
}

/* Construction Tools Animation */
.construction-tools {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.tool {
    position: absolute;
    color: rgba(255, 107, 53, 0.3);
    font-size: 2rem;
    animation: toolFloat 8s infinite ease-in-out;
}

.hammer {
    top: 15%;
    left: 85%;
    animation-delay: 0s;
    animation: toolRotate 10s infinite linear;
}

.wrench {
    top: 70%;
    left: 10%;
    animation-delay: 2s;
    animation: toolFloat 12s infinite ease-in-out;
}

.ruler {
    top: 30%;
    left: 5%;
    animation-delay: 4s;
    animation: toolSlide 15s infinite ease-in-out;
}

@keyframes toolFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

@keyframes toolRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes toolSlide {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(20px); }
}

.banner-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slideZoom 20s infinite ease-in-out;
}

@keyframes slideZoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Enhanced Banner Overlay */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.8) 0%, rgba(44, 62, 80, 0.6) 100%);
    z-index: 1;
}

/* Blueprint Lines Animation */
.blueprint-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.line {
    position: absolute;
    background: var(--accent-orange);
    animation: drawLine 3s ease-in-out infinite;
}

.line-1 {
    top: 20%;
    left: 0;
    width: 60%;
    height: 2px;
    animation-delay: 0.5s;
}

.line-2 {
    top: 0;
    right: 30%;
    width: 2px;
    height: 40%;
    animation-delay: 1s;
}

.line-3 {
    bottom: 30%;
    right: 0;
    width: 40%;
    height: 2px;
    animation-delay: 1.5s;
}

.line-4 {
    bottom: 0;
    left: 20%;
    width: 2px;
    height: 50%;
    animation-delay: 2s;
}

@keyframes drawLine {
    0% { transform: scaleX(0); transform-origin: left; }
    50% { transform: scaleX(1); }
    100% { transform: scaleX(0); transform-origin: right; }
}

.line-2,
.line-4 {
    animation-name: drawLineVertical;
}

@keyframes drawLineVertical {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Enhanced Banner Content */
.banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
}

/* Construction Title Animation */
.construction-title {
    margin-bottom: 2rem;
}

.title-blueprint {
    margin-bottom: 0.5rem;
}

.blueprint-text {
    font-size: 0.9rem;
    color: var(--accent-orange);
    font-weight: 600;
    letter-spacing: 3px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.animated-title {
    font-size: 4rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    margin: 0;
    line-height: 1.1;
}

.word {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px) rotateX(-90deg);
    animation: buildWord 1s ease-out forwards;
}

.word-1 { animation-delay: 0.8s; }
.word-2 { animation-delay: 1.1s; }
.word-3 { animation-delay: 1.4s; }
.word-4 { animation-delay: 1.7s; }

@keyframes buildWord {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

/* Construction Line Progress */
.construction-line {
    position: relative;
    width: 60%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    margin: 1.5rem auto;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: var(--gradient-orange);
    animation: buildProgress 3s ease-in-out 2s forwards;
    border-radius: 2px;
}

@keyframes buildProgress {
    to { width: 100%; }
}

.construction-crane {
    position: absolute;
    top: -15px;
    left: 0;
    color: var(--accent-orange);
    font-size: 1.5rem;
    animation: moveCrane 3s ease-in-out 2s forwards;
}

@keyframes moveCrane {
    to { left: calc(100% - 20px); }
}

/* Typewriter Effect */
.typewriter-container {
    margin: 2rem 0;
    min-height: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.typewriter-text {
    font-size: 1.3rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: var(--white);
    line-height: 1.6;
    text-align: center;
    opacity: 1;
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    /* Remove problematic properties initially */
    border-right: none;
    white-space: normal;
    overflow: visible;
}

.typewriter-text.typewriter-active {
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    border-right: 2px solid var(--accent-orange);
    animation: typeWriterExpand 5s steps(60, end) forwards;
}

.typewriter-text.typewriter-completed {
    width: 100%;
    white-space: normal;
    overflow: visible;
    border-right: 2px solid var(--accent-orange);
    animation: blinkCursor 1s infinite 0.5s;
}

.typewriter-text.typewriter-final {
    width: 100%;
    white-space: normal;
    overflow: visible;
    border-right: none;
    animation: none;
}

@keyframes typeWriterExpand {
    from { 
        width: 0;
    }
    to { 
        width: 100%;
    }
}

@keyframes blinkCursor {
    0%, 50% { 
        border-right-color: var(--accent-orange);
    }
    51%, 100% { 
        border-right-color: transparent;
    }
}

/* Fallback for small screens */
@media (max-width: 900px) {
    .typewriter-text {
        font-size: 1.1rem;
        white-space: normal !important;
        overflow: visible !important;
        width: 100% !important;
        border-right: none !important;
        animation: none !important;
    }
    
    .typewriter-text.typewriter-active,
    .typewriter-text.typewriter-completed,
    .typewriter-text.typewriter-final {
        white-space: normal !important;
        overflow: visible !important;
        width: 100% !important;
        border-right: none !important;
        animation: none !important;
    }
}

/* Enhanced CTA Container */
.cta-container {
    margin-top: 3rem;
}

.enhanced-cta {
    position: relative;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto 2rem;
}

.enhanced-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(255, 107, 53, 0.5);
}

.cta-icon {
    font-size: 1.1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

.cta-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.3s ease;
}

.enhanced-cta:hover .cta-progress {
    width: 100%;
}

/* CTA Stats */
.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 1rem;
}

.stat {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease-out 3s forwards;
}

.stat:nth-child(2) { animation-delay: 3.2s; }
.stat:nth-child(3) { animation-delay: 3.4s; }

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-orange);
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button {
    background: var(--gradient-orange);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--box-shadow);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.cta-button.large {
    padding: 20px 50px;
    font-size: 1.2rem;
}

/* Enhanced Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    align-items: center;
    z-index: 3;
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.slider-controls button:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: scale(1.1);
}

/* Slide Indicators */
.slide-indicators {
    display: flex;
    gap: 10px;
    align-items: center;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.indicator.active {
    background: var(--accent-orange);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--white);
    transform: scale(1.1);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    right: 30px;
    color: var(--white);
    text-align: center;
    z-index: 3;
    animation: fadeInUp 2s ease-out 4s forwards;
    opacity: 0;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.scroll-arrow {
    animation: scrollBounce 2s infinite ease-in-out;
}

.scroll-arrow i {
    font-size: 1.2rem;
    color: var(--accent-orange);
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* Enhanced Our Story Section */
.our-story {
    padding: 120px 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

/* Story Background Elements */
.story-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.construction-blueprint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
}

.blueprint-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--primary-dark-blue) 1px, transparent 1px),
        linear-gradient(90deg, var(--primary-dark-blue) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: blueprintMove 20s linear infinite;
}

@keyframes blueprintMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.measuring-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.measure-line {
    position: absolute;
    background: var(--accent-orange);
    opacity: 0.3;
}

.horizontal-line-1 {
    top: 20%;
    left: 10%;
    width: 30%;
    height: 2px;
    animation: drawHorizontal 4s ease-in-out infinite;
}

.horizontal-line-2 {
    bottom: 25%;
    right: 15%;
    width: 25%;
    height: 2px;
    animation: drawHorizontal 4s ease-in-out infinite 2s;
}

.vertical-line-1 {
    top: 15%;
    left: 15%;
    width: 2px;
    height: 25%;
    animation: drawVertical 4s ease-in-out infinite 1s;
}

.vertical-line-2 {
    bottom: 20%;
    right: 20%;
    width: 2px;
    height: 30%;
    animation: drawVertical 4s ease-in-out infinite 3s;
}

@keyframes drawHorizontal {
    0%, 100% { transform: scaleX(0); transform-origin: left; }
    50% { transform: scaleX(1); }
}

@keyframes drawVertical {
    0%, 100% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); }
}

/* Floating Construction Icons */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.construction-icon {
    position: absolute;
    color: var(--accent-orange);
    opacity: 0.1;
    font-size: 2.5rem;
    animation: floatIcon 8s ease-in-out infinite;
}

.icon-1 {
    top: 10%;
    left: 80%;
    animation-delay: 0s;
}

.icon-2 {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.icon-3 {
    top: 80%;
    left: 85%;
    animation-delay: 4s;
}

.icon-4 {
    top: 30%;
    left: 10%;
    animation-delay: 6s;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Story Content Layout */
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Story Text Styling */
.story-header {
    margin-bottom: 3rem;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.3s forwards;
}

.label-icon {
    color: var(--accent-orange);
    font-size: 1.1rem;
}

.label-text {
    color: var(--accent-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.story-title {
    font-size: 3.5rem;
    color: var(--primary-dark-blue);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.6s forwards;
}

.title-highlight {
    color: var(--accent-orange);
    position: relative;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 2px;
    margin-bottom: 2rem;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.underline-progress {
    width: 0;
    height: 100%;
    background: var(--gradient-orange);
    border-radius: 2px;
    animation: fillProgress 2s ease-out 1.2s forwards;
}

@keyframes fillProgress {
    to { width: 100%; }
}

/* Story Content Wrapper */
.story-content-wrapper {
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.story-paragraph {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 40px;
}

.paragraph-icon {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-orange);
    font-size: 1.2rem;
    opacity: 0.7;
}

.story-paragraph p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin: 0;
}

.story-paragraph:last-of-type {
    padding-left: 20px;
}

.story-paragraph strong {
    color: var(--primary-dark-blue);
    font-weight: 600;
}

.story-paragraph em {
    color: var(--accent-orange);
    font-style: normal;
    font-weight: 500;
}

/* Story Stats */
.story-stats {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(26, 35, 50, 0.1);
    border-bottom: 1px solid rgba(26, 35, 50, 0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark-blue);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Enhanced Button */
.story-button-container {
    margin-top: 2rem;
}

.enhanced-secondary-button {
    position: relative;
    background: transparent;
    color: var(--primary-dark-blue);
    padding: 15px 40px;
    border: 2px solid var(--primary-dark-blue);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.enhanced-secondary-button:hover {
    background: var(--primary-dark-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 35, 50, 0.2);
}

.button-icon {
    font-size: 0.9rem;
    transition: var(--transition);
}

.enhanced-secondary-button:hover .button-icon {
    transform: translateX(5px);
}

.button-shine {
    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 ease;
}

.enhanced-secondary-button:hover .button-shine {
    left: 100%;
}

/* Construction Cards Container */
.story-images {
    position: relative;
}

.images-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Construction Card Base */
.construction-card {
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease-out forwards;
}

.residential-card {
    animation-delay: 1.3s;
}

.commercial-card {
    animation-delay: 1.6s;
}

.card-frame {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 2px solid transparent;
}

.construction-card:hover .card-frame {
    transform: translateY(-8px) rotateY(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-orange);
}

/* Frame Corners - Blueprint Style */
.frame-corners {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-orange);
    opacity: 0;
    transition: var(--transition);
}

.corner-tl {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
}

.corner-tr {
    top: 15px;
    right: 15px;
    border-left: none;
    border-bottom: none;
}

.corner-bl {
    bottom: 15px;
    left: 15px;
    border-right: none;
    border-top: none;
}

.corner-br {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
}

.construction-card:hover .corner {
    opacity: 0.8;
}

/* Card Header */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 15px;
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(248, 249, 250, 0.5) 100%);
    border-bottom: 1px solid rgba(26, 35, 50, 0.1);
}

.card-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.residential-badge {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.commercial-badge {
    background: rgba(33, 150, 243, 0.1);
    color: #2196F3;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.card-tools {
    display: flex;
    align-items: center;
}

.tool-icon {
    width: 35px;
    height: 35px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    animation: toolRotate 4s ease-in-out infinite;
}

@keyframes toolRotate {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

/* Card Image Container */
.card-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.construction-card:hover .card-image-container img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
}

.construction-card:hover .image-overlay {
    opacity: 1;
}

.overlay-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(255, 107, 53, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 107, 53, 0.1) 25%, transparent 25%);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0;
    transition: var(--transition);
}

.construction-card:hover .overlay-pattern {
    opacity: 0.3;
}

/* Card Info */
.card-info {
    padding: 25px 20px 20px;
}

.card-info h3 {
    font-size: 1.4rem;
    color: var(--primary-dark-blue);
    margin-bottom: 8px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.card-info p {
    color: var(--medium-gray);
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Card Specifications */
.card-specs {
    display: flex;
    gap: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.spec-item i {
    color: var(--accent-orange);
    font-size: 0.8rem;
}

/* Card Shadow */
.card-shadow {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.construction-card:hover .card-shadow {
    opacity: 1;
    transform: translateX(-50%) translateY(5px);
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced Services Showcase Section */
.services-showcase {
    background: var(--white);
    overflow: hidden;
}

/* Services Header */
.services-header {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(248, 249, 250, 0.8) 100%);
    position: relative;
}

.header-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.services-title {
    font-size: 3.5rem;
    color: var(--primary-dark-blue);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.services-subtitle {
    font-size: 1.3rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.header-divider {
    width: 100px;
    height: 4px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s forwards;
}

.divider-line {
    width: 0;
    height: 100%;
    background: var(--gradient-orange);
    border-radius: 2px;
    animation: fillProgress 2s ease-out 1.5s forwards;
}

/* Service Section Base */
.service-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.service-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Residential Section */
.residential-section {
    background: linear-gradient(135deg, #f8f9fa 0%, rgba(76, 175, 80, 0.05) 100%);
}

.residential-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.1) 0%, transparent 50%);
    background-size: 400px 400px;
    opacity: 0.3;
    animation: patternMove 20s linear infinite;
}

.floating-homes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.home-icon {
    position: absolute;
    color: rgba(76, 175, 80, 0.2);
    font-size: 2rem;
    animation: floatIcon 8s ease-in-out infinite;
}

.home-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.home-2 {
    top: 70%;
    right: 15%;
    animation-delay: 2s;
}

.home-3 {
    top: 40%;
    right: 5%;
    animation-delay: 4s;
}

/* Exhibits Section */
.exhibits-section {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.05) 0%, #f8f9fa 50%, rgba(255, 152, 0, 0.05) 100%);
}

.exhibits-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(255, 152, 0, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 152, 0, 0.1) 25%, transparent 25%);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    opacity: 0.3;
    animation: patternSlide 15s linear infinite;
}

.floating-displays {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.display-icon {
    position: absolute;
    color: rgba(255, 152, 0, 0.2);
    font-size: 2rem;
    animation: floatIcon 8s ease-in-out infinite;
}

.display-1 {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}

.display-2 {
    top: 60%;
    left: 8%;
    animation-delay: 3s;
}

.display-3 {
    top: 80%;
    right: 20%;
    animation-delay: 5s;
}

/* Commercial Section */
.commercial-section {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.05) 0%, #f8f9fa 50%, rgba(33, 150, 243, 0.05) 100%);
}

.commercial-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(90deg, rgba(33, 150, 243, 0.1) 0%, rgba(33, 150, 243, 0.1) 2px, transparent 2px, transparent 20px),
        repeating-linear-gradient(0deg, rgba(33, 150, 243, 0.1) 0%, rgba(33, 150, 243, 0.1) 2px, transparent 2px, transparent 20px);
    opacity: 0.3;
    animation: gridMove 25s linear infinite;
}

.floating-buildings {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.building-icon {
    position: absolute;
    color: rgba(33, 150, 243, 0.2);
    font-size: 2rem;
    animation: floatIcon 8s ease-in-out infinite;
}

.building-1 {
    top: 25%;
    left: 12%;
    animation-delay: 0.5s;
}

.building-2 {
    top: 65%;
    right: 10%;
    animation-delay: 2.5s;
}

.building-3 {
    top: 45%;
    left: 5%;
    animation-delay: 4.5s;
}

/* Animations */
@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes patternSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(60px); }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

/* Service Layout */
.service-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.reverse-layout {
    direction: rtl;
}

.reverse-layout > * {
    direction: ltr;
}

/* Service Content */
.service-content {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease-out forwards;
}

.reverse-layout .service-content {
    transform: translateX(50px);
    animation: slideInRight 1s ease-out forwards;
}

.service-header {
    margin-bottom: 2rem;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.residential-badge {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border: 2px solid rgba(76, 175, 80, 0.3);
}

.exhibits-badge {
    background: rgba(255, 152, 0, 0.1);
    color: #FF9800;
    border: 2px solid rgba(255, 152, 0, 0.3);
}

.commercial-badge {
    background: rgba(33, 150, 243, 0.1);
    color: #2196F3;
    border: 2px solid rgba(33, 150, 243, 0.3);
}

.service-title {
    font-size: 3rem;
    color: var(--primary-dark-blue);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.service-tagline {
    font-size: 1.1rem;
    color: var(--accent-orange);
    font-weight: 500;
    font-style: italic;
    margin-bottom: 2rem;
}

.service-description p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

/* Service Features */
.service-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--medium-gray);
}

.feature-item i {
    width: 20px;
    color: var(--accent-orange);
    font-size: 1.1rem;
}

/* Service CTA Buttons */
.service-cta {
    margin-top: 2rem;
}

.residential-button,
.exhibits-button,
.commercial-button {
    position: relative;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}

.residential-button {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.exhibits-button {
    background: linear-gradient(135deg, #FF9800 0%, #FFB74D 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
}

.commercial-button {
    background: linear-gradient(135deg, #2196F3 0%, #64B5F6 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
}

.residential-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
}

.exhibits-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 152, 0, 0.4);
}

.commercial-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(33, 150, 243, 0.4);
}

.button-icon {
    font-size: 0.9rem;
    transition: var(--transition);
}

.residential-button:hover .button-icon,
.exhibits-button:hover .button-icon,
.commercial-button:hover .button-icon {
    transform: translateX(5px);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.residential-button:hover .button-glow,
.exhibits-button:hover .button-glow,
.commercial-button:hover .button-glow {
    left: 100%;
}

/* Service Images */
.service-image {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease-out 0.3s forwards;
}

.reverse-layout .service-image {
    transform: translateX(-50px);
    animation: slideInLeft 1s ease-out 0.3s forwards;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.residential-frame {
    border: 3px solid rgba(76, 175, 80, 0.3);
}

.exhibits-frame {
    border: 3px solid rgba(255, 152, 0, 0.3);
}

.commercial-frame {
    border: 3px solid rgba(33, 150, 243, 0.3);
}

.image-frame:hover {
    transform: translateY(-5px) rotateY(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.image-frame:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: var(--white);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Enhanced CTA Section */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark-blue) 0%, #2c3e50 50%, var(--primary-dark-blue) 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

/* CTA Background Effects */
.cta-background-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.construction-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 107, 53, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridPulse 4s ease-in-out infinite;
    opacity: 0.3;
}

.floating-tools {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-tools i {
    position: absolute;
    color: rgba(255, 107, 53, 0.2);
    font-size: 2.5rem;
    animation: floatTool 8s ease-in-out infinite;
}

.tool-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.tool-2 {
    top: 75%;
    right: 12%;
    animation-delay: 2s;
}

.tool-3 {
    top: 25%;
    right: 8%;
    animation-delay: 4s;
}

.tool-4 {
    top: 65%;
    left: 15%;
    animation-delay: 6s;
}

.trust-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    background-size: 300px 300px, 400px 400px, 200px 200px;
    animation: particleMove 20s linear infinite;
    opacity: 0.4;
}

/* CTA Content */
.cta-content {
    position: relative;
    z-index: 2;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 53, 0.2);
    border: 2px solid rgba(255, 107, 53, 0.5);
    color: var(--accent-orange);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: trustPulse 3s ease-in-out infinite;
}

.trust-badge i {
    font-size: 1.2rem;
    animation: shieldGlow 2s ease-in-out infinite alternate;
}

.cta-header {
    margin-bottom: 1.5rem;
}

.cta-header h2 {
    font-size: 3.2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 107, 53, 0.8) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: titleGlow 4s ease-in-out infinite;
}

.title-underline {
    width: 150px;
    height: 4px;
    background: rgba(255, 107, 53, 0.3);
    margin: 0 auto;
    border-radius: 2px;
    overflow: hidden;
}

.underline-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-orange) 0%, #ffb347 100%);
    border-radius: 2px;
    animation: fillUnderline 3s ease-out infinite;
}

.cta-description {
    margin-bottom: 3rem;
}

.cta-description p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.indicator-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: var(--transition);
    animation: indicatorFloat 6s ease-in-out infinite;
}

.indicator-item:nth-child(1) { animation-delay: 0s; }
.indicator-item:nth-child(2) { animation-delay: 1s; }
.indicator-item:nth-child(3) { animation-delay: 2s; }

.indicator-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--accent-orange);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.indicator-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.indicator-icon i {
    font-size: 1.5rem;
    color: var(--white);
    animation: iconPulse 2s ease-in-out infinite;
}

.indicator-text {
    text-align: left;
}

.indicator-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: var(--accent-orange);
    line-height: 1;
}

.indicator-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-button-primary,
.cta-button-secondary {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
}

.cta-button-primary {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ffb347 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.cta-button-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.cta-button-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #ff8c42 0%, var(--accent-orange) 100%);
}

.cta-button-secondary:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-orange);
    color: var(--accent-orange);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.button-icon {
    font-size: 1rem;
    transition: var(--transition);
}

.cta-button-primary:hover .button-icon,
.cta-button-secondary:hover .button-icon {
    transform: translateX(5px);
}

.button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.cta-button-primary:hover .button-shine {
    left: 100%;
}

/* Guarantee Badge */
.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
}

.guarantee-badge i {
    color: var(--accent-orange);
    font-size: 1.2rem;
    animation: certificateRotate 8s linear infinite;
}

/* Animations */
@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.1; }
}

@keyframes floatTool {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-25px) rotate(3deg); }
}

@keyframes particleMove {
    0% { transform: translate(0, 0); }
    33% { transform: translate(30px, -30px); }
    66% { transform: translate(-20px, 20px); }
    100% { transform: translate(0, 0); }
}

@keyframes trustPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px 10px rgba(255, 107, 53, 0.2); }
}

@keyframes shieldGlow {
    0% { text-shadow: 0 0 5px rgba(255, 107, 53, 0.5); }
    100% { text-shadow: 0 0 20px rgba(255, 107, 53, 0.8); }
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

@keyframes fillUnderline {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 0; }
}

@keyframes indicatorFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes certificateRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Why Choose Us Section */
/* Enhanced Why Choose Us Section */
.why-choose-us {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(248, 249, 250, 0.8) 50%, var(--light-gray) 100%);
    overflow: hidden;
}

/* Background Effects */
.why-choose-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.trust-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(26, 35, 50, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, rgba(26, 35, 50, 0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 107, 53, 0.02) 25%, transparent 25%);
    background-size: 400px 400px, 350px 350px, 60px 60px, 60px 60px;
    background-position: 0 0, 100px 100px, 0 0, 30px 30px;
    animation: trustPatternMove 25s linear infinite;
    opacity: 0.6;
}

.floating-achievements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-achievements i {
    position: absolute;
    color: rgba(255, 107, 53, 0.15);
    font-size: 2.5rem;
    animation: floatAchievement 12s ease-in-out infinite;
}

.achievement-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.achievement-2 {
    top: 70%;
    right: 10%;
    animation-delay: 3s;
}

.achievement-3 {
    top: 25%;
    right: 8%;
    animation-delay: 6s;
}

.achievement-4 {
    top: 60%;
    left: 12%;
    animation-delay: 9s;
}

.construction-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blueprint-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.corner-1 {
    top: 40px;
    left: 40px;
    border-right: none;
    border-bottom: none;
    animation: cornerPulse 4s ease-in-out infinite;
}

.corner-2 {
    top: 40px;
    right: 40px;
    border-left: none;
    border-bottom: none;
    animation: cornerPulse 4s ease-in-out infinite 1s;
}

.corner-3 {
    bottom: 40px;
    left: 40px;
    border-right: none;
    border-top: none;
    animation: cornerPulse 4s ease-in-out infinite 2s;
}

.corner-4 {
    bottom: 40px;
    right: 40px;
    border-left: none;
    border-top: none;
    animation: cornerPulse 4s ease-in-out infinite 3s;
}

/* Section Header */
.why-choose-us .section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.trust-badge-header {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ffb347 100%);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    animation: badgeGlow 3s ease-in-out infinite;
}

.trust-badge-header i {
    font-size: 1.2rem;
    animation: certificateSpin 8s linear infinite;
}

.why-choose-title {
    font-size: 3.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.title-word {
    display: inline-block;
    color: var(--primary-dark-blue);
    animation: titleWordFloat 6s ease-in-out infinite;
}

.title-word:nth-child(1) { animation-delay: 0s; }
.title-word:nth-child(2) { animation-delay: 0.5s; }

.title-highlight {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ffb347 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleWordFloat 6s ease-in-out infinite 1s;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.divider-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-orange) 50%, transparent 100%);
    animation: dividerGlow 4s ease-in-out infinite;
}

.divider-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    animation: iconRotate 8s linear infinite;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Showcase */
.features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.feature-card {
    position: relative;
    background: var(--white);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    overflow: hidden;
    border: 2px solid rgba(255, 107, 53, 0.1);
    animation: cardEntrance 1s ease-out;
}

.quality-card { animation-delay: 0.2s; }
.delivery-card { animation-delay: 0.4s; }
.satisfaction-card { animation-delay: 0.6s; }

.feature-card:hover {
    transform: translateY(-15px) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-orange);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.quality-card .card-pattern {
    background: linear-gradient(45deg, rgba(76, 175, 80, 0.05) 25%, transparent 25%);
    background-size: 30px 30px;
    animation: patternShift 20s linear infinite;
}

.delivery-card .card-pattern {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.05) 25%, transparent 25%);
    background-size: 25px 25px;
    animation: patternShift 25s linear infinite reverse;
}

.satisfaction-card .card-pattern {
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    background-size: 50px 50px;
    animation: patternPulse 15s ease-in-out infinite;
}

.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.feature-icon-container {
    position: relative;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ffb347 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    animation: iconPulse 3s ease-in-out infinite;
}

.icon-circle i {
    font-size: 2rem;
    color: var(--white);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 1;
}

.feature-badge {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    color: var(--accent-orange);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-content {
    text-align: left;
}

.feature-title {
    font-size: 1.8rem;
    color: var(--primary-dark-blue);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.feature-subtitle {
    font-size: 1rem;
    color: var(--accent-orange);
    font-weight: 500;
    font-style: italic;
    margin-bottom: 20px;
}

.feature-description {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
}

.feature-stats {
    display: flex;
    justify-content: center;
    margin-top: auto;
}

.stat-item {
    text-align: center;
    padding: 15px 20px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.feature-card:hover .card-shine {
    left: 100%;
}

/* Trust Footer */
.trust-footer {
    text-align: center;
    position: relative;
    z-index: 2;
}

.trust-elements {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--medium-gray);
    font-weight: 500;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    animation: trustItemFloat 6s ease-in-out infinite;
}

.trust-item:nth-child(1) { animation-delay: 0s; }
.trust-item:nth-child(2) { animation-delay: 1s; }
.trust-item:nth-child(3) { animation-delay: 2s; }

.trust-item:hover {
    transform: translateY(-5px);
    color: var(--accent-orange);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.trust-item i {
    font-size: 1.3rem;
    color: var(--accent-orange);
}

/* Animations */
@keyframes trustPatternMove {
    0% { background-position: 0 0, 100px 100px, 0 0, 30px 30px; }
    100% { background-position: 400px 400px, 500px 500px, 60px 60px, 90px 90px; }
}

@keyframes floatAchievement {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.15; }
    25% { transform: translateY(-20px) rotate(5deg); opacity: 0.25; }
    50% { transform: translateY(-10px) rotate(-3deg); opacity: 0.2; }
    75% { transform: translateY(-25px) rotate(7deg); opacity: 0.18; }
}

@keyframes cornerPulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.1); }
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3); }
    50% { box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5); }
}

@keyframes certificateSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes titleWordFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes dividerGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes iconRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes cardEntrance {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes patternShift {
    0% { background-position: 0 0; }
    100% { background-position: 30px 30px; }
}

@keyframes patternPulse {
    0%, 100% { opacity: 0.05; }
    50% { opacity: 0.1; }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

@keyframes trustItemFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Enhanced Gallery Showcase Section */
.gallery-showcase {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--white) 0%, rgba(248, 249, 250, 0.9) 50%, var(--white) 100%);
    overflow: hidden;
}

/* Gallery Background Effects */
.gallery-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.construction-blueprint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(26, 35, 50, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 35, 50, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    background-size: 40px 40px, 40px 40px, 200px 200px;
    animation: blueprintMove 30s linear infinite;
    opacity: 0.4;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-elements i {
    position: absolute;
    color: rgba(255, 107, 53, 0.1);
    font-size: 2rem;
    animation: floatElement 10s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.element-2 {
    top: 80%;
    right: 8%;
    animation-delay: 2.5s;
}

.element-3 {
    top: 40%;
    right: 5%;
    animation-delay: 5s;
}

.element-4 {
    top: 70%;
    left: 10%;
    animation-delay: 7.5s;
}

.success-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(76, 175, 80, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(33, 150, 243, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(255, 107, 53, 0.04) 0%, transparent 50%);
    background-size: 300px 300px, 250px 250px, 400px 400px;
    animation: particleDrift 20s ease-in-out infinite;
    opacity: 0.5;
}

/* Gallery Header */
.gallery-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.achievement-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--primary-dark-blue);
    padding: 15px 30px;
    border-radius: 35px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    animation: achievementGlow 4s ease-in-out infinite;
}

.achievement-badge i {
    font-size: 1.3rem;
    animation: trophySpin 6s linear infinite;
}

.gallery-title {
    font-size: 3.8rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.gallery-title .title-word {
    display: inline-block;
    color: var(--primary-dark-blue);
    animation: titleFloat 5s ease-in-out infinite;
}

.gallery-title .title-word:nth-child(1) { animation-delay: 0s; }
.gallery-title .title-word:nth-child(2) { animation-delay: 0.3s; }

.title-highlight {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ffb347 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleFloat 5s ease-in-out infinite 0.6s;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 2rem;
}

.decoration-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-orange) 50%, transparent 100%);
    animation: decorationPulse 3s ease-in-out infinite;
}

.decoration-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    animation: cameraRotate 8s linear infinite;
}

.gallery-subtitle {
    font-size: 1.3rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.gallery-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.stat-box {
    text-align: center;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition);
    animation: statFloat 6s ease-in-out infinite;
}

.stat-box:nth-child(1) { animation-delay: 0s; }
.stat-box:nth-child(2) { animation-delay: 1s; }
.stat-box:nth-child(3) { animation-delay: 2s; }

.stat-box:hover {
    transform: translateY(-10px);
    border-color: var(--accent-orange);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Projects Showcase */
.projects-showcase {
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

.featured-project {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--white);
    border-radius: 30px;
    padding: 50px;
    margin-bottom: 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(255, 107, 53, 0.1);
    transition: var(--transition);
    animation: projectEntrance 1s ease-out;
}

.featured-project:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-orange);
}

.project-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition);
}

.featured-project:hover .project-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.featured-project:hover .image-overlay {
    opacity: 1;
}

.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: badgePulse 3s ease-in-out infinite;
}

.project-info {
    padding: 20px 0;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.project-title {
    font-size: 2.2rem;
    color: var(--primary-dark-blue);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    flex: 1;
}

.project-category {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent-orange);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.project-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 25px;
}

.project-details {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.detail-item i {
    color: var(--accent-orange);
    width: 16px;
}

.client-testimonial {
    background: rgba(248, 249, 250, 0.8);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--accent-orange);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--medium-gray);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

.client-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.client-name {
    font-weight: 600;
    color: var(--primary-dark-blue);
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: #FFD700;
    font-size: 0.9rem;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.project-card {
    position: relative;
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid rgba(255, 107, 53, 0.1);
    animation: projectEntrance 1s ease-out;
}

.project-card:nth-child(1) { animation-delay: 0.2s; }
.project-card:nth-child(2) { animation-delay: 0.4s; }
.project-card:nth-child(3) { animation-delay: 0.6s; }
.project-card:nth-child(4) { animation-delay: 0.8s; }

.project-card:hover {
    transform: translateY(-15px) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-orange);
}

.project-card .project-image {
    height: 220px;
    position: relative;
}

.project-card .project-image img {
    height: 100%;
}

.project-type {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-content {
    padding: 30px;
}

.project-name {
    font-size: 1.4rem;
    color: var(--primary-dark-blue);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.project-brief {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.project-metrics {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.metric {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--medium-gray);
    font-weight: 500;
}

.metric i {
    color: var(--accent-orange);
    width: 12px;
}

.card-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.project-card:hover .card-glow {
    left: 100%;
}

/* Gallery Footer */
.gallery-footer {
    text-align: center;
    position: relative;
    z-index: 2;
}

.quality-assurance {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.assurance-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--medium-gray);
    font-weight: 600;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition);
    animation: assuranceFloat 7s ease-in-out infinite;
}

.assurance-item:nth-child(1) { animation-delay: 0s; }
.assurance-item:nth-child(2) { animation-delay: 1s; }
.assurance-item:nth-child(3) { animation-delay: 2s; }

.assurance-item:hover {
    transform: translateY(-8px);
    color: var(--accent-orange);
    border-color: var(--accent-orange);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.assurance-item i {
    font-size: 1.5rem;
    color: var(--accent-orange);
}

.view-more-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ffb347 100%);
    color: var(--white);
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.view-more-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #ff8c42 0%, var(--accent-orange) 100%);
}

.btn-icon {
    font-size: 1rem;
    transition: var(--transition);
}

.view-more-btn:hover .btn-icon {
    transform: translateX(5px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s ease;
}

.view-more-btn:hover .btn-shine {
    left: 100%;
}

/* Animations */
@keyframes blueprintMove {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 40px 40px, 40px 40px, 200px 200px; }
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
    25% { transform: translateY(-15px) rotate(3deg); opacity: 0.15; }
    50% { transform: translateY(-8px) rotate(-2deg); opacity: 0.12; }
    75% { transform: translateY(-20px) rotate(5deg); opacity: 0.18; }
}

@keyframes particleDrift {
    0% { transform: translate(0, 0); }
    33% { transform: translate(20px, -15px); }
    66% { transform: translate(-15px, 10px); }
    100% { transform: translate(0, 0); }
}

@keyframes achievementGlow {
    0%, 100% { box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5); }
}

@keyframes trophySpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes titleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes decorationPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes cameraRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes statFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes projectEntrance {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes assuranceFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* Enhanced Testimonials Showcase Section */
.testimonials-showcase {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 50%, #1a2332 100%);
    overflow: hidden;
}

/* Background Effects */
.testimonials-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.6;
}

.trust-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25px 25px, rgba(255, 107, 53, 0.1) 2px, transparent 2px),
        linear-gradient(45deg, rgba(255, 107, 53, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(44, 62, 80, 0.1) 25%, transparent 25%);
    background-size: 50px 50px, 100px 100px, 100px 100px;
    animation: trustPatternMove 40s linear infinite;
}

.floating-reviews {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.quote-1, .quote-2, .quote-3, .quote-4 {
    position: absolute;
    color: rgba(255, 107, 53, 0.3);
    font-size: 2rem;
    animation: floatReviews 8s ease-in-out infinite;
}

.quote-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.quote-2 {
    top: 25%;
    right: 15%;
    animation-delay: 2s;
}

.quote-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.quote-4 {
    bottom: 20%;
    right: 25%;
    animation-delay: 6s;
}

.satisfaction-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(46, 204, 113, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(52, 152, 219, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 107, 53, 0.06) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite alternate;
}

/* Header Section */
.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.client-satisfaction-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    animation: badgePulse 2s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(243, 156, 18, 0.3);
}

.client-satisfaction-badge i {
    font-size: 1.1rem;
    animation: medalSpin 3s linear infinite;
}

.testimonials-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.title-word {
    display: inline-block;
    animation: titleFloat 3s ease-in-out infinite;
}

.title-word:nth-child(2) {
    animation-delay: 0.2s;
}

.title-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #ff8c61);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleFloat 3s ease-in-out infinite;
    animation-delay: 0.4s;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.decoration-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
    animation: lineGlow 2s ease-in-out infinite alternate;
}

.decoration-icon {
    background: rgba(255, 107, 53, 0.2);
    border: 2px solid #ff6b35;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconRotate 4s linear infinite;
}

.decoration-icon i {
    color: #ff6b35;
    font-size: 1.2rem;
}

.testimonials-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 300;
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: statFloat 4s ease-in-out infinite;
}

.stat-item:nth-child(2) {
    animation-delay: 0.5s;
}

.stat-item:nth-child(3) {
    animation-delay: 1s;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.stat-stars {
    margin: 10px 0;
}

.stat-stars i {
    color: #f39c12;
    font-size: 1rem;
    margin: 0 2px;
    animation: starTwinkle 1.5s ease-in-out infinite alternate;
}

.stat-stars i:nth-child(2) { animation-delay: 0.1s; }
.stat-stars i:nth-child(3) { animation-delay: 0.2s; }
.stat-stars i:nth-child(4) { animation-delay: 0.3s; }
.stat-stars i:nth-child(5) { animation-delay: 0.4s; }

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(43, 43, 43, 0.7);
    font-weight: 500;
}

/* Testimonials Container */
.testimonials-container {
    position: relative;
    margin-bottom: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 40px;
    margin: 0 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    transform: translateY(50px) scale(0.95);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    visibility: hidden;
    overflow: hidden;
}

.testimonial-card.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    position: relative;
    visibility: visible;
}

.testimonial-card.featured-testimonial {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 245, 238, 0.95) 100%);
    border: 2px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 25px 80px rgba(255, 107, 53, 0.15);
}

.testimonial-background {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 97, 0.05));
    border-radius: 50%;
    animation: backgroundPulse 4s ease-in-out infinite;
}

/* Testimonial Header */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.client-avatar {
    position: relative;
}

.avatar-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a2332, #2c3e50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(26, 35, 50, 0.3);
}

.avatar-circle.commercial {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.avatar-circle.renovation {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.verification-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    animation: badgePulse 2s ease-in-out infinite;
}

.verification-badge i {
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
}

.client-info {
    flex: 1;
}

.client-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.client-location {
    font-size: 0.95rem;
    color: #666;
    display: block;
    margin-bottom: 8px;
}

.client-project {
    font-size: 0.85rem;
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    padding: 4px 12px;
    border-radius: 15px;
    display: inline-block;
    font-weight: 600;
}

.testimonial-rating {
    text-align: right;
}

.testimonial-rating .stars {
    margin-bottom: 8px;
}

.testimonial-rating .stars i {
    color: #f39c12;
    font-size: 1.1rem;
    margin: 0 1px;
    animation: starGlow 2s ease-in-out infinite alternate;
}

.rating-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f39c12;
}

/* Testimonial Content */
.testimonial-content {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35, #ff8c61);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    padding-left: 20px;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-highlights {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.1);
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ff6b35;
    border: 1px solid rgba(255, 107, 53, 0.2);
    animation: highlightFloat 3s ease-in-out infinite;
}

.highlight-item:nth-child(2) { animation-delay: 0.5s; }
.highlight-item:nth-child(3) { animation-delay: 1s; }

.highlight-item i {
    font-size: 0.9rem;
}

/* Testimonial Footer */
.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 2px solid rgba(255, 107, 53, 0.1);
    position: relative;
    z-index: 2;
}

.project-details {
    display: flex;
    gap: 20px;
}

.project-value,
.project-duration {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a2332;
    background: rgba(26, 35, 50, 0.1);
    padding: 6px 12px;
    border-radius: 15px;
}

.verification-seal {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #27ae60;
    font-size: 0.85rem;
    font-weight: 600;
}

.verification-seal i {
    font-size: 1rem;
    animation: shieldGlow 2s ease-in-out infinite alternate;
}

/* Navigation */
.testimonials-navigation {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1a2332, #2c3e50);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-btn:hover {
    background: linear-gradient(135deg, #ff6b35, #ff8c61);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.testimonial-indicators {
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #ff6b35;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

/* Footer */
.testimonials-footer {
    text-align: center;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 25px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
    animation: trustFloat 4s ease-in-out infinite;
}

.trust-item:nth-child(2) { animation-delay: 0.5s; }
.trust-item:nth-child(3) { animation-delay: 1s; }

.trust-item i {
    color: #ff6b35;
    font-size: 1.2rem;
    animation: trustIconPulse 2s ease-in-out infinite;
}

/* Animations */
@keyframes trustPatternMove {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-50px) translateY(-25px); }
    50% { transform: translateX(-100px) translateY(0); }
    75% { transform: translateX(-50px) translateY(25px); }
    100% { transform: translateX(0) translateY(0); }
}

@keyframes floatReviews {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-3deg); }
}

@keyframes particleFloat {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-20px) scale(1.1); }
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 32px rgba(243, 156, 18, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 12px 40px rgba(243, 156, 18, 0.4); }
}

@keyframes medalSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes titleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes lineGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; box-shadow: 0 0 20px rgba(255, 107, 53, 0.5); }
}

@keyframes iconRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes statFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes starTwinkle {
    0% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}

@keyframes backgroundPulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.1; }
    50% { transform: scale(1.1) rotate(180deg); opacity: 0.2; }
}

@keyframes starGlow {
    0% { text-shadow: 0 0 5px rgba(243, 156, 18, 0.5); }
    100% { text-shadow: 0 0 15px rgba(243, 156, 18, 0.8); }
}

@keyframes highlightFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes shieldGlow {
    0% { color: #27ae60; }
    100% { color: #2ecc71; text-shadow: 0 0 10px rgba(46, 204, 113, 0.5); }
}

@keyframes trustFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes trustIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Footer */
.footer {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--accent-orange);
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.9;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: var(--accent-orange);
    font-size: 1.2rem;
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Banner Responsive Enhancements */
@media (max-width: 1024px) {
    .construction-tools .tool {
        font-size: 1.5rem;
    }
    
    .animated-title {
        font-size: 3.2rem;
    }
    
    .cta-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .construction-particles,
    .construction-tools {
        display: none;
    }
    
    .animated-title {
        font-size: 2.5rem;
    }
    
    .typewriter-text {
        font-size: 1.1rem;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .scroll-indicator {
        right: 50%;
        transform: translateX(50%);
    }
    
    .blueprint-lines {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-dark-blue);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .banner-content .animated-title {
        font-size: 2rem;
    }

    .typewriter-text {
        font-size: 1rem !important;
        white-space: normal !important;
        animation: none !important;
        width: 100% !important;
        border-right: none !important;
        overflow: visible !important;
        line-height: 1.5 !important;
    }
    
    .typewriter-text.typewriter-active,
    .typewriter-text.typewriter-completed,
    .typewriter-text.typewriter-final {
        animation: none !important;
        width: 100% !important;
        border-right: none !important;
        white-space: normal !important;
        overflow: visible !important;
    }
    
    .typewriter-container {
        min-height: 60px;
    }
    
    .enhanced-cta {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .story-title {
        font-size: 2.5rem;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .images-container {
        gap: 25px;
    }
    
    .construction-card:hover .card-frame {
        transform: translateY(-5px);
    }
    
    .construction-icon {
        font-size: 2rem;
    }
    
    .blueprint-grid {
        background-size: 30px 30px;
    }

    .service-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .reverse-layout {
        direction: ltr;
    }
    
    .service-title {
        font-size: 2.2rem;
    }
    
    .services-title {
        font-size: 2.5rem;
    }
    
    .service-image img {
        height: 300px;
    }
    
    .service-section {
        padding: 80px 0;
    }
    
    .services-header {
        padding: 80px 0 40px;
    }
    
    /* Enhanced CTA Section Mobile */
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-header h2 {
        font-size: 2.5rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .indicator-item {
        min-width: 200px;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .trust-badge {
        font-size: 0.9rem;
    }

    /* Enhanced Why Choose Us Mobile */
    .why-choose-us {
        padding: 80px 0;
    }
    
    .why-choose-title {
        font-size: 2.5rem;
    }
    
    .features-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card {
        padding: 30px;
    }
    
    .feature-card:hover {
        transform: translateY(-10px);
    }
    
    .trust-elements {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .trust-item {
        min-width: 200px;
        justify-content: center;
    }
    
    .section-divider {
        gap: 15px;
    }
    
    .divider-line {
        width: 60px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(6, 200px);
    }

    .gallery-item.large,
    .gallery-item.medium {
        grid-column: span 1;
        grid-row: span 1;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-info {
        align-items: center;
    }

    .contact-item {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    /* Enhanced Gallery Mobile */
    .gallery-showcase {
        padding: 80px 0;
    }
    
    .gallery-title {
        font-size: 2.8rem;
    }
    
    .gallery-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .stat-box {
        min-width: 200px;
    }
    
    .featured-project {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .project-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .project-title {
        font-size: 1.8rem;
    }
    
    .project-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .project-card:hover {
        transform: translateY(-10px);
    }
    
    .quality-assurance {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .assurance-item {
        min-width: 200px;
        justify-content: center;
    }
    
    .view-more-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .testimonials-slider {
        padding: 0 10px;
    }
    
    /* Enhanced Testimonials Mobile */
    .testimonials-showcase {
        padding: 80px 0;
        min-height: auto;
    }
    
    .testimonials-title {
        font-size: 2.5rem;
    }
    
    .testimonials-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 250px;
    }
    
    .testimonial-card {
        margin: 0 10px;
        padding: 30px 20px;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .client-info {
        text-align: center;
    }
    
    .testimonial-rating {
        text-align: center;
    }
    
    .testimonial-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .highlight-item {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .testimonial-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .project-details {
        justify-content: center;
    }
    
    .nav-controls {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .nav-btn {
        width: 100%;
        justify-content: center;
        max-width: 200px;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .trust-item {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .quote-1, .quote-2, .quote-3, .quote-4 {
        display: none;
    }
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional Banner Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 107, 53, 0.8), 0 0 30px rgba(255, 107, 53, 0.3);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}
