/* GLOBAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0d0f11;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

.gold-text {
    color: #c49a45;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* BUTTONS */
.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.btn-outline:hover {
    border-color: #c49a45;
    color: #c49a45;
}

.btn-filled {
    background-color: #c49a45;
    color: #0d0f11;
    padding: 12px 24px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-filled:hover {
    background-color: #e5b85c;
}

/* HEADER SECTION */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 6%;
    background-color: rgba(13, 15, 17, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
}

.logo-sub {
    font-size: 0.5rem;
    letter-spacing: 3px;
    color: #a0a0a0;
    margin-top: 4px;
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #a0a0a0;
}

nav a:hover, nav a.active {
    color: #c49a45;
}

/* HERO SECTION */
.hero-section {
    display: flex;
    min-height: 100vh;
    padding-top: 100px;
    position: relative;
}

.hero-left {
    width: 48%;
    padding: 6% 0 4% 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tagline {
    color: #c49a45;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-left h1 {
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-description {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

/* STATS COUNTER */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    max-width: 550px;
}

.stat-item {
    text-align: left;
}

.stat-icon {
    color: #c49a45;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.stat-item h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 0.6rem;
    color: #a0a0a0;
    letter-spacing: 1px;
    line-height: 1.3;
}

/* HERO RIGHT - THE CUT-OUT GEOMETRIC EFFECT */
.hero-right {
    width: 52%;
    position: relative;
    background-color: #0d0f11;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    /* This creates the custom angled shape mimicking your UI screen */
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* Gold border effect behind the clip-path border line */
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(115deg, #c49a45 15%, transparent 16%);
    z-index: 1;
    pointer-events: none;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* SLIDER AND FLOATING BADGES */
.slider-controls {
    position: absolute;
    bottom: 40px;
    right: 12%;
    background-color: rgba(13, 15, 17, 0.9);
    display: flex;
    align-items: center;
    padding: 10px 20px;
    gap: 15px;
    z-index: 5;
}

.slider-arrow {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 0.8rem;
}

.slider-arrow:hover {
    color: #c49a45;
}

.slider-counter {
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.slider-counter .divider {
    color: rgba(255,255,255,0.3);
}

.floating-3d-badge {
    position: absolute;
    bottom: 40px;
    right: 0;
    background-color: #090a0c;
    border-left: 2px solid #c49a45;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
}

.floating-3d-badge i {
    color: #c49a45;
    font-size: 1.5rem;
}

.floating-3d-badge span {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* EXPERTISE / SERVICES SECTION */
.expertise-section {
    padding: 80px 6%;
    background-color: #090a0c;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.expertise-title {
    width: 30%;
}

.small-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.expertise-title h2 {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
}

.services-grid {
    width: 70%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background-color: #0d0f11;
    padding: 30px 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.service-icon {
    color: #c49a45;
    font-size: 1.5rem;
    opacity: 0.8;
}

.service-num {
    color: rgba(255,255,255,0.15);
    font-size: 0.8rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.gold-line {
    width: 30px;
    height: 2px;
    background-color: #c49a45;
    transition: width 0.3s ease;
}

.service-card:hover .gold-line {
    width: 100%;
}

/* FEATURED PROJECT SECTION */
.featured-section {
    padding: 60px 6%;
    background-color: #0d0f11;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.featured-left {
    width: 25%;
}

.featured-left h2 {
    font-size: 2.2rem;
    font-weight: 700;
}

.serif-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: #a0a0a0;
    font-size: 1.6rem;
    margin-top: 5px;
}

.divider-line {
    width: 100%;
    height: 1px;
    background-color: rgba(255,255,255,0.1);
    margin-top: 40px;
}

.featured-center {
    width: 45%;
}

.featured-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.featured-right {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    padding-top: 20px;
}

.project-desc {
    color: #a0a0a0;
    font-size: 0.85rem;
    line-height: 1.8;
}

.view-project-btn {
    align-self: flex-start;
    width: 100%;
    text-align: center;
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* RESPONSIVE DESIGN (FOR MOBILE DEVICES) */
@media (max-width: 1024px) {
    header nav { display: none; }
    .hero-section { flex-direction: column; }
    .hero-left, .hero-right { width: 100%; }
    .hero-right { height: 400px; }
    .hero-image-wrapper { clip-path: none; }
    .expertise-section { flex-direction: column; }
    .expertise-title, .services-grid { width: 100%; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-section { flex-direction: column; }
    .featured-left, .featured-center, .featured-right { width: 100%; }
}