.home-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-slide {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1.5s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}


.hero-caption {
    position: relative;
    z-index: 10;
    text-align: left;
    color: #fff;
    margin-top: 0;
    width: 100%;
    padding-left: 60px;
}

.hero-social-sidebar {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    z-index: 20;
}

.hero-social-sidebar a {
    color: #fff;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 600;
}

.hero-social-sidebar a:hover {
    opacity: 1;
    color: var(--primary-gold);
}

.sidebar-line {
    width: 1px;
    height: 100px;
    background: rgba(255, 255, 255, 0.3);
    margin-top: 10px;
}

.hero-subtitle {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.hero-caption h1 {
    font-family: var(--font-heading);
    font-size: 72px;
    line-height: 1.1;
    letter-spacing: 1px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.btn-gold-filled {
    display: inline-flex;
    align-items: center;
    background: #C3AA71;
    color: #fff;
    padding: 15px 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s;
}

.btn-gold-filled:hover {
    background: #a98d58;
    padding-right: 40px;
}

.btn-gold-filled span {
    margin-left: 10px;
    transition: margin 0.3s;
}

.hero-bottom {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 20;
    padding: 0 15px;
    color: #fff;
}

.hero-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(195, 170, 113, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info .label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-info .number {
    font-family: var(--font-heading);
    font-size: 24px;
    color: #fff;
}

.hero-controls {
    display: flex;
    align-items: center;
    gap: 40px;
}

.control-number {
    font-family: var(--font-heading);
    font-size: 14px;
    opacity: 0.5;
    position: relative;
    padding-bottom: 5px;
}

.control-number.active {
    opacity: 1;
}

.control-number.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
}

.control-arrows {
    display: flex;
    align-items: center;
    gap: 15px;
}

.control-arrows .arrow {
    font-size: 18px;
    cursor: pointer;
    opacity: 0.7;
}

.control-arrows .arrow:hover {
    opacity: 1;
    color: var(--primary-gold);
}

.progress-bar {
    width: 100px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
}

.progress-bar .progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #fff;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-gold {
    background: var(--primary-gold);
    color: #fff;
    border: 1px solid var(--primary-gold);
}

.btn-gold:hover {
    background: #fff;
    color: var(--primary-gold);
}

.btn-outline {
    border: 1px solid var(--secondary-blue);
    color: var(--secondary-blue);
}

.btn-outline:hover {
    background: var(--secondary-blue);
    color: #fff;
}

.search-section {
    position: relative;
    z-index: 20;
    padding: 60px 0;
    background: #fff;
}

.search-box {
    background: #fff;
    padding: 0;
    box-shadow: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 30px;
    align-items: end;
}

.search-field label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-transform: capitalize;
}

.search-field select {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 15px;
    color: #555;
    outline: none;
    background: #f7f7f7;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    cursor: pointer;
}

.btn-search {
    background: #C3AA71;
    color: #fff;
    border: none;
    padding: 0 40px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
    height: 52px;
    transition: background 0.3s;
    text-transform: uppercase;
}

.btn-search:hover {
    background: #a98d58;
}

.home-intro {
    padding: 100px 0;
    position: relative;
    background: #fff;
}



.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    display: block;
}

.intro-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--primary-gold);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
}

.intro-content h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.1;
}

.intro-content p {
    color: #666;
    margin-bottom: 50px;
    line-height: 1.8;
    font-size: 15px;
    text-align: justify;
}

.intro-stats {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 80px;
    line-height: 1;
    color: #b5a27f;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.stat-number .plus {
    font-size: 40px;
    vertical-align: super;
    margin-left: 5px;
}

.stat-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: #222;
    letter-spacing: 0.5px;
}

.intro-content .btn-gold-filled {
    background: #c3aa71;
    color: #fff;
    align-self: flex-start;
}

.featured-projects {
    padding: 100px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
    color: #C3AA71;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.project-filters {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 30px;
}

.filter-btn {
    background: #fff;
    border: 1px solid #eee;
    padding: 12px 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #C3AA71;
    color: #fff;
    border-color: #C3AA71;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.project-card {
    background: #fff;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.project-img {
    height: 300px;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card:hover .project-img img {
    transform: scale(1.05);
}

.project-info {
    padding: 30px;
    text-align: left;
}

.project-info h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 5px;
    color: #000;
    line-height: 1.4;
}

.project-info .location {
    font-size: 12px;
    color: #666;
    margin-bottom: 25px;
    display: block;
    text-transform: capitalize;
}

.project-details {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 12px;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-label {
    font-weight: 700;
    color: #000;
}

.detail-value {
    color: #666;
}

.projects-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.projects-pagination .dot {
    width: 8px;
    height: 8px;
    background: #e5e5e5;
    border-radius: 50%;
    cursor: pointer;
}

.projects-pagination .dot.active {
    background: #C3AA71;
}

.mt-5 {
    margin-top: 50px;
}

.text-center {
    text-align: center;
}

@media (max-width: 900px) {
    .scroll-top {
        display: none !important;
    }

    .home-hero {
        height: 80vh;
        min-height: 400px;
    }

    .container {
        padding: 0 30px;
    }

    .hero-caption h1 {
        font-size: 50px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .search-box {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .btn-search {
        grid-column: span 2;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-image img {
        width: 100%;
        max-height: 400px;
        object-fit: cover;
    }

    .stat-number {
        font-size: 60px;
    }
}

@media (max-width: 600px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-caption h1 {
        font-size: 32px;
    }

    .hero-caption {
        padding-left: 0;
        text-align: center;
        padding-right: 0;
    }

    .hero-social-sidebar {
        display: none;
    }

    .hero-bottom {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        bottom: 20px;
    }

    .search-box {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .btn-search {
        grid-column: span 1;
    }

    .intro-stats {
        flex-direction: row;
        gap: 30px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 48px;
    }

    .project-card {
        margin: 0;
    }

    .project-filters {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 10px;
        flex: 0 1 auto;
        min-width: fit-content;
    }
}

.why-us {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
}

.why-us .section-subtitle {
    color: #C3AA71;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-box {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 30px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.feature-box:hover {
    border-color: #C3AA71;
    background: rgba(195, 170, 113, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 25px;
    color: #fff;
    transition: color 0.3s;
}

.feature-box:hover .feature-icon {
    color: #C3AA71;
}

.feature-box h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.feature-box p {
    font-size: 13px;
    color: #ccc;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .why-us {
        padding: 60px 0;
    }
}

.developers-section {
    padding: 100px 0;
    background: #fff;
}

.section-desc {
    max-width: 800px;
    margin: 0 auto 50px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.developers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.developer-box {
    border: 1px solid #eee;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s;
}

.developer-box img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.developer-box:hover {
    border-color: #C3AA71;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.developer-box:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #C3AA71;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    box-shadow: 0 5px 15px rgba(195, 170, 113, 0.3);
    transition: all 0.3s;
}

.scroll-top:hover {
    background: #a98d58;
    transform: translateY(-3px);
}

@media (max-width: 900px) {
    .developers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .developers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .developer-box {
        height: 120px;
        padding: 15px;
    }
}

.reviews-section {
    background: #fff;
    margin-bottom: 40px;
}

.reviews-container {
    display: flex;
    min-height: 700px;
}

.reviews-image {
    width: 45%;
    position: relative;
    overflow: hidden;
}

.reviews-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews-content-wrapper {
    width: 55%;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #FAFAFA;
}

.text-left {
    text-align: left;
}

.reviews-content-wrapper .section-subtitle {
    color: #C3AA71;
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
}

.reviews-content-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    color: #000;
    line-height: 1.3;
    margin-bottom: 60px;
    position: relative;
    max-width: 600px;
}

.reviews-content-wrapper h2::after {
    content: '';
    display: inline-block;
    width: 60px;
    height: 1px;
    background: #ddd;
    vertical-align: middle;
    margin-left: 20px;
    margin-right: 20px;
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.review-card {
    background: #fff;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    border-radius: 0;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    font-family: 'Times New Roman', serif;
    font-size: 80px;
    color: #F2EFE9;
    position: absolute;
    top: 20px;
    right: 25px;
    line-height: 0.5;
}

.review-card h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 5px;
    color: #000;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.review-source {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.review-text {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.review-controls {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.control-btn {
    width: 60px;
    height: 60px;
    border: 1px solid #E5E5E5;
    background: #fff;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: #fff;
    border-color: #C3AA71;
    color: #C3AA71;
}

@media (max-width: 1200px) {
    .reviews-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .review-card {
        min-height: auto;
    }

    .review-card:last-child {
        display: none;
    }
}

@media (max-width: 900px) {
    .reviews-container {
        flex-direction: column;
    }

    .reviews-image,
    .reviews-content-wrapper {
        width: 100%;
    }

    .reviews-image {
        height: 300px;
    }

    .reviews-content-wrapper {
        padding: 60px 30px;
    }

    .reviews-content-wrapper h2 {
        font-size: 32px;
    }

    .reviews-content-wrapper h2::after {
        display: none;
    }

    .reviews-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .reviews-slider {
        grid-template-columns: 1fr;
    }

    .review-card:last-child {
        display: flex;
    }

    .reviews-content-wrapper {
        padding: 40px 20px;
    }

    .control-btn {
        width: 50px;
        height: 50px;
    }
}