/* ============ LANDING PAGE CUSTOM STYLES ============ */
:root {
    --orange: #0891df;
    --dark:   #111111;
    --gray:   #666666;
    --light:  #f8f8f8;
}

/* ---- HERO ---- */
.lp-hero {
    position: relative;
    min-height: 100vh;
    background-color: #0a0a0a;
    background-image: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920&auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(5,5,5,0.92) 0%,
        rgba(10,10,10,0.82) 50%,
        rgba(5,5,5,0.90) 100%);
}
.lp-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(8,145,223,0.20) 0%, transparent 60%);
}
.lp-hero-content { position: relative; z-index: 2; }
.lp-hero .badge-pill {
    display: inline-block;
    background: rgba(8,145,223,0.15);
    border: 1px solid rgba(8,145,223,0.5);
    color: var(--orange);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 8px 22px;
    border-radius: 50px;
    margin-bottom: 25px;
}
.lp-hero h1 {
    font-size: clamp(38px, 6vw, 76px);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 25px;
    text-transform: uppercase;
}
.lp-hero h1 span { color: var(--orange); }
.lp-hero p {
    font-size: 18px;
    color: #bbb;
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 40px;
}
.lp-hero-info { display: flex; gap: 35px; flex-wrap: wrap; margin-top: 45px; }
.lp-hero-info-item { display: flex; align-items: center; gap: 10px; color: #ccc; font-size: 14px; }
.lp-hero-info-item i { color: var(--orange); font-size: 18px; }
.lp-hero-right {
    position: relative;
    text-align: center;
}
.lp-hero-badge {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    line-height: 1.2;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(8,145,223,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 auto 30px;
    animation: pulse 2s infinite;
}
.lp-hero-badge strong { font-size: 28px; display: block; line-height: 1; }
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 40px rgba(8,145,223,0.5); }
    50%       { box-shadow: 0 0 80px rgba(8,145,223,0.8); }
}
.lp-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.lp-stat-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 22px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: border-color .3s;
}
.lp-stat-card:hover { border-color: var(--orange); }
.lp-stat-card .num {
    font-size: 34px;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 6px;
}
.lp-stat-card .lbl { font-size: 12px; color: #aaa; text-transform: uppercase; letter-spacing: 1px; }
.hero-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 22px;
    animation: bounce 1.5s infinite;
    z-index: 2;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ---- SHARED SECTION STYLES ---- */
.lp-section { padding: 90px 0; }
.lp-section-dark { background: #111; }
.lp-section-light { background: #fff; }
.lp-section-gray  { background: #f5f5f5; }

.lp-section-head { text-align: center; margin-bottom: 65px; }
.lp-section-head .tag {
    display: inline-block;
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.lp-section-head h2 {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 900;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 15px;
}
.lp-section-dark .lp-section-head h2 { color: #fff; }
.lp-section-head p { font-size: 16px; color: var(--gray); max-width: 640px; margin: 0 auto; line-height: 1.7; }
.lp-section-dark .lp-section-head p { color: #aaa; }
.lp-divider {
    width: 55px; height: 4px;
    background: var(--orange);
    border-radius: 2px;
    margin: 0 auto 20px;
}

/* ---- ABOUT SECTION ---- */
.lp-about-text h2 {
    font-size: clamp(26px,4vw,40px);
    font-weight: 900;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 20px;
}
.lp-about-text h2 span { color: var(--orange); }
.lp-about-text p { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 15px; }
.lp-about-highlight {
    background: var(--orange);
    color: #fff;
    border-radius: 12px;
    padding: 28px 30px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 18px;
}
.lp-about-highlight i { font-size: 32px; opacity: .85; }
.lp-about-highlight strong { font-size: 18px; display: block; margin-bottom: 4px; }
.lp-about-highlight span { font-size: 14px; opacity: .85; }
.lp-about-img-wrap {
    position: relative;
    text-align: center;
}
.lp-about-img-bg {
    background: linear-gradient(135deg, rgba(8,145,223,0.12), rgba(8,145,223,0.04));
    border: 2px solid rgba(8,145,223,0.2);
    border-radius: 20px;
    padding: 50px 40px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.lp-about-img-bg .fa {
    font-size: 90px;
    color: var(--orange);
    opacity: .3;
    margin-bottom: 20px;
}
.lp-about-logo-text {
    font-size: 32px;
    font-weight: 900;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
}
.lp-about-logo-text span { color: var(--orange); display: block; }
.lp-about-sq { font-size: 15px; color: var(--gray); margin-top: 10px; }

/* ---- WHY CHOOSE US ---- */
.lp-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 18px;
}
.lp-feature-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 22px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all .3s;
}
.lp-feature-item:hover {
    border-color: var(--orange);
    background: rgba(8,145,223,0.08);
    transform: translateY(-3px);
}
.lp-feature-item i {
    color: var(--orange);
    font-size: 20px;
    width: 24px;
    flex-shrink: 0;
}
.lp-feature-item span {
    font-size: 14px;
    color: #ddd;
    font-weight: 500;
    line-height: 1.3;
}

/* ---- SERVICES ---- */
.lp-service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    margin-bottom: 30px;
    transition: all .35s;
    height: 100%;
}
.lp-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(8,145,223,0.15);
}
.lp-service-icon {
    height: 210px;
    overflow: hidden;
    position: relative;
}
.lp-service-icon img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}
.lp-service-card:hover .lp-service-icon img {
    transform: scale(1.07);
}
.lp-service-body { padding: 28px; }
.lp-service-body h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    text-transform: uppercase;
}
.lp-service-body p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 18px; }
.lp-service-body ul { list-style: none; padding: 0; margin: 0; }
.lp-service-body ul li {
    font-size: 13px;
    color: #555;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.lp-service-body ul li:last-child { border-bottom: none; }
.lp-service-body ul li::before {
    content: '\f00c';
    font-family: FontAwesome;
    color: var(--orange);
    font-size: 11px;
    flex-shrink: 0;
}

/* ---- CTA BAND ---- */
.lp-cta {
    background: linear-gradient(135deg, var(--orange) 0%, #0672b0 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.lp-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.lp-cta > .container { position: relative; }
.lp-cta h2 { font-size: clamp(28px,4vw,48px); font-weight: 900; color: #fff; text-transform: uppercase; margin-bottom: 15px; }
.lp-cta p  { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 35px; max-width: 600px; margin-left: auto; margin-right: auto; }
.btn-white {
    display: inline-block;
    background: #fff;
    color: var(--orange);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 45px;
    border-radius: 6px;
    transition: all .3s;
    margin: 6px;
}
.btn-white:hover { background: var(--dark); color: #fff; }
.btn-outline-white {
    display: inline-block;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.6);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 45px;
    border-radius: 6px;
    transition: all .3s;
    margin: 6px;
}
.btn-outline-white:hover { background: #fff; color: var(--orange); border-color: #fff; }

/* ---- CONTACT STRIP ---- */
.lp-contact {
    background: var(--dark);
    padding: 60px 0;
}
.lp-contact-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.07);
}
.lp-contact-item:last-child { border-right: none; }
.lp-contact-item i { font-size: 30px; color: var(--orange); margin-bottom: 12px; display: block; }
.lp-contact-item h5 { font-size: 13px; color: #999; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.lp-contact-item p, .lp-contact-item a {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: color .3s;
}
.lp-contact-item a:hover { color: var(--orange); }

/* ---- RESPONSIVE ---- */
@media(max-width:991px) {
    .lp-hero { min-height: auto; padding: 120px 0 70px; }
    .lp-hero-right { margin-top: 50px; }
    .lp-feature-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
    .lp-contact-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .lp-contact-item:last-child { border-bottom: none; }
}
@media(max-width:576px) {
    .lp-stat-grid { grid-template-columns: 1fr 1fr; }
    .lp-feature-grid { grid-template-columns: 1fr 1fr; }
    .lp-hero h1 { font-size: 34px; }
}
@media(min-width: 1200px) {
    .container { max-width: 1380px; }
}

/* ---- HERO CALL / WA BUTTONS ---- */
.btn-hero-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.35);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 13px 24px;
    border-radius: 6px;
    transition: all .3s;
}
.btn-hero-call:hover { border-color: var(--orange); color: var(--orange); }
.btn-hero-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 13px 24px;
    border-radius: 6px;
    border: 2px solid #25d366;
    transition: all .3s;
}
.btn-hero-wa:hover { background: #1ebe5d; border-color: #1ebe5d; color: #fff; }

/* ---- INQUIRY SECTION ---- */
.lp-inquiry {
    background: var(--dark);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.lp-inquiry::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(8,145,223,0.12) 0%, transparent 70%);
}
.inq-left-tag {
    display: inline-block;
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.inq-left-divider {
    width: 48px; height: 4px;
    background: var(--orange);
    border-radius: 2px;
    margin-bottom: 22px;
}
.inq-left h2 {
    font-family: var(--font-c);
    font-size: clamp(28px,3.5vw,44px);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 16px;
}
.inq-left h2 span { color: var(--orange); }
.inq-left p { font-size: 15px; color: #888; line-height: 1.8; margin-bottom: 28px; }
.btn-inq-call {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(8,145,223,0.1);
    border: 1px solid rgba(8,145,223,0.3);
    border-radius: 12px;
    padding: 16px 22px;
    color: #fff;
    margin-bottom: 14px;
    transition: all .3s;
    width: 100%;
}
.btn-inq-call:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.btn-inq-call .ic {
    width: 44px; height: 44px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
    transition: all .3s;
}
.btn-inq-call:hover .ic { background: rgba(255,255,255,0.25); }
.btn-inq-call .txt small { display: block; font-size: 11px; color: #888; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 3px; }
.btn-inq-call:hover .txt small { color: rgba(255,255,255,0.7); }
.btn-inq-call .txt strong { font-size: 17px; font-weight: 700; }
.btn-inq-wa {
    background: rgba(37,211,102,0.1);
    border-color: rgba(37,211,102,0.3);
}
.btn-inq-wa .ic { background: #25d366; }
.btn-inq-wa:hover { background: #25d366; border-color: #25d366; }
.inq-meta {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.inq-meta i { color: var(--orange); font-size: 15px; margin-top: 3px; flex-shrink: 0; }
.inq-meta span { font-size: 14px; color: #777; line-height: 1.6; }
/* Form card */
.inq-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    position: relative;
}
.inq-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), #06a0f5);
    border-radius: 20px 20px 0 0;
}
.inq-card h3 {
    font-family: var(--font-c);
    font-size: 24px;
    font-weight: 900;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.inq-card .inq-subtitle { font-size: 14px; color: #888; margin-bottom: 26px; }
.inq-group { margin-bottom: 18px; }
.inq-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 7px;
}
.inq-group input,
.inq-group select,
.inq-group textarea {
    width: 100%;
    background: #f8f8f8;
    border: 1.5px solid #ebebeb;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border-color .25s, box-shadow .25s;
    font-family: var(--font);
    -webkit-appearance: none;
}
.inq-group input:focus,
.inq-group select:focus,
.inq-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(8,145,223,0.1);
    background: #fff;
}
.inq-group textarea { resize: none; height: 100px; }
.btn-inq-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--orange) 0%, #0075c2 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all .3s;
    box-shadow: 0 6px 24px rgba(8,145,223,0.35);
    margin-top: 6px;
}
.btn-inq-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(8,145,223,0.45); }
.btn-inq-submit .wa-icon { font-size: 18px; }
@media(max-width:991px) {
    .inq-left { margin-bottom: 40px; }
    .inq-card { padding: 30px 22px; }
}

/* ---- ABOUT GALLERY ---- */
.lp-about-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.lp-about-gal-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 360px;
}
.lp-about-gal-main img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .45s ease;
}
.lp-about-gal-main:hover img { transform: scale(1.04); }
.lp-about-gal-badge {
    position: absolute;
    bottom: 16px; left: 16px;
    background: var(--orange);
    color: #fff;
    font-size: 13px; font-weight: 800;
    padding: 8px 16px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.lp-about-gal-sub {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.lp-about-gal-sub-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 166px;
}
.lp-about-gal-sub-img img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .45s ease;
}
.lp-about-gal-sub-img:hover img { transform: scale(1.04); }
.lp-about-gal-stats {
    background: var(--orange);
    border-radius: 16px;
    padding: 20px 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    flex: 1;
}
.lp-about-gal-stats .stat-item { text-align: center; }
.lp-about-gal-stats .stat-item strong {
    display: block;
    font-size: 20px; font-weight: 900;
    color: #fff; line-height: 1;
    margin-bottom: 4px;
}
.lp-about-gal-stats .stat-item span {
    font-size: 11px;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
@media(max-width:768px) {
    .lp-about-gallery { grid-template-columns: 1fr; }
    .lp-about-gal-main { height: 260px; }
    .lp-about-gal-sub { flex-direction: row; }
    .lp-about-gal-sub-img { height: 160px; }
}

/* ---- GALLERY SECTION ---- */
.lp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 12px;
}
.lp-gal-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
}
.lp-gal-item:nth-child(1) { grid-column: span 2; }
.lp-gal-item:nth-child(5) { grid-column: span 2; }
.lp-gal-item:nth-child(7) { grid-column: span 2; }
.lp-gal-item:nth-child(8) { grid-column: span 2; }
.lp-gal-item img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .45s ease;
}
.lp-gal-item:hover img { transform: scale(1.07); }
.lp-gal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity .35s;
}
.lp-gal-item:hover .lp-gal-overlay { opacity: 1; }
.lp-gal-overlay span {
    color: #fff;
    font-size: 13px; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}
@media(max-width:991px) {
    .lp-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .lp-gal-item:nth-child(1),
    .lp-gal-item:nth-child(5),
    .lp-gal-item:nth-child(7),
    .lp-gal-item:nth-child(8) { grid-column: span 1; }
}
@media(max-width:576px) {
    .lp-gallery-grid { grid-auto-rows: 150px; }
}