:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --secondary: #f0f9ff;
    --accent: #020617;
    --white: #ffffff;
    --ice-bg: linear-gradient(135deg, #e0f2fe 0%, #ffffff 100%);
    --cold-gradient: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
    --dark-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --text-main: #1e293b;
    --text-muted: #64748b;
    --wa-green: #22c55e;
    --container: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background: #fff;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.center {
    text-align: center;
}

/* Sections */
section {
    padding: 50px 0;
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.section-title.white h2,
.section-title.white p {
    color: #fff;
}

.subtitle {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999 !important;
    padding: 1.5rem 0;
    transition: 0.4s;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px);
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.container-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--accent);
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-social {
    display: flex;
    gap: 1rem;
    margin-left: 1rem;
}

.nav-social a {
    font-size: 1.1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: var(--accent);
    transition: 0.3s;
}

/* Global Premium Dark Backgrounds */
.final-cta,
.stats-section,
.bg-dark-premium {
    background: var(--dark-gradient) !important;
    color: #ffffff !important;
}

.final-cta h2,
.final-cta p,
.stats-section h3,
.stats-section p,
.stats-section span,
.bg-dark-premium h1,
.bg-dark-premium h2,
.bg-dark-premium h3,
.bg-dark-premium p {
    color: #ffffff !important;
}



/* Hero Section */
.hero {
    height: 85vh;
    position: relative;
    overflow: hidden;
    background: var(--ice-bg);
}

.hero-slider {
    height: 100%;
}

.hero-slide {
    height: 100%;
    display: none;
    align-items: center;
}

.hero-slide.active {
    display: flex;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

/* Hero Booking Bar (Horizontal) */
.booking-engine-wrapper {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    z-index: 100;
}

.booking-bar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.booking-bar-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 180px;
    gap: 20px;
    align-items: flex-end;
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-field label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.booking-field label i {
    color: var(--primary);
}

.booking-field select,
.booking-field input {
    padding: 14px 18px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    background: #f8fafc;
    font-family: inherit;
    font-weight: 600;
    color: var(--text-main);
    transition: 0.3s;
}

.booking-field select:focus,
.booking-field input:focus {
    outline: none;
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.booking-action .btn-wa-block {
    height: 52px;
    margin-top: 0;
    border-radius: 12px;
    font-size: 0.9rem;
}

.hero-content h1 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.badge {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.hero-img img {
    border-radius: 30px;
}

/* Buttons */
.btn {
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-wa-large {
    background: var(--wa-green);
    color: #fff;
    padding: 18px 40px;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

.btn-wa-large:hover {
    background: #16a34a;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.4);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 1rem;
}

.slider-controls button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.slider-controls button:hover {
    background: var(--primary);
    color: #fff;
}

/* Clients Carousel */
.clients-section {
    background: var(--dark-gradient);
    padding: 60px 0;
}

.client-carousel-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
}

.client-carousel {
    display: inline-block;
    animation: scroll 30s linear infinite;
}

.client-carousel:hover {
    animation-play-state: paused;
}

.client-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 40px;
}

.client-item img {
    height: 50px;
    filter: brightness(100%);
    /* Visible by default */
    opacity: 0.9;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
}

.client-item img:hover {
    transform: scale(1.25);
    /* Enlarge on hover */
    opacity: 1;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* About Us */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-img {
    position: relative;
}

.about-img img {
    border-radius: 30px;
}

.experience-tag {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
    text-align: center;
    min-width: 150px;
}

.experience-tag strong {
    display: block;
    font-size: 2.5rem;
    line-height: 1;
}

.experience-tag span {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.check-list li {
    margin-bottom: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list i {
    color: var(--wa-green);
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .experience-tag {
        right: 0;
        bottom: 10px;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-item h3 {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.stat-item span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-item p {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* Product Tabs */
.tabs-header {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 10px 20px;
    border: none;
    background: transparent;
    font-weight: 700;
    color: var(--text-muted);
    border-bottom: 3px solid transparent;
    cursor: pointer;
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-item-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-img img {
    border-radius: 20px;
}

/* Profit Table */
.table-responsive {
    overflow-x: auto;
}

.profit-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.profit-table th,
.profit-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.profit-table th {
    background: var(--secondary);
    color: var(--accent);
    font-weight: 700;
}

.highlight-row {
    background: var(--ice-bg);
}

/* Choice Section (Kenapa Pilih Kami) */
.choice-section {
    padding: 100px 0;
    background: var(--dark-gradient);
    color: #fff;
}

.choice-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    gap: 4rem;
}

.choice-header h2 {
    font-size: 2.5rem;
    max-width: 400px;
    margin-bottom: 0;
}

.choice-header p {
    font-size: 1.1rem;
    max-width: 500px;
    opacity: 0.8;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.choice-card {
    position: relative;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.5s;
}

.choice-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.choice-card:hover .choice-card-img {
    transform: scale(1.1);
}

.choice-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.choice-badge {
    align-self: flex-end;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.choice-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.choice-card-content p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.choice-card-stats {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 700;
}

.choice-card-stats i {
    color: #fbbf24;
}

.choice-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-view-more {
    background: #1e293b;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    transition: 0.3s;
}

.btn-view-more:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.choice-nav {
    display: flex;
    gap: 1rem;
}

.choice-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.choice-nav-btn:hover {
    background: #fff;
    color: var(--accent);
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
}

.faq-question {
    padding: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    padding: 0 20px;
    height: 0;
    overflow: hidden;
    transition: 0.3s;
}

.faq-item.active .faq-answer {
    height: auto;
    padding-bottom: 20px;
}

.wa-box {
    background: var(--secondary);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

/* Testimonials */
.testi-container {
    position: relative;
    padding: 20px 0;
}

.testi-slider-wrapper {
    overflow: hidden;
    margin-bottom: 40px;
}

.testi-slider {
    display: flex;
    gap: 2rem;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-card {
    min-width: calc(33.333% - 1.35rem);
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    position: relative;
}

.testi-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

.testi-controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.testi-controls button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--accent);
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    font-size: 1.2rem;
}

.testi-controls button:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(14, 165, 233, 0.3);
}

/* Articles Section */
.article-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.article-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    transition: 0.4s;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.article-img {
    height: 200px;
    overflow: hidden;
}

.article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.article-card:hover .article-img img {
    transform: scale(1.1);
}

.article-body {
    padding: 25px;
}

.article-body h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: var(--accent);
}

.article-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.btn-read-more {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-read-more i {
    transition: 0.3s;
}

.btn-read-more:hover i {
    transform: translateX(5px);
}

/* Footer */
.footer {
    padding: 100px 0 50px;
    background: var(--accent);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.container-footer {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand .logo img {
    filter: brightness(0) invert(1);
    height: 50px;
}

.footer-brand .logo span {
    color: #fff;
    font-size: 1.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
}

.footer-col h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.footer-contact-item i {
    width: 35px;
    height: 35px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.footer-contact-item div p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item div strong {
    display: block;
    font-size: 0.8rem;
    color: #fff;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: 0.3s;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    transition: 0.4s;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Maps */
.maps-section {
    padding: 60px 0 0 0;
}

.maps-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
    box-shadow: none;
}

.maps-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 991px) {

    .container-footer,
    .faq-grid,
    .cta-card,
    .product-item-grid,
    .stats-grid,
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        transition: 0.5s;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    /* Dark Background & Stats Utility */
    .dark-bg {
        background: #020617 !important;
        color: #ffffff !important;
    }

    .dark-bg h1,
    .dark-bg h2,
    .dark-bg h3,
    .dark-bg p {
        color: #ffffff !important;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        padding: 40px 0;
    }

    .stat-item {
        text-align: center;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
    }

    .stat-icon {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 1rem;
    }

}

/* Global Premium Utilities (Global Fix) */
.bg-dark-premium,
.final-cta,
.stats-section {
    background: var(--dark-gradient) !important;
    color: #ffffff !important;
}

.bg-dark-premium h1,
.bg-dark-premium h2,
.bg-dark-premium h3,
.bg-dark-premium p,
.final-cta h2,
.final-cta p,
.stats-section h3,
.stats-section p,
.stats-section span {
    color: #ffffff !important;
}

.stats-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem;
    padding: 20px 0;
}

.stat-item {
    text-align: center;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Clients Section Refinement (2 Column Grid) */
.clients-section {
    padding: 80px 0;
    overflow: hidden;
}

.clients-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    height: 200px;
}

.client-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.client-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: 0.3s;
}

.client-box img {
    max-width: 100%;
    max-height: 50px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: 0.3s;
}

.client-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.client-box:hover img {
    opacity: 1;
}

/* Featured Products Section */
.featured-products-section {
    padding: 100px 0;
    background: #f8fafc;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    align-items: stretch;
}

.featured-card {
    position: relative;
    background: #fff;
    border-radius: 32px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.featured-card.highlighted {
    background: var(--cold-gradient);
    color: #fff;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.3);
}

.f-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--primary);
    font-size: 1.5rem;
    transition: 0.3s;
}

.featured-card.highlighted .f-card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Profit Potential Section */
.profit-section {
    padding: 100px 0;
    background: #f8fafc;
}

.profit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.profit-card {
    background: #fff;
    border-radius: 32px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: 0.4s;
}

.profit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(14, 165, 233, 0.1);
}

.profit-card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed #e2e8f0;
}

.profit-card-header h3 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.profit-card-header .capacity-tag {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.profit-data-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.profit-data-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.profit-data-item .label {
    color: var(--text-muted);
}

.profit-data-item .value {
    font-weight: 700;
    color: var(--accent);
}

.profit-total {
    background: var(--primary);
    padding: 1.5rem;
    border-radius: 20px;
    color: #fff;
    text-align: center;
}

.profit-total .label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.profit-total .amount {
    font-size: 1.5rem;
    font-weight: 800;
}

/* Production Roadmap Section */
.roadmap-section {
    padding: 100px 0;
    background: var(--dark-gradient);
    color: #fff;
}

.roadmap-container {
    margin-top: 4rem;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.roadmap-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.roadmap-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 18%;
}

.roadmap-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0 auto 1.5rem;
    transition: 0.4s;
}

.roadmap-step:hover .roadmap-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
}

.roadmap-step h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.roadmap-step p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.featured-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.featured-card.highlighted h3 {
    color: #fff;
}

@media (max-width: 1024px) {
    .profit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .roadmap-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .roadmap-container::before {
        display: none;
    }

    .roadmap-step {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .profit-grid {
        grid-template-columns: 1fr;
    }
}

.f-card-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.f-card-price span {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.7;
}

.featured-card p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.featured-card.highlighted p {
    color: rgba(255, 255, 255, 0.8);
}

.f-card-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.featured-card.highlighted .f-card-divider {
    background: rgba(255, 255, 255, 0.1);
}

.f-features {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    flex-grow: 1;
}

.f-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.f-features li i {
    width: 24px;
    height: 24px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.featured-card.highlighted .f-features li i {
    background: #fff;
    color: var(--primary);
}

.btn-pricing {
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    font-weight: 700;
    text-align: center;
    transition: 0.3s;
    background: var(--primary);
    color: #fff;
    font-size: 1rem;
}

.featured-card.highlighted .btn-pricing {
    background: #fff;
    color: var(--primary);
}

.btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pricing-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.featured-card.highlighted .pricing-note {
    color: rgba(255, 255, 255, 0.7);
}

/* Hover Effects */
.featured-card:not(.highlighted):hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

@media (max-width: 1199px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-card.highlighted {
        transform: scale(1);
    }
}

@media (max-width: 991px) {
    .clients-grid-layout {
        grid-template-columns: 1fr;
        height: auto;
        gap: 2rem;
    }

    .clients-left {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .client-grid-3col {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .client-box {
        height: 70px;
    }

    .client-box img {
        max-height: 35px;
    }
}

/* Specific Mobile Optimizations (768px) */
@media (max-width: 768px) {

    .hero,
    .hero-slide {
        min-height: 100vh;
        height: auto;
    }

    .hero-grid {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .nav-links,
    .nav-toggle,
    .nav-divider {
        display: none !important;
    }

    .navbar {
        padding: 1rem 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    }

    .booking-engine-wrapper {
        display: none !important;
    }

    h1 {
        font-size: 1.75rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    h3 {
        font-size: 1.25rem !important;
    }

    .hero-content h1 {
        font-size: 1.75rem !important;
        line-height: 1.2;
    }

    /* About Us Slimmer */
    .about-content p {
        font-size: 0.85rem !important;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .check-list li {
        background: #f8fafc;
        padding: 6px 12px !important;
        border-radius: 8px !important;
        font-size: 10px !important;
        border: 1px solid #e2e8f0;
        margin-bottom: 0.5rem !important;
        font-weight: 700 !important;
        color: var(--accent);
    }

    .check-list i {
        font-size: 10px;
    }

    /* Product Section Tabs 100% Width */
    .products-section .container {
        padding: 0 !important;
        max-width: 100% !important;
    }

    .products-section .section-title {
        padding: 0 1.5rem;
    }

    .tabs-header {
        width: 100%;
        padding: 5px 1rem;
        justify-content: flex-start;
        overflow-x: auto;
        gap: 0.75rem;
        margin-bottom: 2rem;
        scrollbar-width: none;
        /* Hide scrollbar Firefox */
        -ms-overflow-style: none;
        /* Hide scrollbar IE/Edge */
    }

    .tabs-header::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar Chrome/Safari */
    }

    .tab-btn {
        padding: 10px 18px !important;
        font-size: 0.85rem !important;
        white-space: nowrap;
        border-radius: 12px !important;
        border: 1px solid #e2e8f0 !important;
        background: #fff !important;
        color: var(--text-muted) !important;
        transition: 0.3s;
    }

    .tab-btn.active {
        background: var(--primary) !important;
        color: #fff !important;
        border-color: var(--primary) !important;
        box-shadow: 0 8px 20px rgba(14, 165, 233, 0.2);
    }

    .product-item-grid {
        padding: 0 1.5rem;
        gap: 2rem !important;
    }

    .btn i {
        margin-right: 8px;
    }

    .btn-pricing i {
        margin-right: 8px;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .section-title h2 {
        font-size: 1.5rem !important;
    }

    /* Why Choose Us 2x2 */
    .choice-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    /* Testimonials 1 Card */
    .testi-card {
        min-width: 100% !important;
        margin-right: 0 !important;
    }

    /* Articles 2 Columns Tighter Gap */
    .article-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }

    /* Gallery 2 Columns */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }

    /* Final CTA Refinement */
    .final-cta-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center;
    }

    .cta-left h2 {
        font-size: 1.5rem !important;
    }

    .cta-left p {
        font-size: 0.9rem !important;
    }

    .cta-right {
        text-align: center !important;
    }

    .btn-wa-large {
        padding: 14px !important;
        font-size: 0.9rem !important;
    }

    /* Footer Refinement */
    .footer-bottom {
        display: none !important;
    }

    .container-footer {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2.5rem 1rem !important;
    }

    .footer-brand,
    .container-footer>.footer-col:last-child {
        grid-column: span 2;
    }

    .footer-col h4 {
        font-size: 0.95rem !important;
        margin-bottom: 1.25rem !important;
    }

    .footer-links a {
        font-size: 0.8rem !important;
    }

    /* Fix Horizontal Overflow */
    .choice-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1.5rem !important;
        margin-bottom: 2.5rem !important;
    }

    .choice-header h2,
    .choice-header p {
        max-width: 100% !important;
    }
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Contact Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.contact-modal {
    background: #fff;
    width: 100%;
    max-width: 450px;
    border-radius: 32px;
    padding: 3rem;
    position: relative;
    transform: translateY(30px);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .contact-modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: 0.3s;
}

.modal-close:hover {
    background: var(--primary);
    color: #fff;
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    font-size: 1.75rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-form input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    font-family: inherit;
    transition: 0.3s;
}

.contact-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.method-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.method-option {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 700;
}

.method-option input {
    display: none;
}

.method-option.selected {
    border-color: var(--primary);
    background: rgba(14, 165, 233, 0.05);
    color: var(--primary);
}

.btn-submit-modal {
    width: 100%;
    background: var(--primary);
    color: #fff;
    padding: 16px;
    border-radius: 16px;
    border: none;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit-modal:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}