/* 
    ABOUT PAGE STYLES
    - Primary CTA color: #2563eb (blue)
    - Secondary accent: #10b981 (green)
    - Background: #f8fafc (light gray)
*/

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #334155;
    background-color: #f8fafc;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* New Modern Header Design with Updated Logo */
.new-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
    height: 80px;
}

.header-left .logo h1 {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(45deg, #2563eb, #10b981);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.header-center .main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.header-center .main-nav a {
    text-decoration: none;
    color: #334155;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.header-center .main-nav a:hover,
.header-center .main-nav a.active {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
}

.contact-bar {
    margin-right: 1.5rem;
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(90deg, #10b981, #059669);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    white-space: nowrap;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.6);
}

.phone-icon {
    font-size: 1.4rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.6rem;
    border-radius: 0.5rem;
    transition: background 0.3s ease;
}

.mobile-menu-btn:hover {
    background: #f1f5f9;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: #334155;
    margin: 4px 0;
    transition: 0.4s;
    border-radius: 2px;
}

/* Mobile Menu - Hidden by default */
.mobile-menu {
    display: none;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
    padding: 1rem 2rem;
    border-top: 1px solid #e2e8f0;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 0.5rem;
}

.mobile-nav a {
    display: block;
    text-decoration: none;
    color: #334155;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: #2563eb;
    color: white;
}

.mobile-contact {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.mobile-contact-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(90deg, #10b981, #059669);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    justify-content: center;
}

.mobile-contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.6);
}

/* Hero Section with Same Design as Home Page */
.modern-hero {
    height: 80vh;
    min-height: 600px;
    background-image: url('https://media.istockphoto.com/id/1352437949/id/foto/arsitek-berbicara-tentang-proyek-baru-di-kantor.jpg?s=612x612&w=0&k=20&c=P8u-AqSAYn_Mb_DCKW7TrzB1XkmHg5y_d3KWyEfoSyA=');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px; /* Space for fixed header */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(3px);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    color: white;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    color: #f1f5f9;
    font-weight: 400;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.phone-button {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 1.3rem 2.7rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.5);
    border: 2px solid #10b981;
    white-space: nowrap;
}

.phone-button:hover {
    background: transparent;
    color: #10b981;
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(16, 185, 129, 0.7);
}

.estimate-button {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 1.3rem 2.7rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    border: 2px solid white;
    white-space: nowrap;
}

.estimate-button:hover {
    background: white;
    color: #1e293b;
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.5);
}

/* Team Section with New Images */
.team-section {
    padding: 5rem 0;
    background: white;
}

.team-section h2 {
    text-align: center;
    font-size: 2.7rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #f8fafc;
    border-radius: 1.2rem;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid #e2e8f0;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: #2563eb;
}

.member-image {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    border: 5px solid white;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.role {
    color: #2563eb;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.bio {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1.2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.mission-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    color: #1e293b;
}

blockquote {
    font-size: 1.8rem;
    font-style: italic;
    color: #10b981;
    margin-bottom: 2.5rem;
    padding: 0 2rem;
    line-height: 1.5;
}

blockquote p::before {
    content: """;
}

blockquote p::after {
    content: """;
}

.mission-content p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.8;
}

/* Experience Section with Updated Date */
.experience-section {
    padding: 5rem 0;
    background: white;
}

.experience-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, #2563eb, #10b981);
    left: 30px;
    margin-left: -2.5px;
    border-radius: 10px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 70px;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, #2563eb, #10b981);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1e293b;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.1rem;
}

.service-area {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, #dbeafe 0%, #d1fae5 100%);
    border-radius: 1.2rem;
    max-width: 700px;
    margin: 4rem auto 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.service-area h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #1e293b;
}

.service-area p {
    color: #64748b;
    font-size: 1.2rem;
    line-height: 1.7;
}

/* Trust Badges */
.trust-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.trust-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    background: white;
    padding: 2.5rem;
    border-radius: 1.2rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    border-color: #2563eb;
}

.badge-image {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
}

.badge p {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.3rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2563eb 0%, #10b981 100%);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
}

.estimate-button-cta {
    display: inline-block;
    background: white;
    color: #2563eb;
    padding: 1.5rem 3.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    white-space: nowrap;
}

.estimate-button-cta:hover {
    background: #f8fafc;
    color: #1d4ed8;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

/* Modern Footer with Updated Logo */
.modern-footer {
    background: #1e293b;
    color: #cbd5e1;
    padding: 5rem 0 1.8rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-column h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #2563eb, #10b981);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-column h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #2563eb;
    border-radius: 2px;
}

.footer-column p {
    margin-bottom: 0.8rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    font-size: 1.1rem;
}

.footer-column a:hover {
    color: #2563eb;
    transform: translateX(7px);
}

.contact-details a {
    color: #94a3b8;
    font-weight: 500;
}

.contact-details a:hover {
    color: #2563eb;
}

.social-links {
    display: flex;
    gap: 1.3rem;
    margin-top: 1.3rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #334155;
    border-radius: 50%;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: #2563eb;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 1.1rem;
}

.footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #2563eb;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
}

@media (max-width: 900px) {
    .header-center {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .team-section h2,
    .mission-section h2,
    .experience-section h2,
    .trust-section h2,
    .cta-section h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
        height: 70px;
    }
    
    .header-left .logo h1 {
        font-size: 1.8rem;
    }
    
    .contact-bar {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn span {
        width: 24px;
        height: 2.5px;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .modern-hero {
        height: 75vh;
        min-height: 500px;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        gap: 1.2rem;
    }
    
    .phone-button,
    .estimate-button {
        padding: 1.1rem 2.2rem;
        font-size: 1.05rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .member-image {
        width: 180px;
        height: 180px;
    }
    
    .member-info h3 {
        font-size: 1.6rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 55px;
    }
    
    .timeline-year {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline-content h3 {
        font-size: 1.3rem;
    }
    
    .badges {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .badge {
        padding: 2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 0.8rem;
    }
    
    .header-left .logo h1 {
        font-size: 1.6rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .phone-button,
    .estimate-button {
        padding: 1rem 2rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        font-size: 1rem;
    }
    
    .team-section h2,
    .mission-section h2,
    .experience-section h2,
    .trust-section h2,
    .cta-section h2 {
        font-size: 2.1rem;
    }
    
    .member-image {
        width: 160px;
        height: 160px;
    }
    
    .member-info h3 {
        font-size: 1.4rem;
    }
    
    .role {
        font-size: 1.1rem;
    }
    
    .bio {
        font-size: 1rem;
    }
    
    blockquote {
        font-size: 1.5rem;
        padding: 0 1rem;
    }
    
    .service-area {
        padding: 2rem 1.5rem;
    }
    
    .service-area h3 {
        font-size: 1.5rem;
    }
    
    .service-area p {
        font-size: 1.1rem;
    }
    
    .estimate-button-cta {
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
    }
}