/* J Mansion Dezign Style - GRH Associates Website - Enhanced */

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Animation Keyframes */
@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes slideInFromUp {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Header - J Mansion Style */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.logo img {
    height: 55px;
    width: auto;
}

.logo-text h1 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: -3px;
}

.logo-text span {
    font-size: 9px;
    color: #666;
    letter-spacing: 1px;
    font-weight: 400;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #F9B516;
    transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.nav a:hover,
.nav a.active {
    color: #F9B516;
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #333;
}

/* Hero Section - Full Screen Slider Style */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero_banner.webp') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: #F9B516;
    font-weight: 400;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 6px;
    margin-bottom: 30px;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.btn-primary {
    display: inline-block;
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-primary:hover {
    background: #F9B516;
    border-color: #F9B516;
    color: white;
}

/* Service Categories - Grid Layout with Animations */
.service-categories {
    padding: 80px 0 0 0;
    margin-top: 60px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 500px;
}

.service-category {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 80px 40px;
    transition: all 0.3s ease;
    opacity: 0;
}

.service-category.animate-slide-right {
    animation: slideInFromRight 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.service-category.animate-slide-up {
    animation: slideInFromUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

.service-category.animate-slide-left {
    animation: slideInFromLeft 0.8s ease-out forwards;
    animation-delay: 0.6s;
}

.service-category:hover {
    transform: scale(1.02);
}

.service-category:nth-child(1) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/projects/high-raise/high-raise-1.webp');
}

.service-category:nth-child(2) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/projects/commercial/commercial-1.webp');
}

.service-category:nth-child(3) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/projects/villa-duplex/villa-duplex-2.webp');
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: all 0.3s ease;
}

.service-category:hover .service-overlay {
    background: rgba(249, 181, 22, 0.8);
}

.service-content {
    position: relative;
    z-index: 2;
    max-width: 300px;
}

.service-content h2 {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.service-content p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Features Grid - Enhanced with Background and Animations */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000000" fill-opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 60px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.feature-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

.feature-item.animate-feature {
    animation: fadeInUp 0.8s ease-out forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }
.feature-item:nth-child(5) { animation-delay: 0.5s; }
.feature-item:nth-child(6) { animation-delay: 0.6s; }

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F9B516, #e6a314);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, #333, #555);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 30px;
    color: white;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Portfolio Section - Glass Morphism Hover */
.portfolio {
    padding: 100px 0;
    background: white;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #F4F4F4;
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    color: #666;
    border-right: 1px solid #ddd;
}

.filter-btn:last-child {
    border-right: none;
}

.filter-btn.active,
.filter-btn:hover {
    background: #F9B516;
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.portfolio-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.portfolio-item:hover {
    transform: scale(1.05);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.portfolio-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-content p {
    font-size: 14px;
    opacity: 0.9;
}

/* Statistics Section */
.statistics {
    padding: 80px 0;
    background: #333;
    color: white;
    text-align: center;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 300;
    color: #F9B516;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 400;
    color: #ccc;
    text-transform: uppercase;
}

.cta-section {
    text-align: center;
}

.btn-cta {
    display: inline-block;
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-cta:hover {
    background: #F9B516;
    border-color: #F9B516;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: #F4F4F4;
}

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

.process-step {
    text-align: center;
    padding: 40px 20px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 80px;
    height: 80px;
    background: #F9B516;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 300;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-step p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: white;
}

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

.testimonial {
    padding: 40px;
    background: #F4F4F4;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.testimonial:hover {
    background: #F9B516;
    color: white;
}

.testimonial p {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 16px;
}

.testimonial:hover p {
    color: white;
}

.testimonial-author strong {
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial:hover .testimonial-author strong {
    color: white;
}

.testimonial-author span {
    display: block;
    color: #999;
    font-size: 12px;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial:hover .testimonial-author span {
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.footer {
    background: #222;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #F9B516;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info p {
    margin-bottom: 8px;
    color: #ccc;
    font-size: 14px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.social-links a:hover {
    background: #F9B516;
}

.social-links a[href*="wa.me"] {
    background: #25D366;
}

.social-links a[href*="wa.me"]:hover {
    background: #128C7E;
}

.footer-description p {
    color: #ccc;
    line-height: 1.6;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 12px;
}

/* Page Header for Additional Pages */
.page-header {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero_banner.webp') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.page-header p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb {
    font-size: 14px;
    color: #F9B516;
}

.breadcrumb a {
    color: #F9B516;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

/* Services Page Styles */
.services-overview {
    padding: 100px 0;
    background: white;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-intro h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

/* Simplified Services Cards */
.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    text-align: center;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(249, 181, 22, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #F9B516;
}

.service-card .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F9B516, #e6a314);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #333, #555);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.service-card .service-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-tag {
    background: #F9B516;
    color: white;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.service-card:hover .feature-tag {
    background: #333;
}

/* Service Process Timeline */
.service-process {
    padding: 100px 0;
    background: #333;
    color: white;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #F9B516;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F9B516, #e6a314);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    color: white;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 8px #333;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    width: 45%;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    text-align: left;
}

.timeline-content:hover {
    background: rgba(249, 181, 22, 0.2);
    transform: translateY(-5px);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #F9B516;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #333;
    border: 2px solid #333;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-secondary:hover {
    background: #333;
    color: white;
}

/* About Page Styles */
.company-overview {
    padding: 100px 0;
    background: white;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.overview-text .lead {
    font-size: 1.2rem;
    color: #F9B516;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.6;
}

.overview-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.company-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: #F9B516;
    color: white;
    transform: translateY(-3px);
}

.highlight-item i {
    font-size: 24px;
    color: #F9B516;
    transition: color 0.3s ease;
}

.highlight-item:hover i {
    color: white;
}

.highlight-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
    transition: color 0.3s ease;
}

.highlight-item:hover h4 {
    color: white;
}

.highlight-item p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.highlight-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.overview-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.overview-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.experience-badge {
    background: rgba(249, 181, 22, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mission & Vision */
.mission-vision {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.mv-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    text-align: center;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mv-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F9B516, #e6a314);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.mv-item:hover .mv-icon {
    background: linear-gradient(135deg, #333, #555);
    transform: scale(1.1);
}

.mv-icon i {
    font-size: 30px;
    color: white;
}

.mv-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mv-item p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    justify-items: center;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 500px;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.member-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(249, 181, 22, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: white;
    color: #F9B516;
    transform: scale(1.1);
}

.member-info {
    padding: 30px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.designation {
    color: #F9B516;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-skills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.skill {
    background: #f8f9fa;
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Core Competencies */
.core-competencies {
    padding: 100px 0;
    background: #333;
    color: white;
}

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

.competency-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.competency-item:hover {
    background: rgba(249, 181, 22, 0.1);
    transform: translateY(-5px);
}

.competency-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #F9B516, #e6a314);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.competency-icon i {
    font-size: 24px;
    color: white;
}

.competency-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #F9B516;
}

.competency-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}

.competency-skills {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.skill-bar {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skill-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
}

.skill-progress {
    background: rgba(255, 255, 255, 0.1);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(135deg, #F9B516, #e6a314);
    border-radius: 4px;
    transition: width 2s ease;
}

/* Achievement Stats */
.achievement-stats {
    padding: 80px 0;
    background: #F9B516;
    color: white;
}

.achievement-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.achievement-stats .stat-item {
    text-align: center;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
}

.stat-icon i {
    font-size: 24px;
    color: white;
}

.achievement-stats .stat-number {
    font-size: 3rem;
    font-weight: 300;
    color: white;
    margin-bottom: 10px;
    display: block;
}

.achievement-stats .stat-label {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

/* Contact Page Styles */
.contact-main {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.contact-intro h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-section h3 {
    font-size: 1.8rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form {
    display: grid;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F9B516;
    background: white;
    box-shadow: 0 0 0 3px rgba(249, 181, 22, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #F9B516, #e6a314);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #333, #555);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Contact Info */
.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F9B516, #e6a314);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
}

/* Form Messages */
.form-message {
    padding: 30px 20px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: center;
    display: none;
}

.form-message.success {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
}

.form-message.error {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.form-message i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.form-message h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-message p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

/* Checkbox Styling */
.checkbox-group {
    position: relative;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e1e1e1;
    border-radius: 4px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #F9B516;
    border-color: #F9B516;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.checkbox-label a {
    color: #F9B516;
    text-decoration: none;
    transition: color 0.3s ease;
}

.checkbox-label a:hover {
    color: #e6a314;
    text-decoration: underline;
}

/* Social Section */
.social-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(249, 181, 22, 0.2);
}

.social-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-section .social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.social-section .social-links a {
    width: 45px;
    height: 45px;
    background: #F9B516;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-section .social-links a:hover {
    background: #333;
    transform: scale(1.1);
}

.social-section .social-links a[href*="wa.me"] {
    background: #25D366;
}

.social-section .social-links a[href*="wa.me"]:hover {
    background: #128C7E;
    transform: scale(1.1);
}

.contact-details span {
    display: block;
    font-size: 0.9rem;
    color: #999;
    margin-top: 5px;
    font-style: italic;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.map-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 300px;
}

.map-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.map-info p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F9B516;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.directions-btn:hover {
    background: #e6a314;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #F9B516;
    box-shadow: 0 5px 15px rgba(249, 181, 22, 0.1);
}

.faq-question {
    background: #f8f9fa;
    padding: 20px 25px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #F9B516;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item.active .faq-question {
    background: #F9B516;
    color: white;
}

.faq-item.active .faq-question::after {
    color: white;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav.active {
        display: block;
    }
    
    .nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .hero-subtitle {
        letter-spacing: 2px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-filters {
        gap: 0;
        flex-direction: column;
    }
    
    .filter-btn {
        border-right: none;
        border-bottom: 1px solid #ddd;
    }
    
    .filter-btn:last-child {
        border-bottom: none;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form-section {
        padding: 30px;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .timeline-marker {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        width: calc(100% - 100px);
        margin-left: 100px;
        text-align: left !important;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 100px;
        text-align: left;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .overview-image {
        order: -1;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .competencies-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .map-overlay {
        position: relative;
        top: auto;
        left: auto;
        margin-top: 20px;
        max-width: none;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .faq-question::after {
        right: 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 30px 20px;
    }
    
    .achievement-stats .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
    }
}

/* Animation triggers */
.animate-feature,
.animate-slide-right,
.animate-slide-left,
.animate-slide-up {
    opacity: 0;
}

.animate-feature.show,
.animate-slide-right.show,
.animate-slide-left.show,
.animate-slide-up.show {
    opacity: 1;
}