* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 87.5%;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.nav-news-button {
    margin-left: 1.5rem;
}

.btn-news {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1.2rem;
    background-color: #007bff;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 25px;
    text-decoration: none;
    box-shadow: 0 3px 8px rgba(0, 123, 255, 0.3);
    transition: background-color 0.3s ease;
}

.btn-news:hover {
    background-color: #0056b3;
}

/* Warna tombol berita saat navbar transparan */
.navbar.transparent .btn-news {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.navbar.transparent .btn-news:hover {
    background-color: rgba(255, 255, 255, 0.35);
    color: white;
}


.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    list-style: none;
    min-width: 180px;
    z-index: 1000;
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background-color: #436c95;
    color: white;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: left;
    text-align: left;
    color: white;
    position: relative;
}

.video-bg video,
.video-bg img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}


.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    margin-left: 80px;
}

.hero h1 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero .company-name {
    font-size: 1.6rem;
    color: #ecf0f1;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 10px 24px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid white;
    cursor: pointer;
    margin-top: 2rem;
}

.cta-button2 {
    display: inline-block;
    background: #0c7ac4;
    color: white;
    padding: 5px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #3498db;
}

.cta-button:hover {
    background: white;
    color: #000;
}

.section {
    padding: 70px 2rem;
    max-width: 1024px;
    margin: 0 auto;
}

.section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #215E99;
}

.grid-fixed-container {
    display: flex;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.grid-fixed-item {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
    display: flex;
    align-items: flex-end;
}

.grid-fixed-item:hover {
    transform: scale(1.01);
}

.grid-fixed-overlay {
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    color: #fff;
}

.grid-fixed-label {
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 1px;
}

.grid-fixed-overlay h3 {
    margin: 6px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.grid-fixed-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid white;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.grid-fixed-btn:hover {
    background: white;
    color: black;
}


.grid-fixed-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: 1;
}


.grid-fixed-item:hover::after {
    opacity: 1;
}

.grid-fixed-overlay {
    position: relative;
    z-index: 2;
    color: white;
    padding: 1rem;
}

.about-content,
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.about-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #2c3e50;
}

.stat-label {
    color: #666;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.contact-item {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
}

.contact-item i {
    font-size: 1.1rem;
    color: #3498db;
    margin-right: 1rem;
    width: 20px;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: bold;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #ecf0f1;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.submit-btn {
    width: 100%;
    background: #3498db;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #2980b9;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
}

.back-to-top:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .company-name {
        font-size: 1.4rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 1rem;
    }

    .btn-news {
  display: inline-block;
  background: linear-gradient(135deg, #27ae60, #219653);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(39, 174, 96, 0.3);
  transition: all 0.3s ease;
}

.btn-news:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(39, 174, 96, 0.4);
}

}
