:root {
    --primary-color: #ecac32;
    --light-color: rgb(255 255 255);
    --secondary-color: rgb(30 40 54);
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --dark-color: #343a40;
}
body {
    scroll-behavior: smooth;
    padding-top: 0;
}


.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 40px rgba(30, 40, 54, 0.08);
    border-bottom-color: rgba(30, 40, 54, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 0;
    gap: 3rem;
}

.logo-section {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
}

.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(30, 40, 54, 0.1));
}

.logo-link:hover .logo-img {
    transform: scale(1.03);
    filter: drop-shadow(0 4px 8px rgba(236, 172, 50, 0.15));
}

.desktop-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 3rem;
}

.nav-link {
    position: relative;
    color: var(--secondary-color, #1e2836);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    padding: 0.625rem 0;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--primary-color, #ecac32);
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color, #ecac32);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(50%) scaleX(1);
    width: 100%;
}

.header-cta {
    flex-shrink: 0;
}

.btn-consult {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, var(--primary-color, #ecac32) 0%, #d49a2a 100%);
    color: #fff;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(236, 172, 50, 0.25);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-consult::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-consult:hover::before {
    left: 100%;
}

.btn-consult:hover {
    background: linear-gradient(135deg, var(--secondary-color, #1e2836) 0%, #0f172a 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(30, 40, 54, 0.3);
}

.btn-consult i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.btn-consult:hover i {
    transform: translateX(-4px);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: rgba(30, 40, 54, 0.03);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(236, 172, 50, 0.08);
}

.menu-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--secondary-color, #1e2836);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.menu-toggle:hover .menu-line {
    background: var(--primary-color, #ecac32);
}

.menu-toggle.active {
    background: rgba(236, 172, 50, 0.1);
}

.menu-toggle.active .menu-line:nth-child(1) {
    transform: translateY(7px) rotate(-45deg);
    width: 22px;
}

.menu-toggle.active .menu-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active .menu-line:nth-child(3) {
    transform: translateY(-7px) rotate(45deg);
    width: 22px;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .nav-list {
        gap: 2rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .btn-consult {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 991.98px) {
    body {
        padding-top: 0;
    }

    .header-inner {
        padding: 0.75rem 0;
        gap: 1rem;
    }

    .logo-img {
        height: 44px;
    }
}

@media (max-width: 575.98px) {
    body {
        padding-top: 0;
    }

    .logo-img {
        height: 40px;
    }
}




.video-section {
    padding: 8rem 0;
    background: #fcfdfe;
    position: relative;
    overflow: hidden;
}

.v-deco-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.v-shape {
    position: absolute;
    opacity: 0.05;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
}

.v-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    transform: rotate(15deg);
}

.v-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -100px;
    transform: rotate(-15deg);
    border-style: dashed;
}

.video-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

/* Architectural Lines Decoration */
.arch-line {
    position: absolute;
    background: rgba(236, 172, 50, 0.2);
    z-index: 1;
}

.line-h {
    width: 120%;
    height: 1px;
    top: 15%;
    left: -10%;
}

.line-v {
    width: 1px;
    height: 130%;
    top: -15%;
    right: 10%;
}

.video-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 50px 100px -20px rgba(15, 23, 42, 0.2), 0 0 0 1px rgba(15, 23, 42, 0.05);
    border: 12px solid #fff;
    background: #fff;
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.video-wrapper:hover {
    transform: translateY(-10px) scale(1.01);
}

.video-placeholder {
    position: relative;
    cursor: pointer;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.video-placeholder:hover img {
    transform: scale(1.08);
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(15, 23, 42, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.play-btn-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn-ring {
    position: absolute;
    width: 110px;
    height: 110px;
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    animation: ring-pulse 1.5s ease-out infinite;
    z-index: 1;
}

.play-btn-ring.ring-2 {
    animation-delay: 0.75s;
}

@keyframes ring-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
        border-width: 3px;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
        border-width: 1px;
    }
}

.play-button {
    width: 90px;
    height: 90px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 0 0 0 rgba(236, 172, 50, 0.4);
    animation: pulse-play 2s infinite;
    z-index: 2;
    transition: all 0.3s ease;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
    background: #fff;
    color: var(--primary-color);
}

.video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: #fff;
    transform: translateY(10px);
    opacity: 0.9;
    transition: all 0.5s ease;
    z-index: 3;
}

.creative-video:hover .video-info {
    transform: translateY(0);
    opacity: 1;
}

/*  Video Styles */
.video-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.video-play-overlay.hidden {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(15, 23, 42, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: opacity 0.5s ease;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Wave Ring */
.wave-ring,
.wave-ring-2 {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.wave-ring {
    animation: wave 2s ease-out infinite;
}

.wave-ring-2 {
    animation: wave 2s ease-out infinite 0.6s;
}

@keyframes wave {
    0% {
        transform: scale(1);
        opacity: 0.6;
        border-color: rgba(255, 255, 255, 0.5);
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
        border-color: rgba(255, 255, 255, 0.1);
    }
}

/* Pulse Glow Effect */
.pulse-glow {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(236, 172, 50, 0.4);
    }

    50% {
        box-shadow: 0 0 30px 10px rgba(236, 172, 50, 0.2);
    }
}

/* Playing State */
.video-wrapper.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

.video-wrapper.playing .video-info {
    opacity: 0;
    transform: translateY(20px);
}

.video-wrapper:hover.playing .video-info {
    opacity: 1;
    transform: translateY(0);
}

.video-wrapper:hover.playing .video-overlay {
    opacity: 0.3;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.video-info h3 {
    margin: 0 0 0.5rem;
    font-size: 1.8rem;
    font-weight: 800;
}

.video-info p {
    margin: 0;
    opacity: 0.9;
    font-size: 1.1rem;
}

@keyframes pulse-play {
    0% {
        box-shadow: 0 0 0 0 rgba(236, 172, 50, 0.4);
    }

    70% {
        box-shadow: 0 0 0 30px rgba(236, 172, 50, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(236, 172, 50, 0);
    }
}

@media (max-width: 767px) {
    .video-container {
        padding: 0.5rem;
    }

    .video-wrapper {
        border-width: 4px;
        border-radius: 16px;
    }

    .video-wrapper:hover {
        transform: none;
    }

    .play-btn-ring {
        width: 60px;
        height: 60px;
        border-width: 2px;
        animation: none;
    }

    .play-btn-ring.ring-2 {
        display: none;
    }

    .play-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        animation: none;
        box-shadow: none;
    }

    .video-info {
        display: none;
    }

    .arch-line {
        display: none;
    }

    .video-play-overlay {
        transform: translate(-50%, -50%) scale(0.8);
    }
}

/* Services */
.services-section {
    padding: 6rem 0;
    background: #fff;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 40, 54, 0.1), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(236, 172, 50, 0.1);
    color: var(--primary-color, #ecac32);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color, #1e2836);
    margin-bottom: 1rem;
}

.section-title .highlight {
    color: var(--primary-color, #ecac32);
}

.section-description {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}

.services-cta .cta-box a:hover {
    background: #ecac32;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 172, 50, 0.3);
}

@media (max-width: 991.98px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-hero h1 {
        font-size: 1.75rem;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
    }

    .cta-box a {
        width: 100%;
        justify-content: center;
    }
}

/* Services */
.services-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: #fff;
    border: 1px solid rgba(30, 40, 54, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color, #ecac32);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(30, 40, 54, 0.12);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--secondary-color, #1e2836) 0%, #0f172a 100%);
    color: #fff;
    border-color: transparent;
}

.service-card.featured .service-title {
    color: #fff;
}

.service-card.featured .service-desc {
    color: rgba(255, 255, 255, 0.8);
}

.service-card.featured .service-link {
    color: var(--primary-color, #ecac32);
}

.service-card.featured .service-image {
    border-color: rgba(236, 172, 50, 0.3);
}

/* Service Image */
.service-image {
    position: relative;
    width: calc(100% + 4rem);
    height: 220px;
    overflow: hidden;
    margin: -2rem -2rem 1.5rem -2rem;
    transition: all 0.3s ease;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    z-index: 2;
    pointer-events: none;
}

.service-card:hover .service-image::after {
    animation: image-shimmer 0.8s ease forwards;
}

@keyframes image-shimmer {
    100% {
        left: 150%;
    }
}

.service-card:hover .service-image {
    border-color: var(--primary-color, #ecac32);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

@media (max-width: 575.98px) {
    .service-image {
        width: calc(100% + 3rem);
        margin: -1.5rem -1.5rem 1.25rem -1.5rem;
        height: 180px;
    }
}

/* Service Content */
.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color, #1e2836);
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color, #ecac32);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 0.75rem;
}

.service-link i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.service-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card-premium:hover .service-title {
    color: #000;
}

.service-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 2.5rem;
}

.service-link-premium {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.service-link-premium i {
    font-size: 1.5rem;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-link-premium:hover {
    gap: 1.5rem;
    color: var(--secondary-color);
}

.service-link-premium:hover i {
    transform: translateX(-5px);
}

@media (max-width: 991px) {
    .services-asymmetric-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .s-card-wrapper {
        transform: none !important;
    }

    .service-card-premium {
        padding: 2rem;
    }
}

.projects-section {
    padding: 6rem 0;
    background: #fff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    border-radius: 20px;
    overflow: hidden;
    background: #f8fafc;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.project-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--primary-color);
    color: #fff;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(236, 172, 50, 0.3);
}

.project-info {
    padding: 1.5rem;
}

.project-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.project-location {
    font-size: 0.875rem;
    color: #ecac32;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.project-location i {
    font-size: 0.8rem;
}

.project-description {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* About */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 40, 54, 0.1), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(30, 40, 54, 0.15);
}

.about-image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 3px solid var(--primary-color, #ecac32);
    border-radius: 20px;
    z-index: -1;
}

.about-image-frame::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 180px;
    height: 180px;
    background: var(--primary-color, #ecac32);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #fff;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(30, 40, 54, 0.12);
    text-align: center;
    min-width: 140px;
}

.experience-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color, #ecac32);
    line-height: 1;
    display: block;
}

.experience-text {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.about-content {
    padding: 1rem 0;
}

.about-subtitle {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(236, 172, 50, 0.1);
    color: var(--primary-color, #ecac32);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color, #1e2836);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-title .highlight {
    color: var(--primary-color, #ecac32);
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(236, 172, 50, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon i {
    font-size: 1.25rem;
    color: var(--primary-color, #ecac32);
}

.about-feature-text {
    font-weight: 600;
    color: var(--secondary-color, #1e2836);
}

/* Why Choose us */
.why-us-section {
    padding: 7rem 0;
    background: linear-gradient(180deg, #fafbfc 0%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(236, 172, 50, 0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation: float 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(236, 172, 50, 0.05) 0%, transparent 70%);
    top: 50%;
    left: 30%;
    animation: float 18s ease-in-out infinite;
    animation-delay: -5s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(5deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-us-content .section-subtitle {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(236, 172, 50, 0.1) 0%, rgba(236, 172, 50, 0.05) 100%);
    color: var(--primary-color, #ecac32);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(236, 172, 50, 0.15);
}

.why-us-content .section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.why-us-content .section-title .highlight {
    color: var(--primary-color, #ecac32);
    position: relative;
}

.why-us-content .section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, rgba(236, 172, 50, 0.3) 0%, transparent 100%);
    border-radius: 4px;
    z-index: -1;
}

.title-line {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    color: #64748b;
    margin-top: 0.5rem;
}

.why-us-text {
    font-size: 1.1rem;
    line-height: 2;
    color: #64748b;
    margin-bottom: 2.5rem;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.why-feature:hover {
    transform: translateX(-8px);
    box-shadow: 0 8px 30px rgba(236, 172, 50, 0.12);
}

.why-feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(236, 172, 50, 0.1) 0%, rgba(236, 172, 50, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(236, 172, 50, 0.1);
}

.why-feature-icon.pulse {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(236, 172, 50, 0.3);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(236, 172, 50, 0);
    }
}

.why-feature-icon i {
    font-size: 1.625rem;
    color: var(--primary-color, #ecac32);
}

.why-feature-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.375rem;
}

.why-feature-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

.why-us-stats {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-orbit {
    position: relative;
    width: 420px;
    height: 420px;
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color, #ecac32) 0%, #d49a2a 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 40px rgba(236, 172, 50, 0.4);
    z-index: 10;
}

.orbit-center i {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.orbit-center span {
    font-size: 0.875rem;
    font-weight: 700;
}

.stat-orb {
    position: absolute;
    width: 140px;
    height: 140px;
    z-index: 5;
}

.orb-inner {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(236, 172, 50, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.stat-orb:hover .orb-inner {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(236, 172, 50, 0.2);
    border-color: rgba(236, 172, 50, 0.3);
}

.orb-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(236, 172, 50, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.stat-orb:hover .orb-glow {
    opacity: 1;
}

.orb-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(236, 172, 50, 0.1) 0%, rgba(236, 172, 50, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.orb-icon i {
    font-size: 1.5rem;
    color: var(--primary-color, #ecac32);
}

.orb-content {
    text-align: center;
}

.orb-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.orb-suffix {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color, #ecac32);
}

.orb-label {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 0.25rem;
    font-weight: 500;
}

.orb-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: bob1 4s ease-in-out infinite;
}

.orb-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation: bob2 4s ease-in-out infinite;
    animation-delay: 1s;
}

.orb-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: bob3 4s ease-in-out infinite;
    animation-delay: 2s;
}

.orb-4 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation: bob4 4s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes bob1 {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

@keyframes bob2 {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-50%) translateX(15px);
    }
}

@keyframes bob3 {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(15px);
    }
}

@keyframes bob4 {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-50%) translateX(-15px);
    }
}

.stat-orb.featured .orb-inner {
    background: linear-gradient(135deg, #fff 0%, #fff8f5 100%);
    border-color: rgba(236, 172, 50, 0.3);
}

.stat-orb.featured .orb-number,
.stat-orb.featured .orb-suffix {
    color: var(--primary-color, #ecac32);
}

.orbit-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.connection-line {
    fill: none;
    stroke: rgba(236, 172, 50, 0.15);
    stroke-width: 2;
    stroke-dasharray: 8, 8;
    animation: dash 20s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -200;
    }
}


/* Footer */
.main-footer {
    position: relative;
    color: #fff;
    margin-top: 0;
    overflow: hidden;
    background: url('../imgs/bg.jpeg') center/cover no-repeat;
}

/* Top gold border */
.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color, #ecac32), transparent);
    z-index: 3;
}

.footer-content {
    padding: 5rem 0 3rem;
    position: relative;
    z-index: 2;
}

.footer-overlay,
.footer-bg-image {
    display: none !important;
}

.pagination-wrapper-premium {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.pagination-wrapper-premium .pagination {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-wrapper-premium .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.pagination-wrapper-premium .page-item.active .page-link {
    background: linear-gradient(135deg, #ecac32 0%, #d49a2a 100%);
    border-color: #ecac32;
    color: #fff;
}

.pagination-wrapper-premium .page-item:hover .page-link {
    background: #f8fafc;
    border-color: #ecac32;
    color: #ecac32;
}

.pagination-wrapper-premium .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-wrapper-premium .page-item:first-child .page-link,
.pagination-wrapper-premium .page-item:last-child .page-link {
    padding: 0 1rem;
}


/* Responsive */

@media (max-width: 1199.98px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: span 2;
        padding-right: 0;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-grid {
        gap: 3rem;
    }
}

@media (max-width: 991.98px) {
    .about-section {
        padding: 4rem 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        height: 400px;
    }

    .experience-badge {
        right: 20px;
        bottom: 20px;
    }

    .about-title {
        font-size: 2rem;
    }

    .hero-section {
        min-height: 100vh;
        padding-top: 76px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        text-align: right;
        order: 1;
        align-items: flex-start;
    }

    .hero-visual {
        order: 2;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-stats {
        justify-content: flex-start;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 0.5rem 0.25rem;
        font-size: 0.7rem;
        justify-content: center;
        text-align: center;
    }

    .hero-image-wrapper {
        max-width: 450px;
    }

    .floating-card.card-1 {
        right: 10px;
    }

    .floating-card.card-2 {
        left: 10px;
    }

    .services-section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}



@media (max-width: 767.98px) {
    .footer-top-wave {
        top: -49px;
        height: 50px;
    }

    .footer-content {
        padding: 2.5rem 0 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-title {
        text-align: center;
    }

    .footer-title::after {
        right: 50%;
        transform: translateX(50%);
    }

    .footer-menu {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-cta {
        display: flex;
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .about-section {
        padding: 3rem 0;
    }

    .about-image {
        height: 320px;
    }

    .experience-badge {
        padding: 1rem;
        min-width: 120px;
    }

    .experience-number {
        font-size: 2rem;
    }

    .about-title {
        font-size: 1.625rem;
    }

    .about-feature-icon {
        width: 40px;
        height: 40px;
    }

    .about-feature-icon i {
        font-size: 1rem;
    }

    .hero-section {
        min-height: auto;
        padding-top: 72px;
        padding-bottom: 3rem;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .services-section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 1.625rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}



/* Responsive */
@media (max-width: 991.98px) {
    .why-us-section {
        padding: 4rem 0;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-us-content {
        text-align: center;
    }

    .why-us-features {
        max-width: 500px;
        margin: 0 auto;
    }

    .why-feature {
        text-align: right;
    }

    .stats-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .why-us-section {
        padding: 3rem 0;
    }

    .why-us-content .section-title {
        font-size: 1.75rem;
    }

    .why-us-text {
        font-size: 1rem;
    }

    .stats-card {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .stat-box {
        padding: 1.25rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stats-orbit {
        width: 320px;
        height: 320px;
    }

    .orbit-center {
        width: 80px;
        height: 80px;
    }

    .orbit-center i {
        font-size: 1.5rem;
    }

    .stat-orb {
        width: 100px;
        height: 100px;
    }

    .orb-icon {
        width: 32px;
        height: 32px;
    }

    .orb-icon i {
        font-size: 1.125rem;
    }

    .orb-number {
        font-size: 1.25rem;
    }

    .orb-suffix {
        font-size: 1rem;
    }

    .orb-label {
        font-size: 0.65rem;
    }

    .why-us-content .section-title {
        font-size: 2rem;
    }

    .title-line {
        font-size: 1.25rem;
    }

    .shape {
        display: none;
    }
}

@media (max-width: 400px) {
    .stats-orbit {
        width: 280px;
        height: 280px;
    }

    .stat-orb {
        width: 85px;
        height: 85px;
    }
}

/* Page Hero */
.page-hero {
    background-image: url('../imgs/bg.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 8rem 0 6rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero .hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.page-hero .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex-wrap: wrap;
}

.page-hero .breadcrumb-item a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    font-weight: 600;
}

.page-hero .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.page-hero .breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

.page-hero .breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    padding-right: 0.75rem;
    color: var(--secondary-color);
}

.page-hero .hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.page-hero .hero-title .highlight {
    color: var(--primary-color);
}

.page-hero .hero-subtitle {
    font-size: 1.15rem;
    color: var(--secondary-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 600;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 6rem 0 4rem;
    }

    .page-hero .hero-title {
        font-size: 2.2rem;
    }

    .page-hero .hero-subtitle {
        font-size: 1.1rem;
    }

}


/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(30, 40, 54, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 40px rgba(30, 40, 54, 0.08);
    border-bottom-color: rgba(30, 40, 54, 0.1);
}

body {
    scroll-behavior: smooth;
    padding-top: 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 0;
    gap: 3rem;
}

.logo-section {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
}

.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(30, 40, 54, 0.1));
}

.logo-link:hover .logo-img {
    transform: scale(1.03);
    filter: drop-shadow(0 4px 8px rgba(236, 172, 50, 0.15));
}

.desktop-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 3rem;
}

.nav-link {
    position: relative;
    color: var(--secondary-color, #1e2836);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    padding: 0.625rem 0;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--primary-color, #ecac32);
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color, #ecac32);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(50%) scaleX(1);
    width: 100%;
}

.header-cta {
    flex-shrink: 0;
}

.btn-consult {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, var(--primary-color, #ecac32) 0%, #d49a2a 100%);
    color: #fff;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(236, 172, 50, 0.25);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-consult::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-consult:hover::before {
    left: 100%;
}

.btn-consult:hover {
    background: linear-gradient(135deg, var(--secondary-color, #1e2836) 0%, #0f172a 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(30, 40, 54, 0.3);
}

.btn-consult i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.btn-consult:hover i {
    transform: translateX(-4px);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: rgba(30, 40, 54, 0.03);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(236, 172, 50, 0.08);
}

.menu-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--secondary-color, #1e2836);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.menu-toggle:hover .menu-line {
    background: var(--primary-color, #ecac32);
}

.menu-toggle.active {
    background: rgba(236, 172, 50, 0.1);
}

.menu-toggle.active .menu-line:nth-child(1) {
    transform: translateY(7px) rotate(-45deg);
    width: 22px;
}

.menu-toggle.active .menu-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active .menu-line:nth-child(3) {
    transform: translateY(-7px) rotate(45deg);
    width: 22px;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .nav-list {
        gap: 2rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .btn-consult {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 991.98px) {
    body {
        padding-top: 0;
    }

    .header-inner {
        padding: 0.75rem 0;
        gap: 1rem;
    }

    .logo-img {
        height: 44px;
    }
}

@media (max-width: 575.98px) {
    body {
        padding-top: 0;
    }

    .logo-img {
        height: 40px;
    }
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: var(--light-color, #fff);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 0.5rem 1.5rem 1.5rem;
}

.sidebar.active {
    right: 0;
}

.close-btn {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-color, #1e2836);
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--primary-color, var(--primary-color));
}

.sidebar-logo {
    text-align: center;
    padding: 0.5rem 0 0.75rem;
    border-bottom: 1px solid #d49a2aef;
    margin-bottom: 0.75rem;
}

.sidebar-logo-img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.sidebar-nav {
    flex: 1;
    overflow-y: auto;
}

.sidebar-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-nav-list li {
    margin-bottom: 0.15rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.75rem;
    color: var(--secondary-color, #1e2836);
    text-decoration: none;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.sidebar-link i {
    font-size: 1.1rem;
    color: #d49a2aef;
}

.sidebar-link:hover,
.sidebar-link.active {
    background: rgba(212, 154, 46, 0.1);
    color: #d49a2aef;
}

.sidebar-social {
    padding-top: 0.75rem;
    border-top: 1px solid #d49a2aef;
    margin-top: auto;
}

.social-label {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

#sidebar .sidebar-social .social-icons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

#sidebar .sidebar-social .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    border-radius: 50%;
    aspect-ratio: 1;
    flex-shrink: 0;
    background: #f8f9fa;
    color: var(--secondary-color, #1e2836);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
}

#sidebar .sidebar-social .social-link:hover {
    background: var(--primary-color, #ecac32);
    color: #fff;
    transform: translateY(-2px);
}

.sidebar-nav::-webkit-scrollbar {
    width: 4px;
}

.sidebar-nav::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-nav::-webkit-scrollbar-thumb {
    background: #dee2e6;
    border-radius: 2px;
}

.sidebar-nav::-webkit-scrollbar-thumb:hover {
    background: #adb5bd;
}

/* Hero */
.hero-slider {
    width: 100%;
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 10s ease-in-out;
}

.slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.2) 50%, transparent 80%);
    z-index: 2;
    pointer-events: none;
}

.swiper-slide-active .slide-bg img {
    transform: scale(1);
}

.slide-content-wrapper {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content-inner {
    max-width: 900px;
    position: relative;
    padding-right: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(236, 172, 50, 0.25);
    border: 1.5px solid rgba(236, 172, 50, 0.5);
    border-radius: 100px;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
    margin-bottom: 2.5rem;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-shadow: 0 15px 45px rgba(0, 0, 0, 0.5), 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.8;
    margin-bottom: 4rem;
    max-width: 700px;
    color: #fff !important;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    transition: all 0.25s ease;
}

.btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.25s ease;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.35) !important;
    opacity: 1 !important;
    transition: all 0.4s ease;
}

.swiper-pagination-bullet-active {
    width: 50px;
    border-radius: 10px;
    background: var(--primary-color) !important;
}

.swiper-btn {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.swiper-btn-prev {
    right: 20px;
    transform: translateY(-50%);
}

.swiper-btn-next {
    left: 20px;
    transform: translateY(-50%);
}

.swiper-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-color);
    transform: scale(0);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: 50%;
    z-index: -1;
}

.swiper-btn:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(236, 172, 50, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.swiper-btn:hover::before {
    transform: scale(1);
}

.swiper-btn i {
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.swiper-btn-next:hover i {
    transform: translateX(-5px);
}

.swiper-btn-prev:hover i {
    transform: translateX(5px);
}

.swiper-pagination {
    bottom: 40px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    text-align: center !important;
}

@media (max-width: 991px) {
    .hero-content-inner {
        padding-right: 0;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}

@media (max-width: 575px) {
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }

    .slide-content-wrapper {
        padding-top: 0;
        padding-bottom: 40px;
        align-items: center;
    }

    .hero-content-inner {
        max-width: 100%;
        padding: 0 1rem;
        text-align: center;
        text-align: right;
    }

    .hero-badge {
        padding: 0.4rem 0.875rem;
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }

    .hero-badge i {
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        line-height: 1.35;
    }

    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
    }

    .swiper-btn {
        display: none !important;
    }

    .swiper-pagination {
        bottom: 15px !important;
    }

    .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
    }

    .swiper-pagination-bullet-active {
        width: 20px;
    }
}

/* Services */
.services-section {
    padding: 6rem 0;
    background: #fff;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 40, 54, 0.1), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(236, 172, 50, 0.1);
    color: var(--primary-color, #ecac32);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color, #1e2836);
    margin-bottom: 1rem;
}

.section-title .highlight {
    color: var(--primary-color, #ecac32);
}

.section-description {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}

/* Services */
.services-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: #fff;
    border: 1px solid rgba(30, 40, 54, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color, #ecac32);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(30, 40, 54, 0.12);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--secondary-color, #1e2836) 0%, #0f172a 100%);
    color: #fff;
    border-color: transparent;
}

.service-card.featured .service-title {
    color: #fff;
}

.service-card.featured .service-desc {
    color: rgba(255, 255, 255, 0.8);
}

.service-card.featured .service-link {
    color: var(--primary-color, #ecac32);
}

.service-card.featured .service-image {
    border-color: rgba(236, 172, 50, 0.3);
}

/* Service Image */
.service-image {
    width: calc(100% + 4rem);
    height: 220px;
    overflow: hidden;
    margin: -2rem -2rem 1.5rem -2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-image {
    border-color: var(--primary-color, #ecac32);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

@media (max-width: 575.98px) {
    .service-image {
        width: calc(100% + 3rem);
        margin: -1.5rem -1.5rem 1.25rem -1.5rem;
        height: 180px;
    }
}

/* Service Content */
.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color, #1e2836);
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color, #ecac32);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 0.75rem;
}

.service-link i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.service-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card-premium:hover .service-title {
    color: #000;
}

.service-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 2.5rem;
}

.service-link-premium {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.service-link-premium i {
    font-size: 1.5rem;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-link-premium:hover {
    gap: 1.5rem;
    color: var(--secondary-color);
}

.service-link-premium:hover i {
    transform: translateX(-5px);
}

@media (max-width: 991px) {
    .services-asymmetric-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .s-card-wrapper {
        transform: none !important;
    }

    .service-card-premium {
        padding: 2rem;
    }
}

.projects-section {
    padding: 6rem 0;
    background: #fff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    border-radius: 20px;
    overflow: hidden;
    background: #f8fafc;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.project-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--primary-color);
    color: #fff;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(236, 172, 50, 0.3);
}

.project-info {
    padding: 1.5rem;
}

.project-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.project-location {
    font-size: 0.875rem;
    color: #ecac32;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.project-location i {
    font-size: 0.8rem;
}

.project-description {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* About */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 40, 54, 0.1), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(30, 40, 54, 0.15);
}

.about-image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 3px solid var(--primary-color, #ecac32);
    border-radius: 20px;
    z-index: -1;
}

.about-image-frame::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 180px;
    height: 180px;
    background: var(--primary-color, #ecac32);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #fff;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(30, 40, 54, 0.12);
    text-align: center;
    min-width: 140px;
}

.experience-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color, #ecac32);
    line-height: 1;
    display: block;
}

.experience-text {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.about-content {
    padding: 1rem 0;
}

.about-subtitle {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(236, 172, 50, 0.1);
    color: var(--primary-color, #ecac32);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color, #1e2836);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-title .highlight {
    color: var(--primary-color, #ecac32);
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(236, 172, 50, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon i {
    font-size: 1.25rem;
    color: var(--primary-color, #ecac32);
}

.about-feature-text {
    font-weight: 600;
    color: var(--secondary-color, #1e2836);
}

/* Why Choose us */
.why-us-section {
    padding: 7rem 0;
    background: linear-gradient(180deg, #fafbfc 0%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(236, 172, 50, 0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation: float 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(236, 172, 50, 0.05) 0%, transparent 70%);
    top: 50%;
    left: 30%;
    animation: float 18s ease-in-out infinite;
    animation-delay: -5s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(5deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-us-content .section-subtitle {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(236, 172, 50, 0.1) 0%, rgba(236, 172, 50, 0.05) 100%);
    color: var(--primary-color, #ecac32);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(236, 172, 50, 0.15);
}

.why-us-content .section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.why-us-content .section-title .highlight {
    color: var(--primary-color, #ecac32);
    position: relative;
}

.why-us-content .section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, rgba(236, 172, 50, 0.3) 0%, transparent 100%);
    border-radius: 4px;
    z-index: -1;
}

.title-line {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    color: #64748b;
    margin-top: 0.5rem;
}

.why-us-text {
    font-size: 1.1rem;
    line-height: 2;
    color: #64748b;
    margin-bottom: 2.5rem;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.why-feature:hover {
    transform: translateX(-8px);
    box-shadow: 0 8px 30px rgba(236, 172, 50, 0.12);
}

.why-feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(236, 172, 50, 0.1) 0%, rgba(236, 172, 50, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(236, 172, 50, 0.1);
}

.why-feature-icon.pulse {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(236, 172, 50, 0.3);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(236, 172, 50, 0);
    }
}

.why-feature-icon i {
    font-size: 1.625rem;
    color: var(--primary-color, #ecac32);
}

.why-feature-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.375rem;
}

.why-feature-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

.why-us-stats {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-orbit {
    position: relative;
    width: 420px;
    height: 420px;
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color, #ecac32) 0%, #d49a2a 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 40px rgba(236, 172, 50, 0.4);
    z-index: 10;
}

.orbit-center i {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.orbit-center span {
    font-size: 0.875rem;
    font-weight: 700;
}

.stat-orb {
    position: absolute;
    width: 140px;
    height: 140px;
    z-index: 5;
}

.orb-inner {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(236, 172, 50, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.stat-orb:hover .orb-inner {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(236, 172, 50, 0.2);
    border-color: rgba(236, 172, 50, 0.3);
}

.orb-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(236, 172, 50, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.stat-orb:hover .orb-glow {
    opacity: 1;
}

.orb-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(236, 172, 50, 0.1) 0%, rgba(236, 172, 50, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.orb-icon i {
    font-size: 1.5rem;
    color: var(--primary-color, #ecac32);
}

.orb-content {
    text-align: center;
}

.orb-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.orb-suffix {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color, #ecac32);
}

.orb-label {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 0.25rem;
    font-weight: 500;
}

.orb-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: bob1 4s ease-in-out infinite;
}

.orb-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation: bob2 4s ease-in-out infinite;
    animation-delay: 1s;
}

.orb-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: bob3 4s ease-in-out infinite;
    animation-delay: 2s;
}

.orb-4 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation: bob4 4s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes bob1 {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

@keyframes bob2 {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-50%) translateX(15px);
    }
}

@keyframes bob3 {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(15px);
    }
}

@keyframes bob4 {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-50%) translateX(-15px);
    }
}

.stat-orb.featured .orb-inner {
    background: linear-gradient(135deg, #fff 0%, #fff8f5 100%);
    border-color: rgba(236, 172, 50, 0.3);
}

.stat-orb.featured .orb-number,
.stat-orb.featured .orb-suffix {
    color: var(--primary-color, #ecac32);
}

.orbit-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.connection-line {
    fill: none;
    stroke: rgba(236, 172, 50, 0.15);
    stroke-width: 2;
    stroke-dasharray: 8, 8;
    animation: dash 20s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -200;
    }
}


/* Footer */
.main-footer {
    position: relative;
    background: #1e2836;
    color: #fff;
    margin-top: 0;
}

.footer-top-wave {
    position: absolute;
    top: -99px;
    left: 0;
    right: 0;
    height: 100px;
    overflow: hidden;
}

.footer-top-wave svg {
    width: 100%;
    height: 100%;
}

.footer-content {
    padding: 4rem 0 3rem;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.footer-brand {
    padding-right: 1rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 100px;
    width: auto;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--primary-color, #ecac32);
    border-color: var(--primary-color, #ecac32);
    transform: translateY(-3px);
}

.social-link.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

.footer-links {
    padding-top: 0.5rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color, #ecac32);
    border-radius: 2px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-menu a::before {
    content: '\2190';
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    color: var(--primary-color, #ecac32);
}

.footer-menu a:hover {
    color: #fff;
    padding-right: 0.5rem;
}

.footer-menu a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact {
    padding-top: 0.5rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(236, 172, 50, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1rem;
    color: var(--primary-color, #ecac32);
}

.contact-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    padding-top: 0.5rem;
}

.contact-text a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-color, #ecac32);
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.footer-cta i {
    font-size: 1.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color, #ecac32);
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}


/* Pagination Styles */
.pagination-wrapper-premium {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.pagination-wrapper-premium .pagination {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-wrapper-premium .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.pagination-wrapper-premium .page-item.active .page-link {
    background: linear-gradient(135deg, #ecac32 0%, #d49a2a 100%);
    border-color: #ecac32;
    color: #fff;
}

.pagination-wrapper-premium .page-item:hover .page-link {
    background: #f8fafc;
    border-color: #ecac32;
    color: #ecac32;
}

.pagination-wrapper-premium .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-wrapper-premium .page-item:first-child .page-link,
.pagination-wrapper-premium .page-item:last-child .page-link {
    padding: 0 1rem;
}













/* Responsive */

@media (max-width: 1199.98px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: span 2;
        padding-right: 0;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-grid {
        gap: 3rem;
    }
}

@media (max-width: 991.98px) {
    .about-section {
        padding: 4rem 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        height: 400px;
    }

    .experience-badge {
        right: 20px;
        bottom: 20px;
    }

    .about-title {
        font-size: 2rem;
    }

    .hero-section {
        min-height: 100vh;
        padding-top: 76px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        text-align: right;
        order: 1;
        align-items: flex-start;
    }

    .hero-visual {
        order: 2;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-stats {
        justify-content: flex-start;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 0.5rem 0.25rem;
        font-size: 0.7rem;
        justify-content: center;
        text-align: center;
    }

    .hero-image-wrapper {
        max-width: 450px;
    }

    .floating-card.card-1 {
        right: 10px;
    }

    .floating-card.card-2 {
        left: 10px;
    }

    .services-section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}



@media (max-width: 767.98px) {
    .footer-top-wave {
        top: -49px;
        height: 50px;
    }

    .footer-content {
        padding: 2.5rem 0 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-title {
        text-align: center;
    }

    .footer-title::after {
        right: 50%;
        transform: translateX(50%);
    }

    .footer-menu {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-cta {
        display: flex;
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .about-section {
        padding: 3rem 0;
    }

    .about-image {
        height: 320px;
    }

    .experience-badge {
        padding: 1rem;
        min-width: 120px;
    }

    .experience-number {
        font-size: 2rem;
    }

    .about-title {
        font-size: 1.625rem;
    }

    .about-feature-icon {
        width: 40px;
        height: 40px;
    }

    .about-feature-icon i {
        font-size: 1rem;
    }

    .hero-section {
        min-height: auto;
        padding-top: 72px;
        padding-bottom: 3rem;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .services-section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 1.625rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}



/* Responsive */
@media (max-width: 991.98px) {
    .why-us-section {
        padding: 4rem 0;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-us-content {
        text-align: center;
    }

    .why-us-features {
        max-width: 500px;
        margin: 0 auto;
    }

    .why-feature {
        text-align: right;
    }

    .stats-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .why-us-section {
        padding: 3rem 0;
    }

    .why-us-content .section-title {
        font-size: 1.75rem;
    }

    .why-us-text {
        font-size: 1rem;
    }

    .stats-card {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .stat-box {
        padding: 1.25rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stats-orbit {
        width: 320px;
        height: 320px;
    }

    .orbit-center {
        width: 80px;
        height: 80px;
    }

    .orbit-center i {
        font-size: 1.5rem;
    }

    .stat-orb {
        width: 100px;
        height: 100px;
    }

    .orb-icon {
        width: 32px;
        height: 32px;
    }

    .orb-icon i {
        font-size: 1.125rem;
    }

    .orb-number {
        font-size: 1.25rem;
    }

    .orb-suffix {
        font-size: 1rem;
    }

    .orb-label {
        font-size: 0.65rem;
    }

    .why-us-content .section-title {
        font-size: 2rem;
    }

    .title-line {
        font-size: 1.25rem;
    }

    .shape {
        display: none;
    }
}

@media (max-width: 400px) {
    .stats-orbit {
        width: 280px;
        height: 280px;
    }

    .stat-orb {
        width: 85px;
        height: 85px;
    }
}


.services-masterpiece {
    padding: 10rem 0;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

.services-masterpiece::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(236, 172, 50, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(236, 172, 50, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    pointer-events: none;
    z-index: 1;
}

.services-masterpiece .container {
    position: relative;
    z-index: 2;
}

.masterpiece-header {
    margin-bottom: 6rem;
    text-align: center;
}

.masterpiece-header .section-subtitle {
    background: rgba(236, 172, 50, 0.15);
    border: 1px solid rgba(236, 172, 50, 0.3);
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.masterpiece-header .section-title {
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.services-dynamic-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    align-items: start;
}

.m-card-wrapper {
    grid-column: span 4;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.m-card-wrapper.featured {
    grid-column: span 6;
}

.service-card-m {
    position: relative;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 3rem;
    height: 100%;
    overflow: hidden;
    transition: all 0.5s ease;
}

.service-card-m::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(236, 172, 50, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card-m:hover {
    transform: translateY(-15px);
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(236, 172, 50, 0.3);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5), 0 0 20px rgba(236, 172, 50, 0.1);
}

.service-card-m:hover::after {
    opacity: 1;
}

.m-card-number {
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    z-index: 0;
    transition: all 0.5s ease;
}

.service-card-m:hover .m-card-number {
    color: rgba(236, 172, 50, 0.05);
    transform: translateY(10px) scale(1.1);
}

.m-card-content {
    position: relative;
    z-index: 1;
}

.m-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(236, 172, 50, 0.2), rgba(236, 172, 50, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-card-m:hover .m-card-icon {
    transform: rotateY(180deg) scale(1.1);
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 30px rgba(236, 172, 50, 0.4);
}

.m-card-title {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.m-card-desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.m-card-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.m-card-link i {
    transition: transform 0.3s ease;
}

.m-card-link:hover {
    gap: 1.5rem;
    color: #fff;
}

.m-card-link:hover i {
    transform: translateX(-5px);
}

.m-card-image-frame {
    width: 100%;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 2rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.m-card-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.5);
    transition: all 0.8s ease;
}

.service-card-m:hover .m-card-image-frame img {
    filter: grayscale(0);
    transform: scale(1.1);
}

@media (max-width: 1199px) {
    .m-card-wrapper {
        grid-column: span 6;
    }
}

@media (max-width: 991px) {
    .services-dynamic-grid {
        gap: 1.5rem;
    }

    .m-card-wrapper,
    .m-card-wrapper.featured {
        grid-column: span 12;
    }
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    pointer-events: none;
}

.service-card:hover::after {
    animation: shimmer 0.8s ease-in-out;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.related-card {
    position: relative;
    overflow: hidden;
}

.related-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    pointer-events: none;
}

.related-card:hover::after {
    animation: shimmer 0.8s ease-in-out;
}

/* Updated Projects Section - Image cards with hover overlay */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 1199px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

.project-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 260px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: transparent;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.project-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
    height: 100%;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(236, 172, 50, 0.3);
    z-index: 2;
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 60%, transparent 100%);
    color: #fff;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s ease;
}

.project-card:hover .project-info {
    transform: translateY(0);
    opacity: 1;
}

.project-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.project-info .project-location {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.project-info .project-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}