/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    width: 100%;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding:  50px 0 140px 0;
    justify-content: center;
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
}

/* Hero Content */
.content-hero {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 950px;
    padding: 0 30px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-badge span:not(.hero-badge-line) {
    font-family: "font_medium";
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.hero-badge-line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

/* Title */
.hero-title {
    font-family: "font_bold";
    font-size: 62px;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease-out 0.7s both;
}

/* Typewriter */
.typewriter {
    color: #e8b94a;
    display: inline;
}

.typewriter-cursor {
    display: inline-block;
    color: #e8b94a;
    font-weight: 100;
    font-size: 62px;
    animation: blink 0.7s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Description */
.hero-desc {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

/* Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 38px;
    background: #e8b94a;
    color: #000 !important;
    font-family: "font_medium";
    font-size: 16px;
    border-radius: 4px;
    border: 2px solid #e8b94a;
    transition: all 0.4s ease;
    text-decoration: none !important;
}

.hero-btn-primary:hover {
    background: transparent;
    color: #e8b94a !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(232, 185, 74, 0.2);
}

.hero-btn-primary i {
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover i {
    transform: translateX(5px);
}

.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 38px;
    background: transparent;
    color: #fff !important;
    font-family: "font_medium";
    font-size: 16px;
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    text-decoration: none !important;
}

.hero-btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    animation: fadeInUp 1s ease-out 1.3s both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.hero-stat-number {
    font-family: "font_bold";
    font-size: 32px;
    color: #e8b94a;
}

.hero-stat-label {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.hero-stat-divider {
    width: 1px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.hero-scroll-indicator span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.hero-scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.hero-scroll-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 3px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================================
   ABOUT US SECTION
   ============================================ */

/* Badge */
.aboutus-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.aboutus-badge-line {
    display: inline-block;
    width: 35px;
    height: 2px;
    background: #e8b94a;
}

.aboutus-badge span:not(.aboutus-badge-line) {
    font-family: "font_medium";
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #e8b94a;
}

/* Title */
.aboutus-title {
    font-family: "font_bold";
    font-size: 40px;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 22px;
}

/* Description */
.aboutus-desc {
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 30px;
}

/* Features */
.aboutus-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.aboutus-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.aboutus-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 10px;
    background: rgba(232, 185, 74, 0.1);
    border: 1px solid rgba(232, 185, 74, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.aboutus-feature-icon i {
    font-size: 22px;
    color: #e8b94a;
    line-height: 1;
}

.aboutus-feature h4 {
    font-family: "font_medium";
    font-size: 16px;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.4;
}

.aboutus-feature p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* Button */
.aboutus-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    background: #e8b94a;
    color: #000 !important;
    font-family: "font_medium";
    font-size: 15px;
    border-radius: 4px;
    border: 2px solid #e8b94a;
    transition: all 0.4s ease;
}

.aboutus-btn:hover {
    background: transparent;
    color: #e8b94a !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 185, 74, 0.15);
}

.aboutus-btn i {
    transition: transform 0.3s ease;
    line-height: 1;
}

.aboutus-btn:hover i {
    transform: translateX(5px);
}

/* Images Layout */
.aboutus-images {
    position: relative;
    padding: 20px;
    min-height: 520px;
}

.aboutus-img-primary {
    position: relative;
    width: 75%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.aboutus-img-primary img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.aboutus-img-primary:hover img {
    transform: scale(1.05);
}

.aboutus-img-secondary {
    position: absolute;
    width: 55%;
    right: 0;
    bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    z-index: 3;
    border: 4px solid var(--color-black2);
}

.aboutus-img-secondary img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.aboutus-img-secondary:hover img {
    transform: scale(1.05);
}

/* Experience Badge */
.aboutus-experience-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    background: #e8b94a;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(232, 185, 74, 0.3);
    border: 4px solid var(--color-black2);
}

.aboutus-exp-number {
    font-family: "font_bold";
    font-size: 32px;
    color: #000;
    line-height: 1;
}

.aboutus-exp-text {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.7);
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* ============================================
   SERVICES SECTION
   ============================================ */

/* Header */
.srv-header {
    margin-bottom: 50px;
}

.srv-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.srv-main-title {
    font-family: "font_bold";
    font-size: 40px;
    line-height: 1.25;
    color: #fff;
    margin: 0;
    flex-shrink: 0;
}

.srv-header-desc {
    max-width: 420px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    text-align: right;
}

/* Grid */
.srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    gap: 20px;
}

/* Featured card spans 2 cols + 2 rows */
.srv-card--featured {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

/* Card Base */
.srv-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    min-height: 280px;
    cursor: pointer;
}

.srv-card--featured {
    min-height: 580px;
}

/* Card Image */
.srv-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.srv-card:hover .srv-card-img {
    transform: scale(1.08);
}

/* Card Overlay */
.srv-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.15) 100%
    );
    z-index: 1;
    transition: background 0.5s ease;
}

.srv-card:hover .srv-card-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.55) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

/* Card Content */
.srv-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.srv-card--featured .srv-card-content {
    padding: 40px;
}

/* Number */
.srv-card-num {
    font-family: "font_bold";
    font-size: 14px;
    color: #e8b94a;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.8;
}

/* Gold Accent Line */
.srv-card-content::before {
    content: "";
    width: 30px;
    height: 2px;
    background: #e8b94a;
    margin-bottom: 15px;
    transition: width 0.4s ease;
}

.srv-card:hover .srv-card-content::before {
    width: 60px;
}

/* Title */
.srv-card-title {
    font-family: "font_bold";
    font-size: 20px;
    color: #fff;
    margin: 0 0 0 0;
    line-height: 1.3;
    transition: transform 0.4s ease;
}

.srv-card--featured .srv-card-title {
    font-size: 26px;
}

.srv-card:hover .srv-card-title {
    transform: translateY(-5px);
}

/* Description */
.srv-card-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s ease;
}

.srv-card:hover .srv-card-desc {
    max-height: 100px;
    opacity: 1;
    margin: 12px 0 0 0;
}

.srv-card--featured .srv-card-desc {
    font-size: 15px;
}

/* Button */
.srv-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "font_medium";
    font-size: 14px;
    color: #e8b94a !important;
    background: none;
    border: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease 0.1s, margin 0.4s ease;
}

.srv-card:hover .srv-card-btn {
    max-height: 50px;
    opacity: 1;
    margin-top: 15px;
}

.srv-card-btn i {
    transition: transform 0.3s ease;
    line-height: 1;
    font-size: 14px;
}

.srv-card-btn:hover {
    color: #fff !important;
}

.srv-card-btn:hover i {
    transform: translateX(5px);
}

/* Gold corner accent on hover */
.srv-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 3px solid #e8b94a;
    border-left: 3px solid #e8b94a;
    border-radius: 10px 0 0 0;
    z-index: 3;
    transition: width 0.4s ease, height 0.4s ease;
}

.srv-card:hover::after {
    width: 60px;
    height: 60px;
}


/* ============================================
   BLOG / NEWS SECTION
   ============================================ */

/* Header */
.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 45px;
}

.blog-main-title {
    font-family: "font_bold";
    font-size: 40px;
    line-height: 1.25;
    color: #fff;
    margin: 0;
}

.blog-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Navigation Arrows */
.blog-nav-arrows {
    display: flex;
    gap: 10px;
}

.blog-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
}

.blog-nav-btn:hover {
    background: #e8b94a;
    border-color: #e8b94a;
    color: #000;
}

.blog-nav-btn i {
    line-height: 1;
}

/* View All Button */
.blog-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "font_medium";
    font-size: 14px;
    color: #e8b94a !important;
    padding: 0;
    background: none;
    border: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.blog-view-all:hover {
    color: #fff !important;
}

.blog-view-all i {
    transition: transform 0.3s ease;
    line-height: 1;
}

.blog-view-all:hover i {
    transform: translateX(5px);
}

/* Blog Card */
.blog-card {
    background: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Card Image */
.blog-card-img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    height: 230px;
}

.blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img-wrap img {
    transform: scale(1.08);
}

/* Category Tag */
.blog-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #e8b94a;
    color: #000;
    font-family: "font_medium";
    font-size: 12px;
    padding: 5px 14px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

/* Card Body */
.blog-card-body {
    padding: 25px;
}

/* Meta (Date, Author) */
.blog-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 14px;
}

.blog-card-meta span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-meta i {
    font-size: 13px;
    color: #e8b94a;
    line-height: 1;
}

/* Title */
.blog-card-title {
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.blog-card-title a {
    font-family: "font_bold";
    font-size: 18px;
    color: #fff !important;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover .blog-card-title a {
    color: #e8b94a !important;
}

/* Description */
.blog-card-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 20px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Read More Button */
.blog-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "font_medium";
    font-size: 14px;
    color: #e8b94a !important;
    padding: 0;
    background: none;
    border: none;
    position: relative;
    transition: all 0.3s ease;
}

.blog-card-btn::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #e8b94a;
    transition: width 0.3s ease;
}

.blog-card:hover .blog-card-btn::after {
    width: 100%;
}

.blog-card-btn i {
    transition: transform 0.3s ease;
    line-height: 1;
    font-size: 14px;
}

.blog-card-btn:hover i {
    transform: translateX(5px);
}

/* Owl Carousel overrides for blog */
#slider-blog .owl-stage-outer {
    overflow: visible;
}

#slider-blog .owl-item {
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

#slider-blog .owl-item.active {
    opacity: 1;
}


/* ============================================
   BLOG DETAILS PAGE
   ============================================ */

.bdet-article {
    padding-left: 0;
}

.bdet-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.bdet-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.bdet-title {
    font-family: "font_bold";
    font-size: 32px;
    line-height: 1.35;
    color: #fff;
    margin: 0 0 16px 0;
}

.bdet-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
}

.bdet-meta span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.bdet-meta i {
    color: #e8b94a;
    font-size: 14px;
    line-height: 1;
}

.bdet-desc {
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.6);
}

.bdet-desc p {
    margin: 0 0 20px 0;
}

.bdet-desc p:last-child {
    margin-bottom: 0;
}

/* Sidebar */
.bdet-sidebar {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 28px 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: sticky;
    top: 120px;
}

.bdet-sidebar-title {
    font-family: "font_bold";
    font-size: 18px;
    color: #fff;
    margin: 0 0 20px 0;
    padding-bottom: 14px;
    border-bottom: 2px solid #e8b94a;
}

.bdet-other-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.bdet-other-list li {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bdet-other-list li:last-child {
    border-bottom: none;
}

.bdet-other-list a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    transition: background 0.2s ease;
    color: inherit !important;
}

.bdet-other-list a:hover {
    background: rgba(255, 255, 255, 0.03);
}

.bdet-other-img {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 8px;
    overflow: hidden;
}

.bdet-other-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bdet-other-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bdet-other-text strong {
    font-family: "font_medium";
    font-size: 14px;
    color: #fff;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bdet-other-list a:hover .bdet-other-text strong {
    color: #e8b94a;
}

.bdet-other-text em {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-style: normal;
}

.bdet-sidebar-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: #e8b94a !important;
    font-family: "font_medium";
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid rgba(232, 185, 74, 0.35);
    width: 100%;
    justify-content: center;
    transition: all 0.3s ease;
}

.bdet-sidebar-btn:hover {
    background: #e8b94a;
    color: #000 !important;
}

.bdet-sidebar-btn i {
    font-size: 14px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.bdet-sidebar-btn:hover i {
    transform: translateX(4px);
}


/* ============================================
   CONTACT US SECTION
   ============================================ */

/* Header */
.contact-header {
    text-align: center;
    margin-bottom: 55px;
}

.contact-header .aboutus-badge {
    justify-content: center;
}

.contact-main-title {
    font-family: "font_bold";
    font-size: 40px;
    line-height: 1.25;
    color: #fff;
    margin: 0 0 15px 0;
}

.contact-header-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    max-width: 550px;
    margin: 0 auto;
}

/* ---- Contact Info Sidebar ---- */
.contact-info-wrap {
    background: #1a1a1a;
    border-radius: 14px;
    padding: 40px 35px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-info-card:first-child {
    padding-top: 0;
}

.contact-info-card:last-of-type {
    border-bottom: none;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: rgba(232, 185, 74, 0.1);
    border: 1px solid rgba(232, 185, 74, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    background: #e8b94a;
    border-color: #e8b94a;
}

.contact-info-icon i {
    font-size: 20px;
    color: #e8b94a;
    line-height: 1;
    transition: color 0.3s ease;
}

.contact-info-card:hover .contact-info-icon i {
    color: #000;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info-text h4 {
    font-family: "font_medium";
    font-size: 16px;
    color: #fff;
    margin: 0;
    line-height: 1.4;
}

.contact-info-text a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55) !important;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.contact-info-text a:hover {
    color: #e8b94a !important;
}

.contact-info-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

/* Social Links */
.contact-socials {
    display: flex;
    gap: 12px;
    padding-top: 25px;
    margin-top: auto;
}

.contact-social-link {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-social-link i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
    transition: color 0.3s ease;
}

.contact-social-link:hover {
    background: #e8b94a;
    border-color: #e8b94a;
}

.contact-social-link:hover i {
    color: #000;
}

/* ---- Contact Form ---- */
.contact-form-wrap {
    background: #1a1a1a;
    border-radius: 14px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    height: 100%;
}

.contact-input-group {
    margin-bottom: 22px;
}

.contact-input-group label {
    display: block;
    font-family: "font_medium";
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.contact-input-icon {
    position: relative;
}

.contact-input-icon i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
    z-index: 1;
    transition: color 0.3s ease;
}

.contact-textarea-icon i {
    top: 20px;
    transform: none;
}

.contact-input-icon input,
.contact-input-icon textarea {
    width: 100%;
    height: 52px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0 18px 0 48px;
    font-family: "font_main";
    font-size: 15px;
    color: #fff;
    transition: all 0.3s ease;
}

.contact-input-icon textarea {
    height: 140px;
    padding-top: 14px;
    padding-bottom: 14px;
    resize: none;
}

.contact-input-icon input::placeholder,
.contact-input-icon textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.contact-input-icon input:focus,
.contact-input-icon textarea:focus {
    outline: none;
    border-color: #e8b94a;
    background: rgba(232, 185, 74, 0.04);
    box-shadow: 0 0 0 3px rgba(232, 185, 74, 0.08);
}

.contact-input-icon input:focus + i,
.contact-input-icon textarea:focus + i,
.contact-input-icon:has(input:focus) i,
.contact-input-icon:has(textarea:focus) i {
    color: #e8b94a;
}

/* Submit Button */
.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: #e8b94a;
    color: #000 !important;
    font-family: "font_medium";
    font-size: 16px;
    border-radius: 8px;
    border: 2px solid #e8b94a;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 5px;
}

.contact-submit-btn:hover {
    background: transparent;
    color: #e8b94a !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(232, 185, 74, 0.15);
}

.contact-submit-btn i {
    transition: transform 0.3s ease;
    line-height: 1;
}

.contact-submit-btn:hover i {
    transform: translateX(5px);
}


/* ============================================
   PAGE TITLE / BANNER (Inner Pages)
   ============================================ */

.title-page {
    position: relative;
    padding: 80px 0 70px;
    background: #111;
    overflow: hidden;
}

/* Dark gradient overlay */
.title-page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(20, 20, 20, 0.9) 100%
    );
    z-index: 1;
}

/* Diagonal grid pattern */
.title-page-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(232, 185, 74, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232, 185, 74, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
}

/* Content */
.title-page .main-container {
    position: relative;
    z-index: 3;
}

.title-page-content {
    text-align: center;
}

.title-page-content h1 {
    font-family: "font_bold";
    font-size: 48px;
    color: #fff;
    margin: 0 0 18px 0;
    line-height: 1.2;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out both;
}

/* Breadcrumb */
.title-page-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-page-breadcrumb a {
    font-family: "font_medium";
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5) !important;
    transition: color 0.3s ease;
}

.title-page-breadcrumb a:hover {
    color: #e8b94a !important;
}

.title-page-sep {
    color: rgba(255, 255, 255, 0.25);
    font-size: 11px;
    display: flex;
    align-items: center;
}

.title-page-sep i {
    line-height: 1;
}

.title-page-current {
    font-family: "font_medium";
    font-size: 15px;
    color: #e8b94a;
}

/* Bottom gold accent line */
.title-page-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #e8b94a 30%,
        #e8b94a 70%,
        transparent 100%
    );
    z-index: 4;
    opacity: 0.6;
}


/* ============================================
   VISION, MISSION & VALUES
   ============================================ */

.vmv-header {
    text-align: center;
    margin-bottom: 50px;
}

.vmv-header .aboutus-badge {
    justify-content: center;
}

.vmv-main-title {
    font-family: "font_bold";
    font-size: 40px;
    line-height: 1.25;
    color: #fff;
    margin: 0;
}

/* Grid */
.vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: stretch;
}

/* Card */
.vmv-card {
    background: #1a1a1a;
    border-radius: 14px;
    padding: 40px 35px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.vmv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Highlight card (Mission) */
.vmv-card--highlight {
    background: linear-gradient(
        160deg,
        #1f1a0e 0%,
        #1a1a1a 40%
    );
    border-color: rgba(232, 185, 74, 0.15);
}

/* Corner glow on highlight */
.vmv-card--highlight::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(232, 185, 74, 0.12) 0%, transparent 70%);
    z-index: 0;
}

/* Icon */
.vmv-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: rgba(232, 185, 74, 0.08);
    border: 1px solid rgba(232, 185, 74, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.vmv-card:hover .vmv-card-icon {
    background: #e8b94a;
    border-color: #e8b94a;
}

.vmv-card-icon i {
    font-size: 26px;
    color: #e8b94a;
    line-height: 1;
    transition: all 0.4s ease;
}

.vmv-card:hover .vmv-card-icon i {
    color: #000;
    transform: scale(1.1);
}

/* Number */
.vmv-card-number {
    font-family: "font_bold";
    font-size: 60px;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
    z-index: 0;
    user-select: none;
}

/* Title */
.vmv-card-title {
    font-family: "font_bold";
    font-size: 22px;
    color: #fff;
    margin: 0;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

/* Divider line */
.vmv-card-line {
    width: 35px;
    height: 2px;
    background: #e8b94a;
    margin: 18px 0;
    transition: width 0.4s ease;
    position: relative;
    z-index: 1;
}

.vmv-card:hover .vmv-card-line {
    width: 60px;
}

/* Description */
.vmv-card-desc {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Values list */
.vmv-values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.vmv-values-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s ease;
}

.vmv-values-list li:hover {
    color: rgba(255, 255, 255, 0.85);
}

.vmv-values-list li i {
    font-size: 14px;
    color: #e8b94a;
    line-height: 1;
    flex-shrink: 0;
}


/* ============================================
   SERVICES PAGE - Detailed Cards
   ============================================ */

/* Header */
.srvp-header {
    text-align: center;
    margin-bottom: 50px;
}

.srvp-header .aboutus-badge {
    justify-content: center;
}

.srvp-title {
    font-family: "font_bold";
    font-size: 40px;
    line-height: 1.25;
    color: #fff;
    margin: 0 0 15px 0;
}

.srvp-header-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 560px;
    margin: 0 auto;
}

/* Card */
.srvp-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.srvp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    border-color: rgba(232, 185, 74, 0.15);
}

/* Card Image */
.srvp-card-img {
    position: relative;
    height: 290px;
    overflow: hidden;
}

.srvp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.srvp-card:hover .srvp-card-img img {
    transform: scale(1.07);
}

/* Icon overlay on image */
.srvp-card-icon-wrap {
    position: absolute;
    bottom: 10px;
    right: 25px;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #e8b94a;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(232, 185, 74, 0.25);
    z-index: 2;
    transition: transform 0.3s ease;
}

.srvp-card:hover .srvp-card-icon-wrap {
    transform: translateY(-4px);
}

.srvp-card-icon-wrap i {
    font-size: 22px;
    color: #000;
    line-height: 1;
}

/* Card Body */
.srvp-card-body {
    padding: 35px 28px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.srvp-card-body h3 {
    font-family: "font_bold";
    font-size: 20px;
    color: #fff;
    margin: 0 0 12px 0;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.srvp-card:hover .srvp-card-body h3 {
    color: #e8b94a;
}

.srvp-card-body > p {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 18px 0;
}

/* Features list */
.srvp-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 22px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.srvp-card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

.srvp-card-features li i {
    font-size: 13px;
    color: #e8b94a;
    line-height: 1;
    flex-shrink: 0;
}

/* Button */
.srvp-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: #e8b94a !important;
    font-family: "font_medium";
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid rgba(232, 185, 74, 0.3);
    transition: all 0.3s ease;
    margin-top: auto;
    width: fit-content;
}

.srvp-card-btn:hover {
    background: #e8b94a;
    color: #000 !important;
    border-color: #e8b94a;
}

.srvp-card-btn i {
    transition: transform 0.3s ease;
    line-height: 1;
    font-size: 14px;
}

.srvp-card-btn:hover i {
    transform: translateX(4px);
}


/* ============================================
   SERVICE DETAILS PAGE
   ============================================ */

.svcd-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.svcd-img-wrap img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.svcd-img-wrap:hover img {
    transform: scale(1.03);
}

.svcd-content {
    padding-left: 40px;
}

.svcd-title {
    font-family: "font_bold";
    font-size: 38px;
    line-height: 1.25;
    color: #fff;
    margin: 0 0 18px 0;
}

.svcd-line {
    width: 50px;
    height: 3px;
    background: #e8b94a;
    margin-bottom: 25px;
}

.svcd-desc {
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 18px 0;
}

.svcd-desc:last-of-type {
    margin-bottom: 30px;
}

.svcd-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #e8b94a;
    color: #000 !important;
    font-family: "font_medium";
    font-size: 16px;
    border-radius: 8px;
    border: 2px solid #e8b94a;
    transition: all 0.4s ease;
}

.svcd-btn:hover {
    background: transparent;
    color: #e8b94a !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(232, 185, 74, 0.2);
}

.svcd-btn i {
    transition: transform 0.3s ease;
    line-height: 1;
}

.svcd-btn:hover i {
    transform: translateX(5px);
}


/* ============================================
   ORDER SERVICE MODAL
   ============================================ */

.order-service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.order-service-modal.active {
    opacity: 1;
    visibility: visible;
}

.order-service-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.order-service-modal-box {
    position: relative;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    background: #1a1a1a;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    padding: 40px 35px 35px;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.35s ease;
}

.order-service-modal.active .order-service-modal-box {
    transform: scale(1) translateY(0);
}

.order-service-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.order-service-modal-close:hover {
    background: rgba(232, 185, 74, 0.15);
    color: #e8b94a;
}

.order-service-modal-close i {
    font-size: 16px;
    line-height: 1;
}

.order-service-modal-header {
    margin-bottom: 28px;
    padding-right: 40px;
}

.order-service-modal-header .aboutus-badge {
    margin-bottom: 12px;
}

.order-service-modal-header h2 {
    font-family: "font_bold";
    font-size: 26px;
    color: #fff;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.order-service-modal-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.6;
}

.order-service-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.order-service-field {
    margin-bottom: 20px;
}

.order-service-field label {
    display: block;
    font-family: "font_medium";
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.order-service-field label span {
    color: #e8b94a;
}

.order-service-input-wrap {
    position: relative;
}

.order-service-input-wrap i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1;
    z-index: 1;
    transition: color 0.3s ease;
}

.order-service-textarea-wrap i {
    top: 18px;
    transform: none;
}

.order-service-input-wrap input,
.order-service-input-wrap textarea {
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0 16px 0 46px;
    font-family: "font_main";
    font-size: 15px;
    color: #fff;
    transition: all 0.3s ease;
}

.order-service-input-wrap input:focus,
.order-service-input-wrap textarea:focus {
    outline: none;
    border-color: #e8b94a;
    background: rgba(232, 185, 74, 0.04);
    box-shadow: 0 0 0 3px rgba(232, 185, 74, 0.08);
}

.order-service-input-wrap:focus-within i {
    color: #e8b94a;
}

.order-service-input-wrap input::placeholder,
.order-service-input-wrap textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.order-service-input-wrap input[readonly] {
    cursor: default;
    opacity: 0.85;
}

.order-service-input-wrap textarea {
    height: 110px;
    padding-top: 14px;
    padding-bottom: 14px;
    resize: none;
}

.order-service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.order-service-modal-actions {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.order-service-btn {
    flex: 1;
    height: 50px;
    border-radius: 10px;
    font-family: "font_medium";
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
}

.order-service-btn-cancel {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.order-service-btn-cancel:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.order-service-btn-submit {
    background: #e8b94a;
    color: #000;
}

.order-service-btn-submit:hover {
    background: #d4a63d;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 185, 74, 0.25);
}

.order-service-btn-submit i {
    font-size: 15px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.order-service-btn-submit:hover i {
    transform: translateX(3px);
}

.bdet-desc p {
    color: var(--color-white);
}