:root {
    --primary: #1e3a8a; /* Deep Blue */
    --primary-light: #3b82f6;
    --primary-dark: #172554;
    --secondary: #d97706; /* Golden/Amber */
    --secondary-hover: #b45309;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-main: #ffffff;
    --bg-light: #f8fafc;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

p {
    text-align: justify;
}
.text-center p {
    text-align: center;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

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

/* Buttons */
.btn-primary, .btn-secondary, .btn-primary-outline {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
    border: 2px solid var(--secondary);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    border-color: var(--secondary-hover);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

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

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

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
    padding: 15px 0;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 28px;
    color: var(--primary);
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.5px;
    color: var(--primary-dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a:not(.btn-primary-outline) {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-muted);
    position: relative;
}

.nav-links a:not(.btn-primary-outline):hover,
.nav-links a:not(.btn-primary-outline).active {
    color: var(--primary);
}

.nav-links a:not(.btn-primary-outline)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:not(.btn-primary-outline):hover::after,
.nav-links a:not(.btn-primary-outline).active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    color: var(--primary);
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('../gedung.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.35) 0%, rgba(30, 58, 138, 0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-text-wrapper {
    max-width: 650px;
    color: white;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 24px;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Features */
.features {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: white;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
}

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

.about-image-wrapper {
    position: relative;
}

.about-image-blob {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--primary-light);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.1;
    z-index: -1;
}

.about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--secondary);
    color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 15px;
    border: 4px solid white;
}

.exp-number {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.section-title {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 16px;
}

.about-list {
    margin-top: 30px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 500;
}

.about-list li i {
    color: var(--primary);
    font-size: 20px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: white;
    padding: 40px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    z-index: 0;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card > * {
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.service-card:hover .service-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.service-card:hover h3,
.service-card:hover p {
    color: white;
}

.service-link {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-card:hover .service-link {
    color: white;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: #0f172a;
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo .logo-text {
    color: white;
}

.footer-about p {
    color: #94a3b8;
    margin: 20px 0;
    max-width: 350px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer h3 {
    font-size: 20px;
    margin-bottom: 24px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    color: #94a3b8;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary-light);
    font-size: 20px;
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}

/* Scroll Animation */
[data-reveal] {
    opacity: 0;
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

[data-reveal="up"] { transform: translateY(50px); }
[data-reveal="left"] { transform: translateX(-50px); }
[data-reveal="right"] { transform: translateX(50px); }

[data-reveal].revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .about-grid { gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: 0.4s;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .mobile-toggle { display: block; }
    
    .hero-title { font-size: 24px; }
    .features-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .about-experience { right: 20px; bottom: -20px; }
    .about-list li { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* WhatsApp Floating Widget */
.wa-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: wa-bounce 2s infinite;
}

.wa-floating-btn:hover {
    background-color: #1ebe57;
    color: #fff;
    transform: scale(1.1);
    animation: none;
}

.wa-floating-btn .wa-tooltip {
    position: absolute;
    right: 75px;
    background-color: #fff;
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wa-floating-btn:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes wa-bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

@media (max-width: 768px) {
    .wa-floating-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
}


/* Logo Image Styling */
.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.footer-logo .logo-img {
    height: 60px;
    margin-bottom: 15px;
}


.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-text-new {
    font-family: "Outfit", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary); /* Dark blue */
    letter-spacing: 1px;
    white-space: nowrap;
}
.navbar.scrolled .logo-text-new {
    color: var(--secondary);
}
.footer-logo .logo-text-new {
    color: #fff;
    font-size: 1.8rem;
}
@media (max-width: 768px) {
    .logo-text-new {
        font-size: 1.2rem;
    }
}


/* Premium Services Grid */
.premium-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.premium-service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    border-top: 4px solid transparent;
}

.premium-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 199, 196, 0.15);
    border-top-color: var(--primary);
}

.premium-service-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.premium-service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.premium-service-card:hover .premium-service-img-wrapper img {
    transform: scale(1.1);
}

.premium-service-content {
    padding: 25px 20px;
}

.premium-service-content h3 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 700;
}

.btn-service {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

/* Premium Services List */
.services-list-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}
.service-list-item {
    padding: 15px 30px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.service-list-item i {
    color: var(--primary);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}
.service-list-item:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 199, 196, 0.2);
}
.service-list-item:hover i {
    color: #fff;
}


/* Premium Styling for Injected WP Content */
.service-detail-card .wp-block-heading {
    font-family: "Outfit", sans-serif;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 40px;
    position: relative;
}

.service-detail-card p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.service-detail-card .wp-block-media-text {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    margin-top: 40px;
}

.service-detail-card .wp-block-media-text__media {
    flex: 1;
}

.service-detail-card .wp-block-media-text__media img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-detail-card .wp-block-media-text__media img:hover {
    transform: translateY(-5px);
}

.service-detail-card .wp-block-media-text__content {
    flex: 1;
}

.service-detail-card .wp-block-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.service-detail-card .wp-block-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.service-detail-card .wp-block-list li[style*="list-style-type: none"] {
    padding-left: 0;
    margin-bottom: 0;
}

.service-detail-card .wp-block-list li[style*="list-style-type: none"]::before {
    display: none !important;
}

.service-detail-card .wp-block-list li::before {
    content: "\f00c"; /* FontAwesome check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #fff;
    background: var(--primary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.service-detail-card .wp-block-columns {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.service-detail-card .wp-block-column {
    flex: 1;
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    border-top: 4px solid var(--primary);
}

.service-detail-card img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .service-detail-card .wp-block-media-text {
        flex-direction: column;
    }
    .service-detail-card .wp-block-columns {
        flex-direction: column;
    }
}


/* Modern PBG List Styling */
.modern-pbg-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 50px 0;
}

.pbg-list-item {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
}

.pbg-list-item i {
    font-size: 1.4rem;
    color: var(--primary);
    width: 30px;
    text-align: center;
}

.pbg-list-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 199, 196, 0.15);
    border-left-color: var(--secondary);
}

.pbg-list-item:hover i {
    color: var(--secondary);
}


/* Navbar Dropdown Styling */
.nav-links .dropdown {
    position: relative;
    display: inline-block;
}

.nav-links .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.nav-links .dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-links .dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-links .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 250px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 100;
    display: flex;
    flex-direction: column;
}

.nav-links .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-links .dropdown-menu a {
    color: var(--secondary) !important;
    padding: 12px 25px;
    font-weight: 500;
    font-size: 0.95rem;
    text-align: left;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.nav-links .dropdown-menu a:hover {
    background-color: #f8fafc;
    color: var(--primary) !important;
    border-left-color: var(--primary);
    padding-left: 30px;
}

.nav-links .dropdown-menu a.active {
    background-color: transparent;
    color: var(--primary) !important;
    border-bottom: none;
    border-left-color: var(--primary);
}

@media (max-width: 768px) {
    .nav-links .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        padding: 5px 0 10px 20px;
        display: none;
    }
    .nav-links .dropdown.active .dropdown-menu {
        display: flex;
    }
}


/* --- PREMIUM NAVBAR UPGRADES & FIXES --- */
.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}
.navbar {
    background-color: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
}
.logo-text-new {
    font-family: "Outfit", sans-serif !important;
    font-weight: 800 !important;
    font-size: 1.5rem !important;
    background: linear-gradient(135deg, #c2410c, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}
.nav-links {
    gap: 40px;
}
.nav-links a:not(.btn-primary-outline) {
    font-family: "Outfit", sans-serif !important;
    font-weight: 600 !important;
    font-size: 1.05rem !important;
    color: var(--primary) !important;
    letter-spacing: 0.2px;
}
.nav-links a:not(.btn-primary-outline):hover, 
.nav-links a:not(.btn-primary-outline).active {
    color: var(--secondary) !important;
}
.nav-links a.btn-primary-outline {
    background: linear-gradient(135deg, var(--primary), #0284c7) !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 28px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-family: "Outfit", sans-serif !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3) !important;
    transition: all 0.3s ease !important;
}
.nav-links a.btn-primary-outline:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(2, 132, 199, 0.4) !important;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 25px !important;
        padding-top: 50px !important;
        background: rgba(15, 23, 42, 0.98) !important;
        backdrop-filter: blur(20px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .logo-img {
        height: 35px;
    }
    .logo-text-new {
        font-size: 1.2rem !important;
    }
    .nav-links a:not(.btn-primary-outline) {
        font-size: 1.2rem !important;
        color: #f8fafc !important;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    .nav-links a:not(.btn-primary-outline):hover, 
    .nav-links a:not(.btn-primary-outline).active {
        color: var(--secondary) !important;
    }
    .nav-links a.btn-primary-outline {
        margin-top: 25px;
        width: 85%;
        text-align: center;
        padding: 15px 28px !important;
        font-size: 1.1rem !important;
    }
}

/* --- EXCLUSIVE PREMIUM CORPORATE HEADER REDESIGN --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
.top-bar {
    background-color: #111827;
    color: #9ca3af;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.top-bar-left span i {
    color: #cbd5e1;
}
.social-icons {
    display: flex;
    gap: 12px;
}
.social-icons a {
    color: #9ca3af;
    font-size: 0.9rem;
    transition: 0.3s;
}
.social-icons a:hover {
    color: #fff;
}
.follow-text {
    font-weight: 600;
    margin-right: 5px;
    color: #fff;
}

/* Override Navbar Styles for Dark Corporate Theme */
.navbar {
    background-color: rgba(15, 23, 42, 0.92) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
    padding: 12px 0 !important;
    position: static !important; /* Managed by main-header */
}
.logo-text-new {
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: 1.3rem !important;
}
.nav-links {
    align-items: center;
    gap: 20px !important;
}
.nav-links a:not(.btn-search):not(.btn-red) {
    color: #f1f5f9 !important;
    text-transform: uppercase;
    font-size: 0.85rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px !important;
    white-space: nowrap !important;
}
.nav-links a:not(.btn-search):not(.btn-red):hover, 
.nav-links a.active {
    color: var(--secondary) !important;
}
.nav-links .dropdown-menu {
    background-color: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}
.nav-links .dropdown-menu a {
    color: #f1f5f9 !important;
    font-size: 0.9rem !important;
    text-transform: capitalize !important;
    letter-spacing: normal !important;
    white-space: normal !important;
}
.nav-links .dropdown-menu a:hover {
    color: var(--secondary) !important;
    background-color: rgba(255,255,255,0.05) !important;
    border-left-color: var(--secondary) !important;
}

/* Button Search & Kontak */
.nav-links a.btn-search {
    background-color: var(--primary) !important;
    color: white !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 4px !important;
    transition: 0.3s !important;
    font-size: 1.1rem !important;
    padding: 0 !important;
}
.nav-links a.btn-search i {
    color: white !important;
}
.nav-links a.btn-search:hover {
    background-color: #2563eb !important;
    color: white !important;
}
.nav-links a.btn-red {
    background-color: transparent !important;
    color: white !important;
    padding: 8px 18px !important;
    border-radius: 4px !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    font-size: 0.85rem !important;
    transition: 0.3s !important;
    letter-spacing: 0.5px !important;
    background-image: none !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: none !important;
    white-space: nowrap !important;
}
.nav-links a.btn-red:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: #ffffff !important;
    transform: translateY(-2px) !important;
}

/* Adjust layout spacing for new taller header */
.hero {
    padding-top: 140px !important;
}
.page-header {
    padding-top: 160px !important;
    text-align: center !important;
}
.page-header h1, .page-header .page-title, .page-header p {
    text-align: center !important;
}

/* Mobile Adjustments for Top Bar */
@media (max-width: 991px) {
    .top-bar {
        display: none; /* Hide top bar on mobile/tablet to save space */
    }
    .main-header {
        background: rgba(15, 23, 42, 0.98);
    }
    .hero {
        padding-top: 140px;
    }
}

@media (max-width: 768px) {
    .services-list-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 10px;
    }
    .service-list-item {
        padding: 12px 10px;
        font-size: 0.85rem;
        border-radius: 12px;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 8px;
    }
    .service-list-item i {
        font-size: 1.4rem;
    }
}

/* Fix Scrolled Navbar State */
.navbar.scrolled {
    background-color: rgba(15, 23, 42, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}

/* ==========================================
   Premium Language Translator Widget
   ========================================== */

/* Translator Floating Widget Container */
.lang-translator-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9998; /* Just below WhatsApp button z-index (9999) to keep overlays ordered */
    font-family: 'Inter', sans-serif;
}

.lang-translator-btn {
    width: 60px;
    height: 60px;
    background-color: var(--primary, #1e3a8a);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.4);
    transition: var(--transition, all 0.3s cubic-bezier(0.4, 0, 0.2, 1));
    position: relative;
}

.lang-translator-btn:hover {
    background-color: var(--primary-dark, #172554);
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.5);
}

.lang-translator-btn i {
    font-size: 26px;
}

/* Active language shorthand badge */
.lang-active-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background-color: var(--secondary, #d97706);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #ffffff;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Tooltip styling */
.lang-translator-btn .lang-tooltip {
    position: absolute;
    left: 75px;
    background-color: #ffffff;
    color: var(--text-main, #1e293b);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-md, 0 10px 15px -3px rgba(0,0,0,0.1));
    opacity: 0;
    pointer-events: none;
    transform: translateX(-10px);
    transition: var(--transition, all 0.3s cubic-bezier(0.4, 0, 0.2, 1));
    border: 1px solid rgba(0,0,0,0.05);
}

.lang-translator-btn:hover .lang-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Language Dropdown Menu */
.lang-dropdown-menu {
    position: absolute;
    bottom: 75px;
    left: 0;
    width: 220px;
    background: rgba(15, 23, 42, 0.95); /* Deep dark theme for premium contrast */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-header {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 8px;
    user-select: none;
}

/* Language Option Item */
.lang-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 12px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
}

.lang-option:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transform: translateX(3px);
}

.lang-option-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-flag {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Active State styling */
.lang-option.active {
    background-color: rgba(217, 119, 6, 0.15); /* Light secondary/amber hue */
    color: var(--secondary, #d97706);
    font-weight: 600;
}

.lang-option .active-indicator {
    display: none;
    color: var(--secondary, #d97706);
    font-size: 14px;
}

.lang-option.active .active-indicator {
    display: block;
}

/* Hide default Google Translate elements completely to avoid clutter */
.goog-te-banner-frame, 
.goog-te-banner-frame.skiptranslate, 
.goog-te-banner, 
.goog-te-menu-value,
iframe.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.skiptranslate > iframe,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf {
    display: none !important;
    visibility: hidden !important;
}

html, body {
    top: 0px !important;
    margin-top: 0px !important;
    position: static !important;
}

/* Overriding Google's styling that leaves blank spaces */
.goog-tooltip, .goog-tooltip:hover {
    display: none !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .lang-translator-widget {
        bottom: 20px;
        left: 20px;
    }
    .lang-translator-btn {
        width: 50px;
        height: 50px;
    }
    .lang-translator-btn i {
        font-size: 22px;
    }
    .lang-active-badge {
        width: 18px;
        height: 18px;
        font-size: 8px;
    }
    .lang-translator-btn .lang-tooltip {
        left: 65px;
        font-size: 12px;
        padding: 6px 12px;
    }
    .lang-dropdown-menu {
        bottom: 65px;
        width: 200px;
    }
}

