/* Kingspok Construction - Modern Enhancements */

/* Import Modern Fonts */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ============================================
   HERO SLIDER ENHANCEMENTS
   ============================================ */
.hero-with-stats {
    position: relative;
    margin-bottom: 0 !important;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slider-dots {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.hero-slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider-dots .dot:hover {
    background: rgba(255, 215, 0, 0.6);
    transform: scale(1.2);
}

.hero-slider-dots .dot.active {
    background: var(--secondary-gold);
    border-color: var(--primary-blue);
    transform: scale(1.3);
}

/* ============================================
   PROJECTS PAGE ENHANCEMENTS
   ============================================ */

/* Project Stats Section */
.project-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8eef5 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-gold), #e6b33a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    font-size: 48px;
    color: var(--secondary-gold);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 16px;
    color: var(--text-medium);
    font-weight: 500;
}

/* Project Cards Enhanced */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.project-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: white;
    opacity: 1;
    transform: scale(1);
}

.project-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
}

.project-category {
    background: rgba(255, 215, 0, 0.95);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.project-info {
    padding: 24px;
    background: white;
    position: relative;
    z-index: 2;
}

.project-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.project-info p {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-info i {
    color: var(--secondary-gold);
    font-size: 12px;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
}

/* Project Sectors */
.project-sectors {
    padding: 80px 0;
    background: white;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.sector-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 40px 32px;
    border-radius: 16px;
    border: 2px solid rgba(0, 51, 102, 0.08);
    transition: all 0.3s ease;
}

.sector-card:hover {
    border-color: var(--secondary-gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.sector-icon {
    font-size: 48px;
    color: var(--secondary-gold);
    margin-bottom: 20px;
}

.sector-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.sector-card p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.sector-examples {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sector-examples li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-medium);
    font-size: 14px;
}

.sector-examples li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-gold);
    font-weight: 700;
}

/* Major Projects Tables */
.major-projects-section {
    padding: 80px 0;
    background: #f8fafc;
}

.major-buildings,
.major-roads {
    margin-bottom: 60px;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    background: white;
    margin-top: 24px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.data-table thead {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0a4a7d 100%);
    color: white;
}

.data-table th {
    padding: 18px 16px;
    text-align: left;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table tbody tr {
    border-bottom: 1px solid #e8eef5;
    transition: background 0.2s ease;
}

.data-table tbody tr:hover {
    background: #f8fafc;
}

.data-table td {
    padding: 16px;
    color: var(--text-medium);
}

.data-table td.align-right {
    text-align: right;
    font-weight: 600;
    color: var(--primary-blue);
}

/* Success Factors */
.project-success-section {
    padding: 80px 0;
}

.success-factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.success-factor {
    background: white;
    padding: 32px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.success-factor:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.factor-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--secondary-gold) 0%, #e6b33a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-blue);
}

.success-factor h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.success-factor p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Clients Grid Compact */
.clients-grid--compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 40px;
    align-items: center;
}

.client-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.client-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.client-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .sectors-grid,
    .success-factors-grid {
        grid-template-columns: 1fr;
    }
    
    .data-table {
        font-size: 12px;
    }
    
    .data-table th,
    .data-table td {
        padding: 12px 8px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .project-card img {
        height: 220px;
    }
}

/* ============================================
   SERVICES PAGE ENHANCEMENTS
   ============================================ */

/* Services Overview */
.services-overview {
    padding: 60px 0;
    background: white;
}

.overview-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.overview-content .lead {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
}

/* Core Services Grid */
.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-gold), #e6b33a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-gold) 0%, #e6b33a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
    font-family: var(--font-heading);
    text-align: center;
}

.service-card > p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: center;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.service-features li {
    padding: 10px 0;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-features i {
    color: var(--secondary-gold);
    font-size: 14px;
}

.service-cta {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0a4a7d 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.service-cta:hover {
    background: linear-gradient(135deg, #0a4a7d 0%, var(--primary-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 51, 102, 0.3);
}

/* Additional Services Section */
.additional-services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8eef5 100%);
    position: relative;
}

.additional-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-gold), transparent);
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.additional-service-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.additional-service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-gold);
}

.additional-service-card .service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(230, 179, 58, 0.1) 100%);
    border: 3px solid var(--secondary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
    color: var(--primary-blue);
    transition: all 0.4s ease;
}

.additional-service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--secondary-gold) 0%, #e6b33a 100%);
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
}

.additional-service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.service-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

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

.additional-service-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 15px;
}

/* Process Section */
.process-section {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 20px;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -40px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-gold), transparent);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0a4a7d 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(0, 51, 102, 0.3);
    position: relative;
    font-family: var(--font-heading);
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid var(--secondary-gold);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step:hover .step-number::before {
    opacity: 1;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.process-step p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Features Grid */
.features {
    padding: 80px 0;
    background: white;
}

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

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 215, 0, 0.3);
}

.feature-icon {
    font-size: 48px;
    color: var(--secondary-gold);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.feature-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--secondary-gold);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateX(4px);
}

.faq-question {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.8;
    margin: 0;
}

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

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-section .btn {
    background: var(--secondary-gold);
    color: var(--primary-blue);
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
}

.cta-section .btn:hover {
    background: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3);
}

/* Gradient Text Utilities */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0a4a7d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-blue {
    background: linear-gradient(135deg, #0a4a7d 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .services-grid,
    .additional-services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .process-step::after {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .service-card,
    .additional-service-card {
        padding: 32px 24px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
}

/* ============================================
   ABOUT PAGE ENHANCEMENTS
   ============================================ */

/* About Intro Section */
.about-intro {
    padding: 80px 0;
    background: white;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}

.about-intro-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.about-intro-content .lead {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-intro-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.about-intro-media img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-intro-media img:hover {
    transform: scale(1.02);
}

/* Mission & Vision Section */
.mission-vision {
    padding: 80px 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.mission-card,
.vision-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--secondary-gold), #e6b33a);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(230, 179, 58, 0.1) 100%);
    border: 4px solid var(--secondary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 48px;
    color: var(--primary-blue);
    transition: all 0.4s ease;
}

.mission-card:hover .icon-wrapper,
.vision-card:hover .icon-wrapper {
    background: linear-gradient(135deg, var(--secondary-gold) 0%, #e6b33a 100%);
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.mission-card h3,
.vision-card h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
    text-align: center;
    font-family: var(--font-heading);
}

.mission-card p,
.vision-card p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    text-align: center;
}

/* Core Values Section */
.core-values {
    padding: 80px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.value-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.value-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--secondary-gold), #e6b33a);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
}

.value-card:hover::after {
    opacity: 1;
}

.value-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0a4a7d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
    color: var(--secondary-gold);
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(0, 51, 102, 0.2);
}

.value-card:hover .value-icon {
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 0 12px 32px rgba(0, 51, 102, 0.3);
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-medium);
}

/* Company Stats */
.company-stats {
    padding: 80px 0;
}

.company-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.company-stats .stat-card {
    background: white;
    padding: 50px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.company-stats .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-gold), #e6b33a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.company-stats .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.company-stats .stat-card:hover::before {
    transform: scaleX(1);
}

.company-stats .stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.company-stats .stat-label {
    font-size: 18px;
    color: var(--text-medium);
    font-weight: 600;
}

/* Expertise Section */
.expertise-section {
    padding: 80px 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.expertise-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 5px solid var(--secondary-gold);
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
    border-left-width: 8px;
}

.expertise-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(230, 179, 58, 0.15) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 36px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.expertise-card:hover .expertise-icon {
    background: linear-gradient(135deg, var(--secondary-gold) 0%, #e6b33a 100%);
    transform: scale(1.1);
}

.expertise-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.expertise-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-medium);
    font-size: 14px;
}

.expertise-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-gold);
    font-weight: 700;
    font-size: 16px;
}

/* Leadership Team */
.leadership-team {
    padding: 80px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    align-items: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.member-image {
    position: relative;
}

.member-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 5px solid var(--secondary-gold);
}

.member-info h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.member-role {
    font-size: 18px;
    color: var(--secondary-gold);
    font-weight: 600;
    margin-bottom: 20px;
}

.member-info p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-medium);
}

/* Our Approach Section */
.our-approach {
    padding: 80px 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
    position: relative;
}

.approach-step {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.approach-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), #0a4a7d);
    border-radius: 16px 16px 0 0;
}

.approach-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
}

.step-number {
    font-size: 64px;
    font-weight: 800;
    color: rgba(255, 215, 0, 0.2);
    line-height: 1;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
}

.approach-step:hover .step-number {
    color: var(--secondary-gold);
    transform: scale(1.1);
}

.approach-step h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.approach-step p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-medium);
}

/* Testimonials Preview */
.testimonials-preview {
    padding: 80px 0;
    background: white;
}

.testimonials-preview .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.testimonials-preview .testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.testimonials-preview .testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: rgba(255, 215, 0, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonials-preview .testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.rating {
    color: var(--secondary-gold);
    margin-bottom: 20px;
    font-size: 18px;
}

.testimonial-content {
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-gold);
}

.author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-medium);
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
}

.why-choose-us .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

/* Responsive Design for About Page */
@media (max-width: 992px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-intro-media {
        order: -1;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .member-image {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .values-grid,
    .expertise-grid,
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-preview .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .company-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .mission-card,
    .vision-card {
        padding: 40px 24px;
    }
    
    .icon-wrapper {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }
    
    .company-stats .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member {
        padding: 32px 24px;
    }
}

/* ============================================
   ENHANCED CSS VARIABLES
   ============================================ */
:root {
    /* Colors - Enhanced Palette */
    --primary-blue: #003366;
    --primary-blue-light: #0a4a7d;
    --primary-blue-dark: #001a33;
    --secondary-gold: #FFD700;
    --secondary-gold-light: #ffe44d;
    --secondary-gold-dark: #e6b33a;
    --accent-white: #FFFFFF;
    --text-dark: #1a1a1a;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-light: #f8fafc;
    --bg-lighter: #ffffff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #003366 0%, #0a4a7d 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #e6b33a 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(0,51,102,0.95) 0%, rgba(10,74,125,0.85) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.16);
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Typography */
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
}

/* ============================================
   MODERN TYPOGRAPHY
   ============================================ */
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

/* ============================================
   ENHANCED HERO SECTION WITH ZOOM EFFECT
   ============================================ */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background-color: var(--primary-blue-dark);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
    visibility: visible;
    pointer-events: none;
}

/* Background image container with zoom effect */
.hero-slide::before {
    content: '';
    position: absolute;
    inset: -10%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: var(--slide-bg);
    z-index: 0;
    transform: scale(1);
    transition: transform 8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none; /* Ensures background doesn't block interactions */
}

/* Zoom in effect when slide is active */
.hero-slide.active::before {
    transform: scale(1.15);
}

/* Zoom out effect when slide is leaving */
.hero-slide.zoom-out::before {
    transform: scale(1);
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark overlay - pointer-events: none allows clicks to pass through */
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
    z-index: 1;
    pointer-events: none; /* Critical: allows interaction with slider elements */
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    visibility: visible;
    pointer-events: auto;
}

/* Ensure outgoing slide remains visible during fade-out to prevent white flash */
.hero-slide.leaving {
    opacity: 0;
    visibility: visible;
    z-index: 1;
}

/* Subtle radial gradient accent */
.hero-slide .hero-accent {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 2rem;
    animation: heroFadeUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slider h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-slider p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.hero-slider .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50px;
    color: var(--primary-blue);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.4);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.hero-slider .btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.hero-slider .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(255, 215, 0, 0.5);
}

.hero-slider .btn:hover::before {
    opacity: 1;
}

/* ============================================
   MODERN CARD DESIGNS
   ============================================ */
.service-card,
.feature-card,
.project-card {
    background: var(--bg-lighter);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before,
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.service-card:hover,
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before,
.feature-card:hover::before {
    transform: scaleX(1);
}

.service-icon,
.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--secondary-gold);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon,
.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   BENTO GRID LAYOUT
   ============================================ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.bento-item {
    background: var(--bg-lighter);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.bento-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.bento-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.bento-item:hover::after {
    opacity: 0.05;
}

.bento-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item-wide {
    grid-column: span 2;
}

.bento-item-tall {
    grid-row: span 2;
}

/* ============================================
   GLASSMORPHISM EFFECTS
   ============================================ */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-header {
    background: rgba(0, 51, 102, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   ANIMATED STATISTICS
   ============================================ */
.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-lighter);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.stat-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.stat-card:hover::before {
    opacity: 0.95;
}

.stat-card:hover .stat-number,
.stat-card:hover .stat-label {
    color: var(--accent-white);
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    transition: all var(--transition-normal);
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-medium);
    transition: all var(--transition-normal);
}

/* ============================================
   ENHANCED BUTTONS
   ============================================ */
.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    background: var(--gradient-gold);
    color: var(--primary-blue);
    border: none;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-modern:hover::before {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--accent-white);
}

/* ============================================
   PARALLAX SECTIONS
   ============================================ */
.parallax-section {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 500px;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   ENHANCED PROJECT CARDS WITH MODERN EFFECTS
   ============================================ */
.location-card,
.project-card-modern {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.location-card {
    background: var(--bg-lighter);
}

.location-card img,
.project-card-modern img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    filter: brightness(0.95);
}

.location-card:hover img,
.project-card-modern:hover img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1);
}

.location-card::before,
.project-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, rgba(0,51,102,0.8) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 1;
    pointer-events: none;
}

.location-card:hover::before,
.project-card-modern:hover::before {
    opacity: 1;
}

.location-info {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    background: var(--bg-lighter);
}

.location-info h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    transition: color var(--transition-normal);
}

.location-card:hover .location-info h3 {
    color: var(--secondary-gold);
}

.location-info p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-medium);
    transition: transform var(--transition-fast);
}

.location-card:hover .location-info p {
    transform: translateX(5px);
}

.location-info i {
    color: var(--secondary-gold);
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

/* Project card overlay enhancement */
.project-card-modern .project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 2;
}

.project-card-modern:hover .project-overlay {
    opacity: 1;
}

.project-card-modern h3 {
    color: var(--accent-white);
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.project-card-modern:hover h3 {
    transform: translateY(0);
}

.project-card-modern p {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(20px);
    transition: transform var(--transition-normal) 0.1s;
}

.project-card-modern:hover p {
    transform: translateY(0);
}

/* Add shine effect on hover */
.location-card::after,
.project-card-modern::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
    pointer-events: none;
    z-index: 3;
}

.location-card:hover::after,
.project-card-modern:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.floating-delayed {
    animation: float 6s ease-in-out 3s infinite;
}

/* ============================================
   GRADIENT TEXT
   ============================================ */
.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-blue {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
/* ============================================
   HERO SLIDER DOTS ENHANCEMENT
   ============================================ */
.hero-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.6);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.hero-slider-dots .dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slider-dots .dot.active {
    background: var(--secondary-gold);
    border-color: var(--secondary-gold);
    transform: scale(1.3);
}

.hero-slider-dots .dot.active::before {
    border-color: rgba(255, 215, 0, 0.3);
}

.hero-slider-dots .dot:hover {
    background: rgba(255, 215, 0, 0.7);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .bento-item-large,
    .bento-item-wide,
    .bento-item-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .hero-slider {
        min-height: 500px;
    }
    
    .hero-slider-dots {
        bottom: 20px;
    }
    
    .hero-slider-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    .parallax-section {
        background-attachment: scroll;
        min-height: 400px;
    }
}

/* ============================================
   ENHANCED TESTIMONIALS
   ============================================ */
.testimonial-card {
    background: var(--bg-lighter);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 120px;
    color: rgba(255, 215, 0, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.testimonial-card:hover::before {
    color: rgba(255, 215, 0, 0.15);
}

.rating {
    color: var(--secondary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.rating i {
    margin-right: 0.25rem;
    transition: transform var(--transition-fast);
}

.testimonial-card:hover .rating i {
    transform: scale(1.2);
}

.testimonial-card:hover .rating i:nth-child(1) { transition-delay: 0s; }
.testimonial-card:hover .rating i:nth-child(2) { transition-delay: 0.05s; }
.testimonial-card:hover .rating i:nth-child(3) { transition-delay: 0.1s; }
.testimonial-card:hover .rating i:nth-child(4) { transition-delay: 0.15s; }
.testimonial-card:hover .rating i:nth-child(5) { transition-delay: 0.2s; }

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
    color: var(--text-medium);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-gold);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.testimonial-card:hover .testimonial-author img {
    transform: scale(1.1) rotate(5deg);
    border-width: 4px;
}

.author-info h4 {
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   ENHANCED PROCESS STEPS
   ============================================ */
.process-step {
    text-align: center;
    position: relative;
    padding: 2rem 1.5rem;
    background: var(--bg-lighter);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--bg-lighter) 0%, rgba(255, 215, 0, 0.05) 100%);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--accent-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all var(--transition-normal);
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: var(--gradient-gold);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-normal);
}

.process-step:hover .step-number {
    transform: scale(1.15) rotate(360deg);
}

.process-step:hover .step-number::before {
    opacity: 0.3;
}

.process-step h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.process-step p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Connector line between steps */
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -30px;
    width: 30px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFD700'%3E%3Cpath d='M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center center;
    opacity: 0.4;
    transition: opacity var(--transition-normal);
}

.process-step:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .process-step:not(:last-child)::after {
        display: none;
    }
}

/* ============================================
   ENHANCED FAQ SECTION
   ============================================ */
.faq-item {
    background: var(--bg-lighter);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--secondary-gold);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(8px);
    border-left-width: 6px;
}

.faq-item h3 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-item h3::before {
    content: '?';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--gradient-gold);
    color: var(--primary-blue);
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.8;
    margin: 0;
}

.faq-item a {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.faq-item a:hover {
    color: var(--secondary-gold);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.p-1 { padding: var(--spacing-xs); }
.p-2 { padding: var(--spacing-sm); }
.p-3 { padding: var(--spacing-md); }
.p-4 { padding: var(--spacing-lg); }
.p-5 { padding: var(--spacing-xl); }

/* Pulse animation for CTAs */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(255, 215, 0, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}
