/* ============================================================
   BORSAN GROUP — Main Stylesheet
   Design: Professional Corporate / Navy Blue & Gold
   ============================================================ */

:root {
    --primary: #C9A84C;
    --primary-dark: #A8872E;
    --primary-light: #E2C97E;
    --dark: #0B1629;
    --dark-2: #122040;
    --dark-3: #1A2E55;
    --mid: #2C4070;
    --light-grey: #F2F5FA;
    --white: #FFFFFF;
    --text-muted: #7A8BAA;
    --border: rgba(255,255,255,0.10);
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --shadow-card: 0 8px 32px rgba(11,22,41,0.18);
    --radius: 4px;
    --transition: 0.3s ease;
}

/* ─── BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--dark);
    font-weight: 400;
    line-height: 1.65;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.03em;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }

section { padding: 90px 0; }

.section-label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.section-label::before {
    content: '';
    display: inline-block;
    width: 28px; height: 2px;
    background: var(--primary);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1;
    letter-spacing: 0.04em;
    color: var(--dark);
}
.section-title.light { color: var(--white); }

/* ─── TOPBAR ───────────────────────────────────────────── */
.topbar {
    background: var(--dark);
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
}
.topbar-item {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: #BCC4D4;
}
.topbar-item a { color: #BCC4D4; }
.topbar-item a:hover { color: var(--primary); }
.topbar-item i { color: var(--primary); }

.lang-switcher { gap: 4px; }
.lang-btn {
    display: inline-block;
    padding: 3px 9px;
    font-size: 11px;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    border: 1px solid rgba(255,255,255,0.15);
    color: #BCC4D4;
    border-radius: 2px;
    transition: var(--transition);
}
.lang-btn:hover, .lang-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.social-icon {
    color: #BCC4D4;
    font-size: 15px;
}
.social-icon:hover { color: var(--primary); }

/* ─── NAVBAR ───────────────────────────────────────────── */
.main-navbar {
    background: var(--dark-2);
    padding: 0;
    border-bottom: 3px solid var(--primary);
    transition: background 0.3s;
    z-index: 1000;
}
.main-navbar.scrolled {
    background: rgba(11,22,41,0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(11,22,41,0.5);
}

/* Logo */
.logo-icon {
    width: 44px; height: 44px;
    background: var(--primary);
    display: flex; align-items: center; justify-content: center;
    clip-path: polygon(0 0, 85% 0, 100% 15%, 100% 100%, 15% 100%, 0 85%);
}
.logo-b {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--white);
    line-height: 1;
}
.logo-text {
    display: flex; flex-direction: column; line-height: 1;
}
.logo-name {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 0.12em;
    color: var(--white);
}
.logo-sub {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--primary);
    font-weight: 600;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C8D0E0 !important;
    padding: 22px 14px !important;
    position: relative;
    transition: color 0.25s;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 14px; right: 14px;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s;
}
.nav-link:hover, .nav-link.active {
    color: var(--white) !important;
}
.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
}

.btn-contact {
    background: var(--primary) !important;
    color: var(--white) !important;
    border-radius: var(--radius);
    clip-path: polygon(0 0, 90% 0, 100% 20%, 100% 100%, 10% 100%, 0 80%);
    padding: 10px 20px !important;
    margin: 6px 0;
}
.btn-contact::after { display: none; }
.btn-contact:hover { background: var(--primary-dark) !important; }

.navbar-toggler {
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 10px;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ─── PAGE HERO ─────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 60%, #162550 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(201,168,76,0.08) 100%);
}
.page-hero::after {
    content: attr(data-title);
    font-family: var(--font-display);
    font-size: clamp(80px, 15vw, 200px);
    color: rgba(255,255,255,0.025);
    position: absolute;
    right: -20px; bottom: -30px;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
}
.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 7vw, 80px);
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.05em;
}
.page-hero-title span { color: var(--primary); }
.breadcrumb { background: none; padding: 0; }
.breadcrumb-item { color: var(--text-muted); font-size: 13px; font-family: var(--font-heading); letter-spacing: 0.1em; }
.breadcrumb-item a { color: var(--text-muted); }
.breadcrumb-item a:hover { color: var(--primary); }
.breadcrumb-item.active { color: var(--primary); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.2); }

/* ─── SLIDER / HOME HERO ────────────────────────────────── */
.hero-slider { position: relative; overflow: hidden; }

.slide {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
    filter: brightness(0.45);
}
.carousel-item.active .slide-bg { transform: scale(1); }

.slide-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
}
.slide-label {
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s 0.2s forwards;
}
.slide-label::before { content: ''; width: 40px; height: 2px; background: var(--primary); }
.slide-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 100px);
    line-height: 0.95;
    color: var(--white);
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.7s 0.4s forwards;
}
.slide-title span { color: var(--primary); display: block; }
.slide-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s 0.6s forwards;
}
.slide-actions {
    display: flex; gap: 16px; flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s 0.8s forwards;
}

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

/* Slider Controls */
.carousel-control-prev, .carousel-control-next {
    width: 52px; height: 52px;
    background: rgba(201,168,76,0.85);
    border-radius: var(--radius);
    top: 50%; transform: translateY(-50%);
    opacity: 1;
    width: 52px;
}
.carousel-control-prev { left: 24px; }
.carousel-control-next { right: 24px; }
.carousel-control-prev:hover, .carousel-control-next:hover {
    background: var(--primary);
}

.carousel-indicators {
    bottom: 24px;
}
.carousel-indicators [data-bs-target] {
    width: 32px; height: 3px;
    background: rgba(255,255,255,0.4);
    border-radius: 0;
    opacity: 1;
}
.carousel-indicators .active {
    background: var(--primary);
    width: 56px;
}

/* Slide number badge */
.slide-number {
    position: absolute;
    bottom: 60px;
    right: 40px;
    font-family: var(--font-display);
    font-size: 90px;
    color: rgba(255,255,255,0.06);
    line-height: 1;
    z-index: 1;
}

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    clip-path: polygon(0 0, 90% 0, 100% 20%, 100% 100%, 10% 100%, 0 80%);
    border: none;
    cursor: pointer;
    transition: background 0.25s;
}
.btn-primary-custom:hover { background: var(--primary-dark); color: var(--white); }

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 2px solid rgba(255,255,255,0.4);
    clip-path: polygon(0 0, 90% 0, 100% 20%, 100% 100%, 10% 100%, 0 80%);
    transition: all 0.25s;
}
.btn-outline-custom:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-dark-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--dark);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    clip-path: polygon(0 0, 90% 0, 100% 20%, 100% 100%, 10% 100%, 0 80%);
    border: none;
    cursor: pointer;
    transition: background 0.25s;
}
.btn-dark-custom:hover { background: var(--primary); color: var(--white); }

/* ─── STATS BAND ────────────────────────────────────────── */
.stats-band {
    background: var(--primary);
    padding: 0;
}
.stat-item {
    padding: 32px 20px;
    border-right: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-family: var(--font-display);
    font-size: 52px;
    color: var(--white);
    line-height: 1;
}
.stat-label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-top: 4px;
}

/* ─── SERVICE CARDS ─────────────────────────────────────── */
.service-card {
    background: var(--white);
    border: 1px solid #E5E8EF;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 0;
    background: var(--primary);
    transition: height 0.4s;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}
.service-card:hover::before { height: 100%; }

.service-icon {
    width: 64px; height: 64px;
    background: rgba(201,168,76,0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
    clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 20% 100%, 0 80%);
    transition: background 0.3s, color 0.3s;
}
.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
}
.service-card-title {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 12px;
}
.service-card-text {
    font-size: 15px;
    color: #555E6E;
    line-height: 1.7;
}
.service-card-bg-num {
    position: absolute;
    bottom: -10px; right: 10px;
    font-family: var(--font-display);
    font-size: 80px;
    color: rgba(0,0,0,0.04);
    line-height: 1;
}

/* ─── ABOUT SECTION ─────────────────────────────────────── */
.about-img-wrap {
    position: relative;
}
.about-img-main {
    width: 100%;
    height: 480px;
    object-fit: cover;
}
.about-img-badge {
    position: absolute;
    bottom: -24px; right: -24px;
    background: var(--primary);
    padding: 24px 28px;
    clip-path: polygon(0 0, 85% 0, 100% 15%, 100% 100%, 15% 100%, 0 85%);
}
.about-img-badge .badge-num {
    font-family: var(--font-display);
    font-size: 52px;
    color: var(--white);
    line-height: 1;
    display: block;
}
.about-img-badge .badge-text {
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
}

.feature-list { list-style: none; padding: 0; }
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    color: #3A4155;
}
.feature-list li::before {
    content: '';
    width: 18px; height: 18px;
    min-width: 18px;
    background: var(--primary);
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    margin-top: 3px;
}

/* ─── PROJECT CARDS ─────────────────────────────────────── */
.project-card {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: var(--dark-3);
}
.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: brightness(0.65);
}
.project-card:hover .project-img {
    transform: scale(1.06);
    filter: brightness(0.4);
}
.project-overlay {
    position: absolute;
    inset: 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(0deg, rgba(11,22,41,0.88) 0%, transparent 60%);
}
.project-cat {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 6px;
}
.project-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0;
}
.project-card-link {
    position: absolute;
    top: 24px; right: 24px;
    width: 40px; height: 40px;
    background: var(--primary);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s;
}
.project-card:hover .project-card-link {
    opacity: 1;
    transform: translateY(0);
}

/* ─── DARK SECTION ───────────────────────────────────────── */
.section-dark {
    background: var(--dark);
    color: var(--white);
}
.section-accent { background: var(--dark-2); }

/* ─── TESTIMONIAL ────────────────────────────────────────── */
.testimonial-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    padding: 36px;
    height: 100%;
    position: relative;
}
.testimonial-card::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 100px;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: 10px; left: 24px;
    line-height: 1;
}
.testimonial-text {
    color: #C8D0E0;
    font-size: 15px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}
.testimonial-author-name {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
}
.testimonial-author-role {
    font-size: 13px;
    color: var(--primary);
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
}
.stars { color: var(--primary); letter-spacing: 2px; }

/* ─── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: 'BORSAN';
    font-family: var(--font-display);
    font-size: 200px;
    color: rgba(255,255,255,0.06);
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
}
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 62px);
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 16px;
}
.cta-text { color: rgba(255,255,255,0.8); font-size: 17px; }

/* ─── GALLERY ────────────────────────────────────────────── */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(201,168,76,0.78);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 32px; color: var(--white); }

/* ─── CAREERS ────────────────────────────────────────────── */
.job-card {
    background: var(--white);
    border: 1px solid #E5E8EF;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: all 0.3s;
    flex-wrap: wrap;
}
.job-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 24px rgba(201,168,76,0.15);
    transform: translateX(4px);
}
.job-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}
.job-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.job-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #555E6E;
}
.job-tag i { color: var(--primary); }

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-info-card {
    background: var(--dark);
    color: var(--white);
    padding: 48px 40px;
    height: 100%;
}
.contact-info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 32px;
    align-items: flex-start;
}
.contact-info-icon {
    width: 48px; height: 48px;
    min-width: 48px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 20% 100%, 0 80%);
}
.contact-info-label {
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 4px;
}
.contact-info-value {
    font-size: 15px;
    color: #C8D0E0;
}
.contact-info-value a { color: #C8D0E0; }
.contact-info-value a:hover { color: var(--primary); }

.contact-form-wrap { background: var(--light-grey); padding: 48px 40px; }

.form-label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 6px;
}
.form-control, .form-select {
    border: 2px solid #E5E8EF;
    border-radius: var(--radius);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    background: var(--white);
    transition: border-color 0.25s;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer { background: var(--dark); }
.footer-top { padding: 80px 0 60px; }

.footer-desc {
    font-size: 14px;
    color: #8A94A8;
    line-height: 1.75;
}
.footer-social a {
    color: #8A94A8;
    font-size: 18px;
    transition: color 0.25s;
}
.footer-social a:hover { color: var(--primary); }

.footer-heading {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 14px;
    color: #8A94A8;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.25s, gap 0.25s;
}
.footer-links a i { color: var(--primary); font-size: 11px; }
.footer-links a:hover { color: var(--primary); gap: 10px; }

.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    color: #8A94A8;
    align-items: flex-start;
}
.footer-contact-list i { color: var(--primary); margin-top: 3px; min-width: 16px; }
.footer-contact-list a { color: #8A94A8; }
.footer-contact-list a:hover { color: var(--primary); }

.footer-bottom {
    background: rgba(0,0,0,0.3);
    border-top: 1px solid var(--border);
    padding: 18px 0;
}
.footer-bottom p { font-size: 13px; color: #8A94A8; }
.footer-badge {
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--primary);
    text-transform: uppercase;
}

/* ─── SCROLL TOP ─────────────────────────────────────────── */
.scroll-top-btn {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 48px; height: 48px;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 20% 100%, 0 80%);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
}
.scroll-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
}
.scroll-top-btn:hover { background: var(--primary-dark); }

/* ─── VIDEO SECTION ─────────────────────────────────────── */
.video-wrap {
    position: relative;
    overflow: hidden;
    background: var(--dark);
    height: 500px;
}
.video-wrap video {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.5;
}
.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.play-btn {
    width: 80px; height: 80px;
    background: rgba(201,168,76,0.92);
    border: 3px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
    text-decoration: none;
}
.play-btn:hover { transform: scale(1.1); background: var(--primary); color: var(--white); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
    section { padding: 60px 0; }
    .slide-title { font-size: 48px; }
    .about-img-badge { right: 0; bottom: -16px; }
    .contact-form-wrap, .contact-info-card { padding: 32px 24px; }
    .job-card { flex-direction: column; align-items: flex-start; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
    .stat-item:last-child { border-bottom: none; }
}

/* ─── UTILITY ────────────────────────────────────────────── */
.text-primary-custom { color: var(--primary) !important; }
.bg-primary-custom { background: var(--primary) !important; }
.border-primary-custom { border-color: var(--primary) !important; }

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
