*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#040d14;
    color:white;
}
/* ===== HEADER DEFAULT (TRANSPARENT) ===== */
.main-header{
    position:fixed;
    width:100%;
    top:0;
    z-index:1000;
    background:transparent;
    transition:0.4s;
}

/* ===== SCROLL MODE ===== */
.main-header.scrolled{
    background:white;
    box-shadow:0 2px 15px rgba(0,0,0,0.1);
}

/* CONTAINER */
.header-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 80px;
}

/* ===== LOGO ===== */
.logo img{
    height:100px;
    width:auto;
    object-fit:contain;
    transition:0.3s;
}

/* ===== NAV ===== */
nav{
    display:flex;
    align-items:center;
}

/* LINK */
nav a{
    margin-left:35px;
    text-decoration:none;
    font-size:14px;
    position:relative;
    transition:0.3s;
    color:white;
}

/* SCROLL NAV COLOR */
.main-header.scrolled nav a{
    color:#333;
}

/* ACTIVE (NO GOLD) */
nav a.active{
    font-weight:600;
    color:inherit;
}

/* UNDERLINE EFFECT */
nav a::after{
    content:'';
    position:absolute;
    bottom:-5px;
    left:0;
    width:0%;
    height:2px;
    background:#333;
    transition:0.3s;
}

/* SCROLL UNDERLINE */
.main-header.scrolled nav a::after{
    background:#333;
}

/* HOVER */
nav a:hover::after{
    width:100%;
}

/* ===== DROPDOWN ===== */
.dropdown{
    position:relative;
}

/* BOX */
.dropdown-content{
    position:absolute;
    top:40px;
    left:0;
    background:white;
    border-radius:10px;
    overflow:hidden;
    min-width:200px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:0.25s;
}

/* SHOW */
.dropdown:hover .dropdown-content{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* ITEM */
.dropdown-content a{
    display:block;
    padding:12px 15px;
    color:#333;
}

/* HOVER ITEM */
.dropdown-content a:hover{
    background:#f5f5f5;
}
/* HERO */
.hero{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    text-align:center;
    background:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.9)),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') center/cover no-repeat;
}

.hero h2{
    font-size:80px;
    letter-spacing:6px;
    animation:fadeUp 1.5s forwards;
}

.hero p{
    margin-top:15px;
    color:rgba(255,255,255,0.6);
    letter-spacing:3px;
}

/* SECTION */
.section{
    padding:120px 60px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{
    border:1px solid rgba(255,255,255,0.1);
    padding:30px;
    border-radius:10px;
}

.footer{
    text-align:center;
    padding:30px;
    background:#02080d;
}
/* ABOUT HERO */
.about-hero{
    height:60vh;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    text-align:center;
    background:linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.9)),
    url('images/photo4.png') center/cover no-repeat;
}

.about-hero h2{
    font-size:50px;
    letter-spacing:5px;
}

.about-hero p{
    margin-top:10px;
    color:rgba(255,255,255,0.6);
}


/* LEVEL */
.level{
    display:flex;
    justify-content:center;
    gap:60px;
    margin:40px 0;
    position:relative;
}

/* LINE CONNECTOR */
.line{
    width:2px;
    height:50px;
    background:linear-gradient(to bottom, #caa12c, transparent);
    margin:0 auto;
}

/* PERSON CARD */
.person{
    width:190px;
    padding:15px;
    border-radius:15px;
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.1);
    backdrop-filter:blur(10px);
    transition:0.4s;
    position:relative;
    cursor:pointer;
}

/* IMAGE */
.person img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:12px;
    transition:0.4s;
}

/* TEXT */
.person h4{
    margin-top:12px;
    font-size:14px;
}

/* HOVER EFFECT */
.person:hover{
    transform:translateY(-12px) scale(1.05);
    border-color:#caa12c;
    box-shadow:0 20px 40px rgba(0,0,0,0.7);
}

.person:hover img{
    transform:scale(1.1);
}

.person:hover h4{
    color:#caa12c;
}

/* GLOW LINE TOP */
.person::before{
    content:'';
    position:absolute;
    top:-10px;
    left:50%;
    transform:translateX(-50%);
    width:2px;
    height:10px;
    background:#caa12c;
    opacity:0.6;
}
/* ACTIVITIES */
.about-activities{
    padding:80px 60px;
}

.about-activities h3{
    margin-bottom:20px;
}

.about-activities ul{
    max-width:900px;
    margin:auto;
    text-align:left;
    line-height:1.8;
}

.about-activities li{
    margin-bottom:15px;
    color:rgba(255,255,255,0.7);
}

.about-activities{
    padding:80px 60px;
    text-align:center; 
}

.about-activities ul{
    max-width:900px;
    margin:20px auto; 
    text-align:left;  
}
/* HERO SLIDER */
.hero-slider{
    position:relative;
    height:100vh;
    overflow:hidden;
}

/* SLIDE */
.slide{
    position:absolute;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:1s;
}

/* ACTIVE */
.slide.active{
    opacity:1;
}

/* OVERLAY */
.overlay{
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

/* TEXT */
.overlay h2{
    font-size:60px;
    letter-spacing:5px;
}

.overlay p{
    margin-top:10px;
    color:#caa12c;
}
/* SERVICES */
.services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
    padding-top:30px;
}

/* CARD */
.service-card{
    position:relative;
    overflow:hidden;
    border-radius:15px;
    cursor:pointer;
}

/* IMAGE */
.service-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:0.5s;
}

/* TEXT OVERLAY */
.service-text{
    position:absolute;
    bottom:0;
    width:100%;
    padding:20px;
    background:linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.service-text h4{
    color:white;
    font-size:18px;
}

/* HOVER EFFECT */
.service-card:hover img{
    transform:scale(1.1);
}

.service-card:hover .service-text{
    background:linear-gradient(to top, rgba(0,0,0,0.95), transparent);
}
/* FEATURED */
.client-featured{
    padding:80px 60px;
    text-align:center;
}

.client-featured h3{
    margin-bottom:30px;
}

/* GRID */
.client-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.client-card{
    position: relative;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.08);
}

/* GLOW EFFECT */
.client-card::before{
    content:"";
    position:absolute;
    width:200%;
    height:200%;
    background: radial-gradient(circle, rgba(14,165,164,0.3), transparent);
    top:-50%;
    left:-50%;
    opacity:0;
    transition:0.5s;
}

/* HOVER */
.client-card:hover::before{
    opacity:1;
}

.client-card:hover{
    transform:translateY(-12px) scale(1.03);
    border-color:#0ea5a4;
    box-shadow:0 25px 60px rgba(0,0,0,0.7);
}
.client-card img{
    width:100%;
    height:180px;
    object-fit:cover;
    transition:0.5s;
    filter:brightness(0.85);
}

/* OVERLAY */
.client-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    opacity:0.6;
}

/* HOVER IMAGE */
.client-card:hover img{
    transform:scale(1.1);
    filter:brightness(1);
}
.client-card p{
    padding:15px;
    font-weight:500;
    letter-spacing:1px;
    transform:translateY(10px);
    opacity:0.7;
    transition:0.4s;
}

.client-card:hover p{
    transform:translateY(0);
    opacity:1;
    color:#0ea5a4;
}

/* HOVER */
.client-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,0.6);
}

/* FULL LIST */
.client-list-section{
    padding:100px 60px;
    background:#02080d;
    text-align:center;
}

.client-list-section h3{
    margin-bottom:40px;
}

/* LIST GRID */
.client-list{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    max-width:1000px;
    margin:auto;
}

/* LIST */
.client-list ul{
    text-align:left;
    line-height:1.8;
}

.client-list li{
    color:rgba(255,255,255,0.7);
    margin-bottom:8px;
}
/* HERO */
.service-hero{
    height:50vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.9)),
    url('images/photo1.png') center/cover;
}

.service-hero h2{
    font-size:45px;
    letter-spacing:4px;
}

.service-hero p{
    margin-top:10px;
    color:#caa12c;
}

/* SECTION */
.equipment-section{
    padding:100px 60px;
    display:flex;
    flex-direction:column;
    gap:40px;
}

/* CARD */
.equipment-card{
    display:flex;
    gap:30px;
    align-items:center;
    background:rgba(255,255,255,0.03);
    border-radius:15px;
    overflow:hidden;
    transition:0.3s;
}

/* IMAGE */
.equipment-card img{
    width:300px;
    height:200px;
    object-fit:cover;
}

/* TEXT */
.equipment-text{
    padding:20px;
}

.equipment-text h3{
    margin-bottom:10px;
}

.equipment-text p{
    color:rgba(255,255,255,0.7);
}

/* HOVER */
.equipment-card:hover{
    transform:translateY(-5px);
    border:1px solid #caa12c;
}

/* RESPONSIVE */
@media(max-width:768px){
    .equipment-card{
        flex-direction:column;
    }

    .equipment-card img{
        width:100%;
    }
}
/* LOGO */
.logo img{
    height:40px;
    object-fit:contain;
}
/* HERO */
.contact-hero{
    height:50vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.8)),
    url('images/repair2.jpg') center/cover;
}

.contact-hero h2{
    font-size:45px;
}

.contact-hero p{
    margin-top:10px;
    color:#ccc;
}

/* CONTACT */
.contact-section{
    padding:100px 60px;
}

.contact-container{
    display:flex;
    gap:40px;
    align-items:center;
    flex-wrap:wrap;
}

/* INFO */
.contact-info{
    flex:1;
}

.contact-info h3{
    margin-bottom:10px;
}

.contact-info h4{
    margin-top:20px;
}

/* IMAGE */
.contact-image{
    flex:1;
}

.contact-image img{
    width:100%;
    border-radius:12px;
}

/* MAP */
.map-section iframe{
    width:100%;
    height:400px;
    border:0;
}

/* FORM */
.contact-form{
    padding:100px 60px;
    text-align:center;
}

.contact-form form{
    max-width:600px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-form input,
.contact-form textarea{
    padding:12px;
    border:none;
    border-radius:8px;
}

.contact-form button{
    padding:12px;
    background:#caa12c;
    color:white;
    border:none;
    border-radius:8px;
    cursor:pointer;
}
/* SECTION */
.docs{
    padding:140px 60px;
    text-align:center;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #0f172a;
    color: #fff;
}

/* SECTION */
.docs {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
}

.docs h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #facc15;
}

/* STACK LIST */
.docs .doc-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

/* CARD */
.docs .doc-item {
    background: #020617;
    border: 1px solid #1e293b;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
}

.docs .doc-item:hover {
    transform: translateY(-3px);
    border-color: #facc15;
}

/* TITLE */
.docs .doc-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* BUTTON GROUP */
.docs .btn-group {
    display: flex;
    gap: 10px;
}

/* BUTTON */
.docs .btn {
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

/* VIEW BUTTON */
.docs .view {
    background: #facc15;
    color: #000;
}

.docs .view:hover {
    background: #eab308;
}

/* DOWNLOAD BUTTON */
.docs .download {
    border: 1px solid #facc15;
    color: #facc15;
}

.docs .download:hover {
    background: #facc15;
    color: black;
}

/* PAGINATION */
.docs .pagination {
    margin-top: 30px;
    text-align: center;
}

.docs .pagination a {
    display: inline-block;
    margin: 5px;
    padding: 8px 12px;
    border: 1px solid #334155;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.2s;
}

.docs .pagination a:hover {
    background: #facc15;
    color: black;
}
.org-chart {
    text-align: center;
}

.level {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.person {
    margin: 10px;
}

.person img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.line {
    width: 2px;
    height: 30px;
    background: #ccc;
    margin: auto;
}
.services {
    display: flex;
    gap: 20px;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    flex: 1;
    cursor: pointer;
    transition: 0.4s ease;
}

/* IMAGE */
.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.5s ease;
}

/* HOVER EFFECT */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-card:hover img {
    transform: scale(1.1);
}

/* OVERLAY */
.service-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    color: white;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.3),
        transparent
    );
}

/* TITLE */
.service-card h4 {
    margin: 0;
    font-size: 18px;
}

/* DETAILS (hidden) */
.details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: 0.4s ease;
}

/* SHOW ON HOVER */
.service-card:hover .details {
    max-height: 200px;
    opacity: 1;
    margin-top: 10px;
}
.footer {
    background: linear-gradient(135deg, #071a2f, #0a1a2f);
    color: #ccc;
    padding: 60px 20px 20px;
    position: relative;
    overflow: hidden;
}

/* 🔥 animated glow line */
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 3px;
    background: linear-gradient(90deg, #0ea5a4, #22d3ee, #0ea5a4);
    animation: glowMove 4s linear infinite;
}

@keyframes glowMove {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0%); }
}

.footer-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* LEFT */
.footer-about {
    max-width: 500px;
}

.footer-about h2 {
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.footer-about p {
    line-height: 1.6;
    color: #bbb;
    font-size: 14px;
}

/* RIGHT */
.footer-social {
    text-align: right;
}

.footer-social h4 {
    margin-bottom: 15px;
    color: #fff;
}

/* ICON STYLE */
.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    width: 50px;
    height: 50px;
    margin-left: 12px;

    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: #aaa;
    font-size: 20px;

    transition: all 0.3s ease;
}

/* 😮‍🔥 HOVER EFFECT */
.social-icons a:hover {
    background: #0ea5a4;
    color: #fff;
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 15px 30px rgba(14,165,164,0.6);
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 15px;
    font-size: 14px;
    color: #888;
}

/* ================= MOBILE RESPONSIVE ================= */

/* GENERAL */
@media (max-width: 1024px) {
    .header-container {
        padding: 15px 40px;
    }

    .section,
    .about-content,
    .about-values,
    .contact-section,
    .equipment-section {
        padding: 80px 30px;
    }
}

/* TABLET */
@media (max-width: 768px) {

    /* HEADER */
    .header-container {
        flex-direction: column;
        gap: 10px;
        padding: 10px 20px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        margin: 10px;
        font-size: 13px;
    }

    /* HERO */
    .hero h2 {
        font-size: 40px;
        letter-spacing: 3px;
    }

    .overlay h2 {
        font-size: 35px;
    }

    /* ABOUT */
    .about-content {
        grid-template-columns: 1fr;
    }

    /* ORG CHART */
    .level {
        flex-direction: column;
        align-items: center;
    }

    /* SERVICE */
    .services {
        grid-template-columns: 1fr;
    }

    /* EQUIPMENT */
    .equipment-card {
        flex-direction: column;
    }

    .equipment-card img {
        width: 100%;
        height: auto;
    }

    /* CLIENT GRID */
    .client-grid {
        grid-template-columns: 1fr;
    }

    /* CONTACT */
    .contact-container {
        flex-direction: column;
    }
}

/* PHONE */
@media (max-width: 480px) {

    /* HERO TEXT */
    .hero h2 {
        font-size: 28px;
    }

    .overlay h2 {
        font-size: 26px;
    }

    /* LOGO */
    .logo img {
        height: 35px;
    }

    /* BUTTON */
    .btn {
        font-size: 12px;
        padding: 6px 10px;
    }

    /* DOC CARD */
    .doc-item {
        padding: 15px;
    }

    .doc-item h4 {
        font-size: 14px;
    }

    /* PAGINATION */
    .pagination a {
        padding: 6px 8px;
        font-size: 12px;
    }
}
/* ===== BOARD OF DIRECTORS ===== */
.board-section {
    padding: 140px 60px; /* bagi turun sikit sebab header fixed */
    background: #071a2f;
}

.board-section .title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.board-section .underline {
    width: 80px;
    height: 4px;
    background: #caa12c;
    margin: 10px auto 50px;
}

.board-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
}

/* divider tengah */
.board-container::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,0.1);
}

/* item */
.board-item h3 {
    color: #caa12c;
    font-size: 20px;
    margin-bottom: 5px;
}

.board-item h4 {
    font-size: 15px;
    margin-bottom: 10px;
}

.board-item p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    font-size: 14px;
}

/* mobile */
@media (max-width:768px){
    .board-container {
        grid-template-columns: 1fr;
    }

    .board-container::before {
        display: none;
    }
}
/* ===== SEARCH BAR ===== */
.doc-search {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
}

.doc-search input,
.doc-search select {
    padding: 12px;
    border-radius: 6px;
    border: none;
    width: 250px;
}

.doc-search button {
    padding: 12px 20px;
    background: #caa12c;
    border: none;
    color: black;
    cursor: pointer;
    border-radius: 6px;
}

/* ===== LIST STYLE (WHITE LOOK BUT BLUE THEME) ===== */
.doc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: #0b1e34; /* biru gelap */
    border: 1px solid rgba(255,255,255,0.1);

    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;

    transition: 0.3s;
}

.doc-item:hover {
    border-color: #caa12c;
    transform: translateY(-3px);
}

/* LEFT SIDE */
.doc-left {
    display: flex;
    gap: 20px;
    align-items: center;
}

.doc-date {
    color: #caa12c;
    font-weight: bold;
    min-width: 120px;
}

/* TITLE */
.doc-item h4 {
    margin: 0;
    font-size: 15px;
}

/* BUTTON */
.btn {
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

.view {
    background: #caa12c;
    color: black;
}

.download {
    border: 1px solid #caa12c;
    color: #caa12c;
}

.download:hover {
    background: #caa12c;
    color: black;
}
/* ===== ABOUT SECTION MODERN ===== */

.about-section {
    display: flex;
    min-height: 100vh;
    background: #071a2f;
}

/* LEFT IMAGE */
.about-image {
    flex: 1;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 🔥 cover separuh page */
    transition: 0.6s;
}

/* HOVER ZOOM */
.about-image:hover img {
    transform: scale(1.05);
}

/* RIGHT TEXT */
.about-text {
    flex: 1;
    padding: 100px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* TITLE */
.about-text h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

/* TAGLINE */
.tagline {
    color: #0ea5a4;
    margin-bottom: 20px;
    font-weight: 500;
}

/* MAIN TEXT */
.about-text p {
    color: #cbd5e1;
    line-height: 1.9;
    margin-bottom: 30px;
}

/* GRID BOX */
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* BOX */
.about-box {
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}

/* BOX TITLE */
.about-box h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

/* BOX TEXT */
.about-box p {
    font-size: 14px;
    margin: 0;
}

/* HOVER EFFECT 🔥 */
.about-box:hover {
    transform: translateY(-5px);
    border-color: #0ea5a4;
}

/* MOBILE */
@media(max-width: 768px){
    .about-section {
        flex-direction: column;
    }

    .about-image {
        height: 300px;
    }

    .about-text {
        padding: 60px 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== BOAT PREMIUM SECTION ===== */

.boat-premium {
    position: relative;
    padding: 120px 60px;
    background: radial-gradient(circle at center, #0a1f33, #02080d);
    overflow: hidden;
}

/* GLOW */
.boat-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(14,165,164,0.25);
    filter: blur(120px);
    top: 50%;
    left: 65%;
    transform: translate(-50%, -50%);
}

/* LAYOUT */
.boat-wrap {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* TEXT */
.boat-content {
    flex: 1;
}

.boat-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.boat-content .desc {
    color: #cbd5e1;
    line-height: 1.9;
    margin-bottom: 25px;
}

/* FEATURES */
.boat-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.boat-features li {
    margin-bottom: 10px;
    color: #0ea5a4;
}

/* BUTTON */
.btn-glow {
    display: inline-block;
    padding: 14px 30px;
    background: #0ea5a4;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(14,165,164,0.5);
    transition: 0.3s;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(14,165,164,0.8);
}

.boat-visual {
    flex: 1;
    position: relative;
}

.boat-visual img {
    width: 120%;
    max-width: 900px;
    transform: translateX(40px);
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.6));
}

/* FLOAT ANIMATION */
.animate-boat img {
    animation: floatBoat 4s ease-in-out infinite;
}

/* KEYFRAME */
@keyframes floatBoat {
    0% {
        transform: translateY(0px) rotate(-1deg);
    }
    50% {
        transform: translateY(-18px) rotate(1deg);
    }
    100% {
        transform: translateY(0px) rotate(-1deg);
    }
}

/* WATER GLOW EFFECT */
.boat-visual::after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 50px;
    background: radial-gradient(circle, rgba(14,165,164,0.35), transparent);
    filter: blur(25px);
}

/* HOVER */
.boat-visual img:hover {
    transform: scale(1.05);
}

/* MOBILE */
@media(max-width:768px){
    .boat-wrap {
        flex-direction: column;
        text-align: center;
    }

    .boat-content h2 {
        font-size: 28px;
    }
}
/* ===== BRANCH SECTION PREMIUM ===== */
.branch-section {
    padding: 80px 20px;
    background: radial-gradient(circle at top, #071a2f, #02080d);
}

/* GRID */
.branch-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

/* CARD GLASS EFFECT 🔥 */
.branch-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);

    padding: 25px;
    border-radius: 18px;

    border: 1px solid rgba(255,255,255,0.1);

    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

/* GLOW EFFECT */
.branch-card::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(14,165,164,0.2), transparent);
    top: -50%;
    left: -50%;
    opacity: 0;
    transition: 0.5s;
}

.branch-card:hover::before {
    opacity: 1;
}

/* HOVER */
.branch-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #0ea5a4;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* TITLE */
.branch-card h3 {
    margin-bottom: 15px;
    color: #0ea5a4;
}

/* TEXT */
.branch-card p {
    margin-top: 10px;
    color: #cbd5e1;
    line-height: 1.6;
}

/* MAP STYLE 🔥 */
.branch-card iframe {
    border-radius: 12px;
    margin-bottom: 15px;
    filter: grayscale(20%) contrast(1.1);
}
.trusted-section {
    padding: 80px 20px;
    text-align: center;
    background: #0b0f1a;
    color: #fff;
}

.trusted-section h2 {
    font-size: 32px;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

/* AUTO GRID */
.logo-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

.logo-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 15px;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

/* LOGO STYLE */
.logo-card img {
    width: 90px;
    height: auto;
    margin-bottom: 10px;
    filter: grayscale(100%);
    transition: 0.3s;
}

.logo-card p {
    font-size: 13px;
    opacity: 0.7;
}

/* HOVER EFFECT */
.logo-card:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.logo-card:hover img {
    filter: grayscale(0%);
}