/* ================================================================
   PT. Planet Indonesia Berkarya — Pure CSS Design System
   Professional Corporate Website
   ================================================================ */

/* ---- CSS Variables ---- */
:root {
    --primary: hsl(211, 80%, 25%);
    --primary-light: hsl(211, 85%, 77%);
    --primary-dark: hsl(211, 80%, 20%);
    --accent: hsl(353, 100%, 44%);
    --accent-light: hsl(353, 100%, 84%);
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(215, 25%, 15%);
    --muted: hsl(215, 15%, 97%);
    --muted-foreground: hsl(215, 15%, 45%);
    --border: hsl(215, 15%, 90%);
    --card-bg: hsl(0, 0%, 100%);
    --radius: 0.75rem;
    --shadow-soft: 0 4px 20px -2px hsl(211 80% 25% / 0.10);
    --shadow-card: 0 8px 32px -4px hsl(215 25% 15% / 0.10);
    --bg-hero: hsl(211 80% 20% / 0.85);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--foreground);
    background: var(--background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

/* ---- Layout ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background: linear-gradient(180deg, hsl(215 15% 97%), hsl(0 0% 100%));
}

/* ---- Typography ---- */
.gradient-text {
    color: var(--accent);
}

.text-muted {
    color: var(--muted-foreground);
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.text-center {
    text-align: center;
}

.small {
    font-size: 0.875rem;
}

/* ---- Section Headers ---- */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.section-title-sm {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-hero {
    background: var(--accent);
    color: white;
    box-shadow: 0 8px 24px -4px hsl(353 100% 44% / 0.3);
}

.btn-hero:hover {
    background: hsl(353, 100%, 40%);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -4px hsl(353 100% 44% / 0.4);
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 0.875rem 2rem;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-white {
    background: white;
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.btn-white:hover {
    background: hsl(215 15% 95%);
}

.btn-ghost {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--muted-foreground);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.2s;
}

.btn-ghost:hover {
    color: var(--primary);
}

.btn-icon {
    flex-shrink: 0;
}

.w-full {
    width: 100%;
    justify-content: center;
}

/* ================================================================
   HEADER
   ================================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--foreground);
}

.logo-img {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
    padding: 0.25rem 0;
}

.nav-link:hover {
    color: var(--primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: background 0.2s;
}

.mobile-menu-btn:hover {
    background: var(--muted);
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    flex-direction: column;
    border-top: 1px solid var(--border);
    padding: 0.5rem 0 1rem;
    background: white;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav-link {
    text-align: left;
    padding: 0.75rem 1rem;
    color: var(--muted-foreground);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s;
    border-radius: 0.5rem;
    margin: 0 0.5rem;
}

.mobile-nav-link:hover {
    background: var(--muted);
    color: var(--primary);
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--bg-hero);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 6rem 1.5rem 2rem;
    width: 100%;
}

.hero-text {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    margin-bottom: 2.5rem;
}

.hero-brand {
    display: block;
    text-transform: uppercase;
    font-size: clamp(2rem, 7vw, 4rem);

    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.02em;

    color: white;
    margin-bottom: 0.25rem;
    margin-top: 5rem;
}

.hero-accent {
    display: block;
    text-transform: uppercase;
    font-size: clamp(2rem, 7vw, 4rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: var(--primary-light);
}

.hero-title .gradient-text {
    color: white;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 680px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.18);
}

.stat-icon {
    width: 2.25rem;
    height: 2.25rem;
    color: var(--primary-light);
    margin: 0 auto 1.25rem;
    display: block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    color: white;
}

.stat-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
}

.scroll-dot {
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    margin-top: 6px;
    animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(8px);
        opacity: 0.4;
    }
}

/* ================================================================
   ABOUT
   ================================================================ */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.content-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.sub-title-primary {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.visi-misi {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bullet-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--muted-foreground);
}

.bullet {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

/* Values mini grid */
.values-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.value-mini-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s;
}

.value-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.value-mini-card .value-icon-primary {
    color: var(--primary);
    margin: 0 auto 0.75rem;
}

.value-mini-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.value-mini-card p {
    font-size: 0.82rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* Company Stats */
.company-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.company-stat {
    text-align: center;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.375rem;
}

/* ================================================================
   SERVICES
   ================================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: hsl(211 80% 25% / 0.2);
}

.service-card:hover .service-icon-wrap {
    background: hsl(211 80% 25%/0.15);
}

.service-card:hover h3 {
    color: var(--primary);
}

.service-icon-wrap {
    width: 4rem;
    height: 4rem;
    background: hsl(211 80% 25%/0.05);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--primary);
    transition: background 0.3s;
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
    line-height: 1.4;
}

.service-card p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    flex: 1;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--muted-foreground);
}

.dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Services CTA */
.services-cta {
    background: hsl(211 80% 25%/0.05);
    border-radius: 1.25rem;
    padding: 3.5rem 2rem;
    text-align: center;
}

.services-cta h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.services-cta p {
    color: var(--muted-foreground);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ================================================================
   EXPERIENCE
   ================================================================ */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.exp-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s;
}

.exp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.exp-icon-wrap {
    width: 3rem;
    height: 3rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    overflow: hidden;
    padding: 0.25rem;
}

.exp-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.exp-info {
    flex: 1;
}

.exp-year {
    font-size: 0.8rem;
    color: var(--muted-foreground);
}

.exp-info h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0.25rem 0;
    line-height: 1.4;
}

/* ================================================================
   VALUES
   ================================================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.value-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -8px hsl(215 25% 15%/0.12);
}

.value-card:hover h3 {
    color: var(--primary);
}

.value-icon-wrap {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: transform 0.3s;
}

.value-card:hover .value-icon-wrap {
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.value-card p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* Principles */
.principles {
    margin-bottom: 4rem;
}

.principles>.text-center {
    margin-bottom: 3rem;
}

.principles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.principle-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: var(--radius);
    transition: background 0.3s;
}

.principle-item:hover {
    background: rgba(255, 255, 255, 0.6);
}

.principle-item:hover h4 {
    color: var(--primary);
}

.principle-item:hover .principle-num {
    transform: scale(1.1);
}

.principle-num {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.principle-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

/* Culture */
.culture {
    background: linear-gradient(135deg, hsl(210 100% 40%/0.04), hsl(142 70% 45%/0.04));
    border: 1px solid hsl(210 100% 40%/0.1);
    border-radius: 1.25rem;
    padding: 3.5rem 2rem;
    text-align: center;
}

.culture-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

/* Form Card */
.form-card {
    background: white;
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: 0 12px 40px -8px hsl(215 25% 15%/0.12);
}

.form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-icon-wrap {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.25rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    border: 1.5px solid var(--border);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--foreground);
    background: var(--background);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsl(210 100% 40% / 0.12);
}

/* Contact Info */
/* Contact Info Section */

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.ci-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
}

.contact-info-card p {
    font-size: 0.85rem;
    color: var(--muted-foreground);
}

.visit-card {
    background: linear-gradient(135deg, hsl(210 100% 40%/0.05), hsl(142 70% 45%/0.05));
    border: 1px solid hsl(210 100% 40%/0.12);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.visit-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.visit-header h4 {
    font-size: 1rem;
    font-weight: 600;
}

.icon-primary {
    color: var(--primary);
}

/* Map */
.map-section {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.map-placeholder {
    height: 18rem;
    background: linear-gradient(135deg, var(--muted), hsl(215 15% 93%));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.75rem;
}

.map-placeholder h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
    background: var(--primary-dark);
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding: 4rem 0 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 700;
}

.footer-brand {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    background: linear-gradient(135deg, white, var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.footer-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    margin-bottom: 0.375rem;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    text-align: left;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--accent-light);
}

.footer-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
}

.footer-hours {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-top: 1rem;
    margin-top: 1rem;
}

.footer-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-bottom: 0.375rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-inner p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-right span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
}

.scroll-top-btn {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.scroll-top-btn:hover {
    background: rgba(255, 255, 255, 0.22);
}

/* ================================================================
   TOAST
   ================================================================ */
.toast {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: white;
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 8px 32px hsl(215 25% 15%/0.2);
    z-index: 1000;
    max-width: 380px;
    font-size: 0.9rem;
    border-left: 4px solid var(--primary);
    animation: slideInRight 0.3s ease;
}

.toast.hidden {
    display: none;
}

.toast p {
    flex: 1;
    line-height: 1.5;
}

.toast-close {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.2s;
}

.toast-close:hover {
    color: var(--foreground);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .company-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        max-width: 300px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .logo-text {
        font-size: 0.85rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .values-mini-grid {
        grid-template-columns: 1fr;
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }

    .culture-stats {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .company-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .section {
        padding: 3.5rem 0;
    }

    .company-stats {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content {
        padding-top: 5rem;
    }
}

/* ================================================================
   LANGUAGE SWITCHER
   ================================================================ */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.lang-btn {
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.lang-btn:hover {
    color: var(--primary);
    background: rgba(13, 64, 117, 0.05);
}

.lang-btn.active {
    color: var(--primary);
    background: rgba(13, 64, 117, 0.1);
}

.lang-divider {
    color: #ddd;
}

/* Mobile Language Switcher */
.mobile-lang-switcher {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    margin-top: 1rem;
}

.mobile-lang-btn {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-lang-btn.active {
    color: var(--primary);
}

@media (max-width: 991px) {
    .lang-switcher {
        display: none;
    }
}