/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
}

/* Owl overrides inside hero */
.hero .owl-carousel,
.hero .owl-stage-outer,
.hero .owl-stage,
.hero .owl-item {
    height: 100%;
}

.hero .owl-item {
    backface-visibility: hidden;
}

/* ---- single slide ---- */
.hero-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.08);
    transition: transform 6s ease-out;
}

.owl-item.active .hero-slide-bg {
    transform: scale(1);
}

/* dark gradient overlay */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        105deg,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.78) 35%,
        rgba(0, 0, 0, 0.45) 65%,
        rgba(0, 0, 0, 0.25) 100%
    );
}

/* diagonal gold accent strip */
.hero-slide-overlay::after {
    content: "";
    position: absolute;
    top: 0;
    right: 42%;
    width: 2px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--color-Primary2) 20%,
        var(--color-Primary2) 80%,
        transparent 100%
    );
    opacity: 0.35;
    transform: skewX(-8deg);
}

/* ---- slide content ---- */
.hero-slide-content {
    position: relative;
    z-index: 3;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding-top: 100px;
}

.hero-text {
    width: 50%;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.3s;
}

.owl-item.active .hero-text {
    opacity: 1;
    transform: translateY(0);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

.owl-item.active .hero-tag {
    opacity: 1;
    transform: translateX(0);
}

.hero-tag-line {
    width: 45px;
    height: 2px;
    background: var(--color-Primary2);
}

.hero-tag span {
    font-family: "font_medium";
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-Primary2);
}

.hero-text h1 {
    font-size: 58px;
    font-family: "font_semibold";
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease 0.55s, transform 0.7s ease 0.55s;
}

.owl-item.active .hero-text h1 {
    opacity: 1;
    transform: translateY(0);
}

.hero-text h1 .highlight {
    color: var(--color-Primary2);
    position: relative;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease 0.7s, transform 0.7s ease 0.7s;
}

.owl-item.active .hero-text p {
    opacity: 1;
    transform: translateY(0);
}

/* CTA buttons */
.hero-btns {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease 0.85s, transform 0.7s ease 0.85s;
}

.owl-item.active .hero-btns {
    opacity: 1;
    transform: translateY(0);
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: var(--color-Primary2);
    color: var(--color-black);
    font-family: "font_medium";
    font-size: 16px;
    border: 2px solid var(--color-Primary2);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 100%, 0 100%);
    padding-right: 50px;
}

.hero-btn-primary:hover {
    background: transparent;
    color: var(--color-Primary2);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: transparent;
    color: var(--color-white);
    font-family: "font_medium";
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    clip-path: polygon(14px 0, 100% 0, 100% 100%, 0 100%);
    padding-left: 50px;
}

.hero-btn-secondary:hover {
    border-color: var(--color-Primary2);
    color: var(--color-Primary2);
}

/* hero image side */
.hero-image {
    position: relative;
    width: 42%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: flex-end;
    opacity: 0;
    transform: translateX(60px) scale(0.95);
    transition: opacity 0.9s ease 0.5s, transform 0.9s ease 0.5s;
}

.owl-item.active .hero-image {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.hero-image img {
    max-height: 80vh;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.5));
}

/* gold frame accent behind image */
.hero-image::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: -15px;
    width: 75%;
    height: 65%;
    border: 2px solid var(--color-Primary2);
    opacity: 0.2;
    z-index: -1;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

/* ---- slide counter ---- */
.hero-counter {
    position: absolute;
    bottom: 50px;
    left: 5%;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "font_semibold";
    color: var(--color-white);
}

.hero-counter .current {
    font-size: 42px;
    color: var(--color-Primary2);
    line-height: 1;
}

.hero-counter .separator {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(-65deg);
    margin: 0 4px;
}

.hero-counter .total {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1;
}

/* ---- custom nav arrows ---- */
.hero .owl-nav {
    position: absolute;
    bottom: 50px;
    right: 5%;
    z-index: 10;
    display: flex;
    gap: 12px;
}

.hero .owl-nav button {
    width: 56px;
    height: 56px;
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--color-white) !important;
    font-size: 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}

.hero .owl-nav button:hover {
    border-color: var(--color-Primary2) !important;
    color: var(--color-Primary2) !important;
    background: rgba(240, 168, 41, 0.08) !important;
}

.hero .owl-nav button span {
    font-size: 28px;
    line-height: 1;
}

/* ---- decorative speed lines ---- */
.hero-speed-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 10;
    background: linear-gradient(
        to right,
        var(--color-Primary2) 0%,
        var(--color-Primary2) 30%,
        transparent 30%,
        transparent 33%,
        var(--color-Primary2) 33%,
        var(--color-Primary2) 45%,
        transparent 45%
    );
    opacity: 0.6;
}

/* decorative corner accent */
.hero::before {
    content: "";
    position: absolute;
    top: 120px;
    left: 5%;
    width: 60px;
    height: 60px;
    border-left: 2px solid var(--color-Primary2);
    border-top: 2px solid var(--color-Primary2);
    opacity: 0.25;
    z-index: 5;
}

/* vertical text on the side */
.hero-vertical-text {
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    z-index: 5;
    font-family: "font_medium";
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.15);
    white-space: nowrap;
}

/* ---- dot-style progress bar ---- */
.hero-progress {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-progress-dot {
    width: 3px;
    height: 22px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s ease;
}

.hero-progress-dot.active {
    height: 40px;
    background: var(--color-Primary2);
}

/* ---- social side strip ---- */
.hero-social {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 25px;
}

.hero-social a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
    transition: all 0.3s ease;
}

.hero-social a:hover {
    color: var(--color-Primary2);
}

/* scroll-down indicator */
.hero-scroll {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: none;
}

.hero-scroll-inner {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 13px;
    position: relative;
}

.hero-scroll-inner::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--color-Primary2);
    border-radius: 2px;
    animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(12px);
    }
}


/* ========================================
   ABOUT US SECTION
   ======================================== */

.about-us {
    position: relative;
    overflow: hidden;
    background: var(--color-black);
}

.about-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, rgba(240, 168, 41, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 70px;
}

/* ---- image collage ---- */
.about-images {
    position: relative;
    width: 45%;
    min-height: 580px;
    flex-shrink: 0;
}

.about-img-main {
    position: relative;
    width: 85%;
    height: 480px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.about-img-badge {
    position: absolute;
    bottom: 50px;
    right: 0;
    background: var(--color-Primary2);
    padding: 20px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 12px 100%);
}

.about-img-badge .badge-number {
    font-family: "font_semibold";
    font-size: 36px;
    color: var(--color-black);
    line-height: 1;
}

.about-img-badge .badge-text {
    font-family: "font_medium";
    font-size: 12px;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 220px;
    overflow: hidden;
    border: 4px solid var(--color-black);
    clip-path: polygon(16px 0, 100% 0, 100% 100%, 0 100%, 0 16px);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-secondary:hover img {
    transform: scale(1.05);
}

.about-img-accent {
    position: absolute;
    top: -20px;
    right: 40%;
    width: 100px;
    height: 100px;
    border: 2px solid var(--color-Primary2);
    opacity: 0.15;
    z-index: -1;
}

/* ---- text content ---- */
.about-content {
    flex: 1;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.about-tag-line {
    width: 45px;
    height: 2px;
    background: var(--color-Primary2);
}

.about-tag span {
    font-family: "font_medium";
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-Primary2);
}

.about-title {
    font-size: 40px;
    font-family: "font_semibold";
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 24px;
}

.about-title .highlight {
    color: var(--color-Primary2);
}

.about-desc {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    max-width: 560px;
}

/* ---- social media cards ---- */
.about-social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 35px;
    margin-bottom: 35px;
}

.about-social-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
}

.about-social-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-social-card:hover {
    border-color: transparent;
    transform: translateY(-3px);
}

.about-social-card:hover::before {
    opacity: 1;
}

/* platform-specific gradients */
.about-social-youtube::before {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.12) 0%, transparent 100%);
}

.about-social-youtube:hover {
    border-color: rgba(255, 0, 0, 0.3);
}

.about-social-tiktok::before {
    background: linear-gradient(135deg, rgba(0, 242, 234, 0.1) 0%, rgba(255, 0, 80, 0.08) 100%);
}

.about-social-tiktok:hover {
    border-color: rgba(0, 242, 234, 0.3);
}

.about-social-instagram::before {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.1) 0%, rgba(131, 58, 180, 0.08) 100%);
}

.about-social-instagram:hover {
    border-color: rgba(225, 48, 108, 0.3);
}

.about-social-facebook::before {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.12) 0%, transparent 100%);
}

.about-social-facebook:hover {
    border-color: rgba(24, 119, 242, 0.3);
}

.social-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    font-size: 20px;
}

.about-social-youtube .social-card-icon {
    background: rgba(255, 0, 0, 0.12);
    color: #ff0000;
}

.about-social-tiktok .social-card-icon {
    background: rgba(0, 242, 234, 0.1);
    color: #00f2ea;
}

.about-social-instagram .social-card-icon {
    background: rgba(225, 48, 108, 0.1);
    color: #e1306c;
}

.about-social-facebook .social-card-icon {
    background: rgba(24, 119, 242, 0.12);
    color: #1877f2;
}

.social-card-icon i {
    line-height: 1;
}

.social-card-info {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
}

.social-card-name {
    font-family: "font_semibold";
    font-size: 16px;
    color: var(--color-white);
    line-height: 1.3;
}

.social-card-handle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.3;
}

.social-card-arrow {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.15);
    font-size: 14px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.about-social-card:hover .social-card-arrow {
    color: var(--color-Primary2);
    transform: translateX(4px);
}

/* about CTA button */
.about-cta {
    margin-top: 10px;
    display: inline-flex;
}


/* ========================================
   MISSION / VALUES SECTION
   ======================================== */

.mission-values-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #050505 0%, #0b0b0b 52%, #050505 100%);
}

.mission-values-section::before {
    content: "";
    position: absolute;
    top: 8%;
    right: -8%;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(197, 25, 30, 0.2);
    transform: rotate(18deg);
    pointer-events: none;
}

.mission-values-section::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45%;
    height: 1px;
    background: linear-gradient(90deg, var(--color-Primary2), transparent);
    opacity: 0.55;
}

.mission-values-header {
    position: relative;
    z-index: 1;
    max-width: 740px;
    margin-bottom: 46px;
}

.mission-values-header .about-desc {
    max-width: 680px;
}

.mission-values-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.mission-value-card {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    padding: 42px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
        #090909;
    border: 1px solid rgba(255, 255, 255, 0.08);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 34px), calc(100% - 34px) 100%, 0 100%);
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.mission-value-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 38px 38px;
    opacity: 0.28;
    pointer-events: none;
}

.mission-value-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: var(--color-Primary2);
    opacity: 0.9;
}

.mission-value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(197, 25, 30, 0.42);
    background:
        linear-gradient(145deg, rgba(197, 25, 30, 0.14), rgba(255, 255, 255, 0.025)),
        #090909;
}

.mission-card-glow {
    position: absolute;
    right: -70px;
    bottom: -80px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(197, 25, 30, 0.25), transparent 65%);
    pointer-events: none;
}

.mission-card-icon {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    background: var(--color-Primary2);
    color: var(--color-white);
    font-size: 26px;
    clip-path: polygon(0 0, 100% 0, 100% 78%, 78% 100%, 0 100%);
}

.mission-card-kicker {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 10px;
    font-family: "font_medium";
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-Primary2);
}

.mission-value-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
    font-family: "font_semibold";
    font-size: 31px;
    color: var(--color-white);
}

.mission-value-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.66);
}

.values-strip {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.value-mini-card {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.value-mini-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-Primary2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.value-mini-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 25, 30, 0.35);
}

.value-mini-card:hover::before {
    transform: scaleX(1);
}

.value-mini-card span {
    position: absolute;
    top: 22px;
    right: 22px;
    font-family: "font_semibold";
    font-size: 42px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.045);
}

.value-mini-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    border: 1px solid rgba(197, 25, 30, 0.45);
    color: var(--color-Primary2);
    font-size: 20px;
}

.value-mini-card h4 {
    margin-bottom: 12px;
    font-family: "font_semibold";
    font-size: 21px;
    color: var(--color-white);
}

.value-mini-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.56);
}


/* ========================================
   PROJECTS / WORKS SECTION
   ======================================== */

.projects-section {
    position: relative;
    background: #080808;
    overflow: hidden;
}

.projects-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 50%;
    background: radial-gradient(ellipse at bottom right, rgba(240, 168, 41, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.projects-header {
    margin-bottom: 50px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ---- single card ---- */
.project-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: all 0.5s ease;
    position: relative;
}

.project-card:hover {
    border-color: rgba(240, 168, 41, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* card image */
.project-card-img {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.project-card-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.project-card:hover .project-card-img > img {
    transform: scale(1.08);
}

/* car brand badge */
.project-card-brand {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    z-index: 3;
    transition: all 0.4s ease;
}

.project-card:hover .project-card-brand {
    border-color: var(--color-Primary2);
    background: rgba(0, 0, 0, 0.85);
}

.project-card-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* hover overlay with play button */
.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.project-card:hover .project-card-overlay {
    opacity: 1;
}

.project-card-play {
    width: 60px;
    height: 60px;
    background: var(--color-Primary2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    font-size: 18px;
    transform: scale(0.7);
    transition: all 0.4s ease;
    box-shadow: 0 4px 25px rgba(240, 168, 41, 0.4);
}

.project-card:hover .project-card-play {
    transform: scale(1);
}

.project-card-play:hover {
    background: var(--color-white);
    color: var(--color-black);
}

.project-card-play i {
    margin-left: 3px;
    line-height: 1;
}

/* card body */
.project-card-body {
    padding: 24px;
    position: relative;
}

.project-card-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    width: 40px;
    height: 3px;
    background: var(--color-Primary2);
    transition: width 0.4s ease;
}

.project-card:hover .project-card-body::before {
    width: 60px;
}

.project-card-body h3 {
    font-family: "font_semibold";
    font-size: 20px;
    color: var(--color-white);
    margin-bottom: 10px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.project-card:hover .project-card-body h3 {
    color: var(--color-Primary2);
}

.project-card-body p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}


/* ========================================
   COUNTERS / SOCIAL STATS SECTION
   ======================================== */

.counters-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
}

.counters-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.counters-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.85) 50%,
        rgba(0, 0, 0, 0.92) 100%
    );
}

.counters-inner {
    position: relative;
    z-index: 2;
}

.counters-header {
    text-align: center;
    margin-bottom: 60px;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ---- single counter card ---- */
.counter-card {
    position: relative;
    padding: 40px 30px 35px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    overflow: hidden;
    transition: all 0.5s ease;
}

.counter-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    transition: height 0.5s ease;
}

.counter-card:hover::before {
    height: 5px;
}

.counter-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
}

/* platform top-border colors */
.counter-youtube::before {
    background: #ff0000;
}

.counter-tiktok::before {
    background: linear-gradient(90deg, #00f2ea, #ff0050);
}

.counter-instagram::before {
    background: linear-gradient(90deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.counter-facebook::before {
    background: #1877f2;
}

/* glow effect behind icon */
.counter-card-glow {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.12;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.counter-card:hover .counter-card-glow {
    opacity: 0.25;
}

.counter-youtube .counter-card-glow {
    background: #ff0000;
}

.counter-tiktok .counter-card-glow {
    background: #00f2ea;
}

.counter-instagram .counter-card-glow {
    background: #e1306c;
}

.counter-facebook .counter-card-glow {
    background: #1877f2;
}

/* icon */
.counter-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.counter-card:hover .counter-card-icon {
    transform: scale(1.1);
}

.counter-youtube .counter-card-icon {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border: 1px solid rgba(255, 0, 0, 0.15);
}

.counter-tiktok .counter-card-icon {
    background: rgba(0, 242, 234, 0.08);
    color: #00f2ea;
    border: 1px solid rgba(0, 242, 234, 0.15);
}

.counter-instagram .counter-card-icon {
    background: rgba(225, 48, 108, 0.08);
    color: #e1306c;
    border: 1px solid rgba(225, 48, 108, 0.15);
}

.counter-facebook .counter-card-icon {
    background: rgba(24, 119, 242, 0.1);
    color: #1877f2;
    border: 1px solid rgba(24, 119, 242, 0.15);
}

.counter-card-icon i {
    line-height: 1;
}

/* number */
.counter-card-number {
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.counter-num {
    font-family: "font_semibold";
    font-size: 44px;
    color: var(--color-white);
    line-height: 1;
    letter-spacing: -1px;
}

/* label */
.counter-card-label {
    font-family: "font_medium";
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* progress bar */
.counter-card-bar {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.counter-card-bar-fill {
    height: 100%;
    width: 0;
    transition: width 1.8s ease-out;
}

.counter-youtube .counter-card-bar-fill {
    background: #ff0000;
}

.counter-tiktok .counter-card-bar-fill {
    background: linear-gradient(90deg, #00f2ea, #ff0050);
}

.counter-instagram .counter-card-bar-fill {
    background: linear-gradient(90deg, #f09433, #dc2743, #bc1888);
}

.counter-facebook .counter-card-bar-fill {
    background: #1877f2;
}

/* entrance animation via JS (no AOS) */
.counter-card {
    opacity: 0;
    transform: translateY(40px);
}

.counter-card.counted {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.counters-header {
    opacity: 1;
}


/* ========================================
   SOCIAL ACCOUNTS PAGE
   ======================================== */

.social-accounts-page {
    position: relative;
    overflow: hidden;
    background: var(--color-black);
}

.social-accounts-page::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    background:
        linear-gradient(135deg, transparent 0%, rgba(197, 25, 30, 0.06) 55%, transparent 100%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 24px);
    pointer-events: none;
}

.social-page-header {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin-bottom: 48px;
}

.social-feature-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: stretch;
}

.social-feature-card {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 42px;
    text-decoration: none !important;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 46px), calc(100% - 46px) 100%, 0 100%);
}

.social-feature-bg,
.social-feature-overlay {
    position: absolute;
    inset: 0;
}

.social-feature-bg {
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 0.8s ease;
}

.social-feature-overlay {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.82) 65%, rgba(0, 0, 0, 0.96) 100%),
        linear-gradient(90deg, rgba(197, 25, 30, 0.35), transparent 58%);
}

.social-feature-card:hover .social-feature-bg {
    transform: scale(1.08);
}

.social-feature-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
}

.social-feature-icon {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    background: #ff0000;
    color: var(--color-white);
    font-size: 34px;
    border-radius: 50%;
    box-shadow: 0 20px 45px rgba(255, 0, 0, 0.28);
}

.social-feature-kicker {
    display: block;
    margin-bottom: 10px;
    font-family: "font_medium";
    font-size: 13px;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    color: var(--color-Primary2);
}

.social-feature-card h3 {
    margin-bottom: 16px;
    font-family: "font_semibold";
    font-size: 46px;
    line-height: 1;
    color: var(--color-white);
}

.social-feature-card p {
    max-width: 480px;
    margin-bottom: 28px;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.68);
}

.social-feature-action {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    font-family: "font_medium";
    transition: border-color 0.35s ease, background 0.35s ease;
}

.social-feature-card:hover .social-feature-action {
    background: var(--color-Primary2);
    border-color: var(--color-Primary2);
}

.social-feature-action i {
    transition: transform 0.35s ease;
}

.social-feature-card:hover .social-feature-action i {
    transform: translateX(5px);
}

.social-side-stack {
    display: grid;
    gap: 18px;
}

.social-platform-card {
    position: relative;
    overflow: hidden;
    min-height: 174px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none !important;
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.social-platform-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-platform-card:hover {
    transform: translateX(8px);
    border-color: rgba(197, 25, 30, 0.36);
}

.social-platform-card:hover::before {
    opacity: 1;
}

.social-platform-tiktok::before {
    background: linear-gradient(135deg, rgba(0, 242, 234, 0.12), rgba(255, 0, 80, 0.09));
}

.social-platform-instagram::before {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.14), rgba(131, 58, 180, 0.09));
}

.social-platform-facebook::before {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.14), transparent);
}

.social-platform-icon {
    position: relative;
    z-index: 1;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 26px;
    flex-shrink: 0;
}

.social-platform-tiktok .social-platform-icon {
    color: #00f2ea;
    background: rgba(0, 242, 234, 0.1);
}

.social-platform-instagram .social-platform-icon {
    color: #e1306c;
    background: rgba(225, 48, 108, 0.1);
}

.social-platform-facebook .social-platform-icon {
    color: #1877f2;
    background: rgba(24, 119, 242, 0.12);
}

.social-platform-card div:not(.social-platform-icon) {
    position: relative;
    z-index: 1;
}

.social-platform-card span {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-Primary2);
}

.social-platform-card h3 {
    margin-bottom: 8px;
    font-family: "font_semibold";
    font-size: 25px;
    color: var(--color-white);
}

.social-platform-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
}

.social-platform-arrow {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.22);
    transition: color 0.35s ease, transform 0.35s ease;
}

.social-platform-card:hover .social-platform-arrow {
    color: var(--color-Primary2);
    transform: translateX(4px);
}

.social-stats-strip {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.025);
}

.social-stat-item {
    padding: 26px 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.social-stat-item:last-child {
    border-right: 0;
}

.social-stat-item strong {
    display: block;
    margin-bottom: 8px;
    font-family: "font_semibold";
    font-size: 34px;
    line-height: 1;
    color: var(--color-white);
}

.social-stat-item span {
    display: block;
    font-size: 13px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.46);
}

.social-content-section {
    position: relative;
    overflow: hidden;
    background: #070707;
}

.social-content-section::before {
    content: "";
    position: absolute;
    left: -12%;
    bottom: -28%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(197, 25, 30, 0.12), transparent 68%);
    pointer-events: none;
}

.social-content-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 55px;
    align-items: start;
}

.social-content-list {
    display: grid;
    gap: 18px;
}

.social-content-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.social-content-item:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 25, 30, 0.35);
}

.social-content-item i {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-Primary2);
    color: var(--color-white);
    font-size: 22px;
    clip-path: polygon(0 0, 100% 0, 100% 78%, 78% 100%, 0 100%);
}

.social-content-item h3 {
    margin-bottom: 10px;
    font-family: "font_semibold";
    font-size: 22px;
    color: var(--color-white);
}

.social-content-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.58);
}


/* ========================================
   BLOG / NEWS SECTION
   ======================================== */

.blog-section {
    position: relative;
    background: var(--color-black);
    overflow: hidden;
}

.blog-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(225deg, rgba(240, 168, 41, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.blog-header {
    margin-bottom: 55px;
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

/* ---- shared card styles ---- */
.blog-card {
    display: block;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: all 0.5s ease;
    position: relative;
    text-decoration: none !important;
}

.blog-card:hover {
    border-color: rgba(240, 168, 41, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* card image */
.blog-card-img {
    position: relative;
    overflow: hidden;
}

.blog-card-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.blog-card:hover .blog-card-img > img {
    transform: scale(1.06);
}

/* category tag */
.blog-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 16px;
    background: var(--color-Primary2);
    color: var(--color-black);
    font-family: "font_medium";
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 0 100%);
    padding-right: 22px;
}

/* card body */
.blog-card-body {
    padding: 24px;
    position: relative;
}

.blog-card-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    width: 40px;
    height: 3px;
    background: var(--color-Primary2);
    transition: width 0.4s ease;
}

.blog-card:hover .blog-card-body::before {
    width: 70px;
}

/* meta info */
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 14px;
}

.blog-card-date,
.blog-card-read {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-date i,
.blog-card-read i {
    font-size: 12px;
    color: var(--color-Primary2);
}

/* title */
.blog-card-title {
    font-family: "font_semibold";
    font-size: 20px;
    color: var(--color-white);
    line-height: 1.4;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: var(--color-Primary2);
}

/* excerpt */
.blog-card-excerpt {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 20px;
}

/* read more link */
.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "font_medium";
    font-size: 14px;
    color: var(--color-Primary2);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap 0.3s ease;
}

.blog-card:hover .blog-card-link {
    gap: 14px;
}

.blog-card-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-link i {
    transform: translateX(3px);
}

/* ---- featured (left) card ---- */
.blog-card-featured {
    display: flex;
    flex-direction: column;
}

.blog-card-featured .blog-card-img {
    height: 100%;
    min-height: 300px;
    max-height: 550px;
    flex: 1;
}

.blog-card-featured .blog-card-body {
    padding: 30px;
}

.blog-card-featured .blog-card-body::before {
    left: 30px;
}

.blog-card-featured .blog-card-title {
    font-size: 24px;
}

/* ---- stacked (right) cards ---- */
.blog-card-stack {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.blog-card-small {
    display: flex;
    flex-direction: row;
    flex: 1;
}

.blog-card-small .blog-card-img {
    width: 220px;
    min-height: 100%;
    flex-shrink: 0;
}

.blog-card-small .blog-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 22px;
    flex: 1;
}

.blog-card-small .blog-card-body::before {
    left: 22px;
    width: 30px;
}

.blog-card-small:hover .blog-card-body::before {
    width: 50px;
}

.blog-card-small .blog-card-title {
    font-size: 17px;
    margin-bottom: 10px;
}

.blog-card-small .blog-card-meta {
    margin-bottom: 10px;
    gap: 14px;
}

.blog-card-small .blog-card-date,
.blog-card-small .blog-card-read {
    font-size: 12px;
}

.blog-card-small .blog-card-link {
    font-size: 13px;
}

/* ---- footer / view all ---- */
.blog-footer {
    text-align: center;
    margin-top: 50px;
}


/* ========================================
   CONTACT US SECTION
   ======================================== */

.contact-section {
    position: relative;
    background: #080808;
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45%;
    height: 60%;
    background: radial-gradient(ellipse at bottom left, rgba(240, 168, 41, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.contact-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        to right,
        transparent 0%,
        var(--color-Primary2) 15%,
        var(--color-Primary2) 35%,
        transparent 35%,
        transparent 38%,
        var(--color-Primary2) 38%,
        var(--color-Primary2) 42%,
        transparent 42%
    );
    opacity: 0.5;
}

.contact-header {
    text-align: center;
    margin-bottom: 55px;
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* ---- info side (left) ---- */
.contact-info-side {
    width: 38%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: none;
    transition: all 0.4s ease;
    position: relative;
}

.contact-info-card:last-of-type {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-info-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: var(--color-Primary2);
    transition: height 0.4s ease;
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

.contact-info-card:hover::after {
    height: 100%;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(240, 168, 41, 0.08);
    border: 1px solid rgba(240, 168, 41, 0.12);
    color: var(--color-Primary2);
    font-size: 18px;
    flex-shrink: 0;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
    transition: all 0.4s ease;
}

.contact-info-card:hover .contact-info-icon {
    background: rgba(240, 168, 41, 0.15);
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.contact-info-label {
    font-family: "font_medium";
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-Primary2);
}

.contact-info-value {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s ease;
    text-decoration: none !important;
    line-height: 1.4;
}

a.contact-info-value:hover {
    color: var(--color-white);
}

/* social row */
.contact-social-row {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.contact-social-link {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    font-size: 17px;
    transition: all 0.4s ease;
    text-decoration: none !important;
}

.contact-social-link:hover {
    transform: translateY(-3px);
    border-color: transparent;
}

.contact-social-yt:hover {
    background: rgba(255, 0, 0, 0.15);
    color: #ff0000;
    border-color: rgba(255, 0, 0, 0.3);
}

.contact-social-tt:hover {
    background: rgba(0, 242, 234, 0.1);
    color: #00f2ea;
    border-color: rgba(0, 242, 234, 0.3);
}

.contact-social-ig:hover {
    background: rgba(225, 48, 108, 0.1);
    color: #e1306c;
    border-color: rgba(225, 48, 108, 0.3);
}

.contact-social-fb:hover {
    background: rgba(24, 119, 242, 0.12);
    color: #1877f2;
    border-color: rgba(24, 119, 242, 0.3);
}

/* ---- form side (right) ---- */
.contact-form-side {
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-form-row {
    display: flex;
    gap: 20px;
}

.contact-form-row .contact-input-group {
    flex: 1;
}

.contact-input-group {
    position: relative;
    margin-bottom: 10px;
}

.contact-input-group input,
.contact-input-group textarea {
    width: 100%;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    font-family: "font_main";
    font-size: 16px;
    outline: none;
    border-radius: 0;
    transition: all 0.4s ease;
}

.contact-input-group textarea {
    resize: none;
    min-height: 140px;
}

.contact-input-group input::placeholder,
.contact-input-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-size: 15px;
}

.contact-input-group input:focus,
.contact-input-group textarea:focus {
    border-color: rgba(240, 168, 41, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.contact-input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-Primary2);
    transition: width 0.5s ease;
}

.contact-input-group input:focus ~ .contact-input-line,
.contact-input-group textarea:focus ~ .contact-input-line {
    width: 100%;
}

/* submit button */
.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 44px;
    background: var(--color-Primary2);
    color: var(--color-black);
    font-family: "font_medium";
    font-size: 16px;
    border: 2px solid var(--color-Primary2);
    cursor: pointer;
    transition: all 0.4s ease;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 100%, 0 100%);
    padding-right: 56px;
    align-self: flex-start;
    margin-top: 24px;
}

.contact-submit:hover {
    background: transparent;
    color: var(--color-Primary2);
}

.contact-submit i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.contact-submit:hover i {
    transform: translateX(4px);
}

/* ========================================
   INNER PAGES TITLE (PAGE HEADER)
   ======================================== */

.title-page {
    position: relative;
    width: 100%;
    min-height: 280px;
    padding: 60px 5% 60px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.title-page-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.04);
    filter: saturate(1.05) contrast(1.02);
}

.title-page-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        115deg,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.72) 40%,
        rgba(0, 0, 0, 0.45) 70%,
        rgba(0, 0, 0, 0.25) 100%
    );
}

.title-page-accent {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.title-page-accent::before {
    content: "";
    position: absolute;
    left: -15%;
    top: -30%;
    width: 60%;
    height: 260%;
    background: radial-gradient(circle at 30% 20%, rgba(240, 168, 41, 0.14), transparent 55%);
    transform: rotate(18deg);
    opacity: 0.7;
}

.title-page-accent::after {
    content: "";
    position: absolute;
    right: 18%;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(240, 168, 41, 0.55) 18%,
        rgba(240, 168, 41, 0.55) 82%,
        transparent 100%
    );
    opacity: 0.35;
}

.title-page .main-container {
    position: relative;
    z-index: 4;
    width: 100%;
}

.title-page-inner {
    max-width: 760px;
}

.title-page h2 {
    font-family: "font_semibold";
    font-size: 46px;
    color: var(--color-white);
    margin: 14px 0 10px;
    line-height: 1.1;
    letter-spacing: 0.2px;
}

.title-page-breadcrumb .breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
}

.title-page-breadcrumb .breadcrumb-item,
.title-page-breadcrumb .breadcrumb-item a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.title-page-breadcrumb .breadcrumb-item a:hover {
    color: var(--color-Primary2);
}

.title-page-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.75);
}

.title-page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(240, 168, 41, 0.6);
}
