* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
    min-height: 100vh;
}

.tirta-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.tirta-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.tirta-logo {
    width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
}

.tirta-company-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    text-align: left;
}

.tirta-nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.tirta-nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
}

.tirta-nav-menu a:hover,
.tirta-nav-active {
    color: #4f46e5;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.1));
    padding: 8px 16px;
    border-radius: 20px;
    transform: translateY(-1px);
}

.tirta-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4f46e5, #06b6d4);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.tirta-nav-menu a:hover::after,
.tirta-nav-active::after {
    width: 100%;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
}

.tirta-nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.tirta-nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.tirta-main {
    margin-top: 80px;
}

.tirta-page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.tirta-page-hero::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="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.tirta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tirta-page-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.tirta-page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tirta-page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.tirta-history {
    padding: 100px 0;
    background: #ffffff;
}

.tirta-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.tirta-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #4f46e5, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tirta-section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.tirta-history-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

.tirta-timeline {
    position: relative;
    padding-left: 40px;
}

.tirta-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #4f46e5, #06b6d4);
}

.tirta-timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 40px;
}

.tirta-timeline-item::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 0;
    width: 16px;
    height: 16px;
    background: linear-gradient(45deg, #4f46e5, #06b6d4);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.2);
}

.tirta-timeline-year {
    display: inline-block;
    background: linear-gradient(45deg, #4f46e5, #06b6d4);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.tirta-timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.tirta-timeline-content p {
    color: #6b7280;
    line-height: 1.8;
}

.tirta-history-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tirta-history-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.tirta-mission-vision {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.tirta-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.tirta-mission-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tirta-mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.tirta-mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    /* background: linear-gradient(45deg, #4f46e5, #06b6d4); */
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tirta-mission-icon img {
    width: 50px;
    height: 50px;
}

.tirta-mission-icon svg {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 4px 12px rgba(79, 70, 229, 0.3));
}

.tirta-mission-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
}

.tirta-mission-text {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 20px;
}

.tirta-values-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tirta-value-item {
    background: linear-gradient(45deg, #4f46e5, #06b6d4);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.tirta-team {
    padding: 100px 0;
    background: #ffffff;
}

.tirta-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.tirta-team-member {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tirta-team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.tirta-member-photo {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.tirta-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tirta-member-info {
    padding: 30px;
    text-align: center;
}

.tirta-member-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.tirta-member-position {
    color: #4f46e5;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 1rem;
}

.tirta-member-desc {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

.tirta-qualifications {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 50px;
    border-radius: 20px;
}

.tirta-qual-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
    margin-bottom: 40px;
}

.tirta-qual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tirta-qual-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.8);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.tirta-qual-icon {
    width: 60px;
    height: 60px;
    /* background: linear-gradient(45deg, #4f46e5, #06b6d4); */
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tirta-qual-icon img {
    width: 35px;
    height: 35px;
}

.tirta-qual-icon svg {
    width: 35px;
    height: 35px;
    filter: drop-shadow(0 4px 12px rgba(79, 70, 229, 0.3));
}

.tirta-qual-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.tirta-qual-content p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.9rem;
}

.tirta-social-responsibility {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.tirta-social-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tirta-social-programs {
    margin-top: 40px;
}

.tirta-program-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.tirta-program-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.tirta-program-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #4f46e5, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tirta-program-item p {
    color: #6b7280;
    line-height: 1.8;
}

.tirta-social-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.tirta-achievements {
    padding: 100px 0;
    background: #ffffff;
}

.tirta-achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.tirta-achievement-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
    position: relative;
    overflow: hidden;
}

.tirta-achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #06b6d4);
}

.tirta-achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.tirta-achievement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    /* background: linear-gradient(45deg, #4f46e5, #06b6d4); */
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tirta-achievement-icon img {
    width: 45px;
    height: 45px;
}

.tirta-achievement-icon svg {
    width: 45px;
    height: 45px;
    filter: drop-shadow(0 4px 12px rgba(79, 70, 229, 0.3));
}

.tirta-achievement-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.tirta-achievement-desc {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 20px;
}

.tirta-achievement-year {
    display: inline-block;
    background: linear-gradient(45deg, #4f46e5, #06b6d4);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.tirta-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
    color: white;
    text-align: center;
}

.tirta-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.tirta-cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tirta-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.tirta-btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.tirta-btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.tirta-btn-outline {
    background: transparent;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.tirta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.tirta-footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.tirta-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.tirta-footer-logo {
    width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.tirta-footer-company-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    text-align: left;
}

.tirta-footer-desc {
    color: #d1d5db;
    line-height: 1.8;
    max-width: 400px;
}

.tirta-footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.tirta-footer-links {
    list-style: none;
}

.tirta-footer-links li {
    margin-bottom: 10px;
}

.tirta-footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tirta-footer-links a:hover {
    color: #4f46e5;
}

.tirta-contact-info p {
    color: #d1d5db;
    margin-bottom: 8px;
    line-height: 1.6;
}

.tirta-footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
}

/* Privacy Banner Styles */
.tirta-privacy-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: white;
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.tirta-privacy-banner.show {
    transform: translateY(0);
}

.tirta-privacy-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.tirta-privacy-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.tirta-privacy-text a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 500;
}

.tirta-privacy-text a:hover {
    text-decoration: underline;
}

.tirta-privacy-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.tirta-privacy-accept {
    background: linear-gradient(45deg, #4f46e5, #06b6d4);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tirta-privacy-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

.tirta-privacy-close {
    background: transparent;
    border: 2px solid #6b7280;
    color: #6b7280;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tirta-privacy-close:hover {
    border-color: white;
    color: white;
}

@media (max-width: 768px) {
    .tirta-nav-menu {
        display: none;
    }

    .tirta-nav-toggle {
        display: flex;
    }

    .tirta-logo {
        width: 160px;
    }

    .tirta-company-name {
        font-size: 0.75rem;
    }

    .tirta-footer-logo {
        width: 180px;
    }

    .tirta-footer-company-name {
        font-size: 0.8rem;
    }

    .tirta-page-title {
        font-size: 2.5rem;
    }

    .tirta-history-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tirta-timeline {
        padding-left: 30px;
    }

    .tirta-timeline::before {
        left: 15px;
    }

    .tirta-timeline-item {
        padding-left: 30px;
    }

    .tirta-timeline-item::before {
        left: -23px;
    }

    .tirta-mission-grid {
        grid-template-columns: 1fr;
    }

    .tirta-team-grid {
        grid-template-columns: 1fr;
    }

    .tirta-qual-grid {
        grid-template-columns: 1fr;
    }

    .tirta-qual-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .tirta-social-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tirta-achievements-grid {
        grid-template-columns: 1fr;
    }

    .tirta-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tirta-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .tirta-qualifications {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .tirta-logo {
        width: 140px;
    }

    .tirta-company-name {
        font-size: 0.7rem;
    }

    .tirta-footer-company-name {
        font-size: 0.75rem;
    }

    .tirta-page-title {
        font-size: 2rem;
    }

    .tirta-section-title {
        font-size: 2rem;
    }

    .tirta-cta-title {
        font-size: 2rem;
    }

    .tirta-mission-card,
    .tirta-achievement-card {
        padding: 30px 20px;
    }

    .tirta-timeline {
        padding-left: 20px;
    }

    .tirta-timeline::before {
        left: 10px;
    }

    .tirta-timeline-item {
        padding-left: 25px;
    }

    .tirta-timeline-item::before {
        left: -18px;
        width: 12px;
        height: 12px;
    }

    .tirta-program-item {
        padding: 25px 20px;
    }

    .tirta-team-member {
        margin-bottom: 30px;
    }

    .tirta-member-photo {
        height: 250px;
    }

    .tirta-member-info {
        padding: 25px 20px;
    }

    .tirta-qualifications {
        padding: 25px 20px;
    }

    .tirta-qual-item {
        padding: 20px;
    }
}