/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* ================= VARIABLES ================= */
:root {
    --gold: #c9a96e;
}

/* ================= GLOBAL ================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= HEADER ================= */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: transparent;
    transition: 0.3s ease;
}

.header.scrolled {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 65px;
}

.logo span {
    font-weight: 700;
    font-size: 20px;
}

/* NAV */
.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    transition: 0.3s;
}

.nav a:hover {
    color: var(--gold);
}

/* BUTTON */
.btn-contact {
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn-contact:hover {
    background: var(--gold);
}

/* ================= HAMBURGER ================= */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #000;
}

/* ================= HERO ================= */
.hero {
    margin-top: 80px;
}

.hero-slider {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

/* SLIDES */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.5s ease, transform 6s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1.1);
}

/* OVERLAY */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

/* CONTENT */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.content h1,
.content p,
.hero-btn {
    opacity: 0;
    transform: translateY(20px);
}

.slide.active .content h1 {
    opacity: 1;
    transform: translateY(0);
    transition: 1s ease;
}

.slide.active .content p {
    opacity: 1;
    transform: translateY(0);
    transition: 1s ease 0.3s;
}

.slide.active .hero-btn {
    opacity: 1;
    transform: translateY(0);
    transition: 1s ease 0.6s;
}

.content h1 {
    font-size: 50px;
    margin-bottom: 15px;
}

.content p {
    font-size: 18px;
    margin-bottom: 25px;
}

/* BUTTON */
.hero-btn {
    background: #fff;
    color: #000;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.hero-btn:hover {
    background: var(--gold);
    color: #fff;
}

/* ================= SLIDER CONTROLS ================= */
.slider-controls span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
}

.prev { left: 20px; }
.next { right: 20px; }

/* DOTS */
.slider-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.slider-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #fff;
    margin: 5px;
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
}

.slider-dots .active {
    opacity: 1;
    background: var(--gold);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .nav {
        position: absolute;
        top: 70px;
        right: 0;
        background: #fff;
        width: 100%;
        display: none;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }

    .nav.active {
        display: flex;
    }

    .nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .hamburger {
        display: flex;
    }

    .btn-contact {
        display: none;
    }
}

/* ================= ABOUT ================= */
.about {
    padding: 100px 0;
    background: #fff;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* IMAGE */
.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* CONTENT */
.about-content h5 {
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* BUTTON */
.about-btn {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid #000;
    text-decoration: none;
    color: #000;
    border-radius: 30px;
    transition: 0.3s;
}

.about-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

@media (max-width: 768px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-content {
        text-align: center;
    }
}

/* IMAGE WRAPPER */
.about-image {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

/* IMAGE */
.about-image img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

/* ZOOM EFFECT */
.about-image:hover img {
    transform: scale(1.1);
}

/* OPTIONAL DARK OVERLAY */
.about-image::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0);
    transition: 0.4s ease;
}

.about-image:hover::after {
    background: rgba(0,0,0,0.15);
}

/* ================= COUNTERS ================= */
.counters {
    background: #111;
    color: #fff;
    padding: 80px 0;
}

.counter-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 30px;
}

.counter-box h2 {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 10px;
}

.counter-box p {
    font-size: 14px;
    letter-spacing: 1px;
    color: #ccc;
}

@media (max-width: 768px) {
    .counter-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

/* ================= PROJECTS ================= */
.projects {
    padding: 100px 0;
    background: #f8f8f8;
}

/* TITLE */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
}

/* GRID */
.projects-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

/* RIGHT COLUMN */
.right-column {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 25px;
}

/* CARD */
.project-card {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    align-items: flex-end;
}

/* LARGE CARD */
.project-card.large {
    min-height: 520px;
}

/* OVERLAY */
.project-card .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.1));
}

/* CONTENT */
.project-content {
    position: relative;
    color: #fff;
    padding: 25px;
    z-index: 2;
}

.project-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.project-content p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #ddd;
}

.project-content .date {
    font-size: 12px;
    display: block;
    margin-bottom: 10px;
    color: #ccc;
}

.project-content a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.project-content a:hover {
    color: var(--gold);
}

/* HOVER EFFECT */
.project-card:hover {
    transform: scale(1.02);
    transition: 0.4s ease;
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .right-column {
        grid-template-rows: auto;
    }

    .project-card.large {
        min-height: 300px;
    }
}

/* ================= SERVICES ================= */
.services {
    padding: 100px 0;
    background: #fff;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.service-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: 0.4s ease;
    border: 1px solid transparent;
}

/* ICON */
.service-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

/* TEXT */
.service-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* HOVER EFFECT */
.service-card:hover {
    background: #fff;
    border: 1px solid var(--gold);
    transform: translateY(-5px);
}

.service-card:hover h3 {
    color: var(--gold);
}
/* ================= SERVICES ================= */
.services {
    padding: 100px 0;
    background: #fff;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.service-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: 0.4s ease;
    border: 1px solid transparent;
}

/* ICON */
.service-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

/* TEXT */
.service-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* HOVER EFFECT */
.service-card:hover {
    background: #fff;
    border: 1px solid var(--gold);
    transform: translateY(-5px);
}

.service-card:hover h3 {
    color: var(--gold);
}
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
.nav a.active {
    font-weight: 600;
}

/* ================= PRODUCTS ================= */
.products {
    padding: 100px 0;
        background: #f2f2f2; /* soft grey */
}

/* HEADER */
.products-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-bottom: 50px;
    gap: 30px;
}

.products-header h2 {
    font-size: 30px;
}

.products-header p {
    color: #555;
    line-height: 1.6;
}

/* GRID */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.product-card {
    text-align: center;
}

/* IMAGE */
.product-card img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

/* HOVER ZOOM */
.product-card:hover img {
    transform: scale(1.05);
}

/* TITLE */
.product-card h4 {
    margin-top: 10px;
    font-size: 16px;
}

/* BUTTON */
.products-btn {
    text-align: center;
    margin-top: 40px;
}

.products-btn a {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #000;
    border-radius: 30px;
    text-decoration: none;
    color: #000;
    transition: 0.3s;
}

.products-btn a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

@media (max-width: 768px) {
    .products-header {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .products-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ================= FOOTER ================= */
.footer {
    background: #1a1a1a;
    color: #ccc;
    padding-top: 60px;
}

/* WRAPPER */
.footer-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* LEFT */
.footer-left img {
    width: 200px;
    margin-bottom: 15px;
}

.footer-tagline {
    color: #aaa;
    font-size: 14px;
}

/* RIGHT LINKS */
.footer-links {
    display: flex;
    gap: 60px;
}

/* COLUMN */
.footer-col h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #aaa;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

/* FOLLOW TITLE */
.footer-col .follow {
    margin-top: 20px;
}

/* ADDRESS */
.footer-address {
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: #999;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* COPYRIGHT */
.footer-bottom {
    padding: 15px 0;
    text-align: center;
    font-size: 13px;
    color: #777;
}

@media (max-width: 768px) {
    .footer-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
}
/* ================= HEADER ================= */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ================= HERO ================= */
.about-hero {
    height: 50vh; /* half screen */
    background: url('images/about-banner.jpg') center/cover no-repeat;
    position: relative;
    margin-top: 80px; /* space for header */
}

/* OVERLAY */
.about-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

/* TEXT */
.about-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}

.about-text h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.about-text p {
    font-size: 16px;
}

/* FORCE HEADER SAME AS HOMEPAGE FINAL STATE */
.inner-page .header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* ================= WHO WE ARE ================= */
.who-we-are {
    padding: 100px 0;
    background: #f5f5f5;
}

.who-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* IMAGE */
.who-image img {
    width: 100%;
    border-radius: 10px;
}

/* CONTENT */
.who-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.who-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.who-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* BUTTON */
.who-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 28px;
    border: 1px solid #000;
    border-radius: 30px;
    text-decoration: none;
    color: #000;
    transition: 0.3s;
}

.who-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

@media (max-width: 768px) {
    .who-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.who-image {
    overflow: hidden;
}

.who-image img {
    transition: 0.5s;
}

.who-image:hover img {
    transform: scale(1.05);
}
/* ================= VISION SECTION ================= */
.vision-section {
    background: #111;
    padding: 100px 0;
    color: #fff;
}

/* LIGHT TITLE */
.section-title.light h2 {
    color: #fff;
}

.section-title.light p {
    color: #bbb;
}

/* WRAPPER */
.vision-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

/* CARD */
.vision-card {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    position: relative;
    transition: 0.4s ease;
}

/* GOLD LINE */
.vision-card .line {
    width: 40px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 20px;
}

/* TEXT */
.vision-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.vision-card p {
    color: #ccc;
    line-height: 1.7;
}

/* HOVER EFFECT */
.vision-card:hover {
    transform: translateY(-8px);
    background: #222;
}

@media (max-width: 768px) {
    .vision-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ================= CORE VALUES ================= */
.values-section {
    padding: 100px 0;
    background: #f5f5f5; /* light premium grey */
}

/* LAYOUT */
.values-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

/* LEFT */
.values-left h2 {
    font-size: 36px;
    line-height: 1.3;
}

/* RIGHT GRID */
.values-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
}

/* ITEM */
.value-item {
    position: relative;
}

/* TOP LINE */
.value-item::before {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 15px;
}

/* NUMBER */
.value-item span {
    font-size: 14px;
    color: #999;
    display: block;
    margin-bottom: 5px;
}

/* TITLE */
.value-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* TEXT */
.value-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* HOVER (subtle premium effect) */
.value-item:hover h3 {
    color: var(--gold);
}
@media (max-width: 768px) {
    .values-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .values-right {
        grid-template-columns: 1fr;
    }
}
.values-left {
    position: relative;
}

.values-left::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: url('images/pattern.png') no-repeat center;
    opacity: 0.1;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* ================= PROCESS ================= */
.process-section {
    padding: 100px 0;
    background: #fff;
}

/* WRAPPER */
.process-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

/* CONNECTING LINE */
.process-wrapper::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: #ddd;
    z-index: 0;
}

/* STEP */
.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* CIRCLE */
.circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--gold);
    transition: 0.3s;
}

/* TEXT */
.process-step h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.process-step p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* HOVER EFFECT */
.process-step:hover .circle {
    background: var(--gold);
    color: #fff;
}
@media (max-width: 992px) {
    .process-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .process-wrapper::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-wrapper {
        grid-template-columns: 1fr;
    }
}
/* ================= PROCESS IMAGE ================= */
.process-image {
    padding: 80px 0;
    background: #fff; /* soft separation */
    text-align: center;
}

.process-image img {
    width: 70%;
    max-width: 900px;
    border-radius: 12px;
    transition: 0.4s ease;
}

/* HOVER EFFECT (subtle premium zoom) */
.process-image img:hover {
    transform: scale(1.03);
}
@media (max-width: 768px) {
    .process-image img {
        width: 100%;
    }
}

/* ================= CTA ================= */
.cta-section {
    background: #111;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

/* CONTENT */
.cta-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-wrapper p {
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* BUTTONS */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.btn-primary {
    background: var(--gold);
    color: #fff;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #b8955a;
}

/* OUTLINE BUTTON */
.btn-outline {
    border: 1px solid #fff;
    color: #fff;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}
@media (max-width: 768px) {
    .cta-wrapper h2 {
        font-size: 26px;
    }
}

/* ================= PROJECTS PAGE ================= */
.projects-page {
    padding: 100px 0;
}

/* FILTERS */
.project-filters {
    text-align: center;
    margin-bottom: 40px;
}

.project-filters button {
    background: none;
    border: 1px solid #ddd;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.project-filters button.active,
.project-filters button:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

/* GRID */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* ITEM */
.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.project-item img {
    width: 100%;
    display: block;
    transition: 0.5s;
}

/* OVERLAY */
.project-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
}

/* HOVER */
.project-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

.page-hero {
    height: 20vh;
    background: url('images/projects-banner.jpg') center/cover no-repeat;
    position: relative;
    margin-top: 80px;
}

.page-hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.0);
}

.page-hero .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}

/* MAIN LAYOUT */
.projects-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

/* LEFT BIG IMAGE */
.project-big {
    position: relative;
    height: 100%;
}

.project-big img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* RIGHT SIDE STACK */
.project-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 25px;
}

/* SMALL ITEMS */
.project-small {
    position: relative;
}

.project-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* OVERLAY */
.project-big .overlay,
.project-small .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
@media (max-width: 768px) {
    .projects-layout {
        grid-template-columns: 1fr;
    }

    .project-side {
        grid-template-rows: auto;
    }
}

.project-big img,
.project-small img {
    transition: 0.4s;
}

.project-big:hover img,
.project-small:hover img {
    transform: scale(1.05);
}


/* HOMEPAGE PROJECT OVERLAY */
.project-overlay {
    position: absolute;
    bottom: 0;   /* 🔥 THIS FIXES YOUR ISSUE */
    left: 0;
    width: 100%;
    padding: 20px;
    color: #fff;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.projects-home {
    padding-top: 100px; /* increase top space */
    padding-bottom: 100px;
    background: #f8f8f8; /* optional if you want separation */
}


/* SHOW ON HOVER */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 768px) {

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }
}


.dropdown > a::after {
    content: " ▼";
    font-size: 10px;
    margin-left: 5px;
}

/* DROPDOWN BASE */
.dropdown {
    position: relative;
}

/* DARK DROPDOWN PANEL */
.dropdown-menu.dark {
    position: absolute;
    top: 120%;
    left: 0;
    background: #000; /* deep brown/black */
    min-width: 220px;
    list-style: none;
    padding: 10px 0;
    border-radius: 6px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.35s ease;

    z-index: 1000;
}

/* SHOW */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ITEMS */
.dropdown-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* REMOVE LAST BORDER */
.dropdown-menu li:last-child {
    border-bottom: none;
}

/* LINKS */
.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;

    color: #eee;
    text-decoration: none;
    font-size: 14px;

    transition: 0.3s;
}

/* ICON */
.dropdown-menu .icon {
    font-size: 14px;
    opacity: 0.8;
}

/* HOVER EFFECT */
.dropdown-menu li a:hover {
    color: var(--gold);
    padding-left: 25px; /* subtle slide */
}

.dropdown-menu li {
    opacity: 0;
    transform: translateY(10px);
}

/* Animate when open */
.dropdown:hover .dropdown-menu li {
    animation: fadeInUp 0.4s forwards;
}

/* DELAYS */
.dropdown:hover .dropdown-menu li:nth-child(1) {
    animation-delay: 0.1s;
}

.dropdown:hover .dropdown-menu li:nth-child(2) {
    animation-delay: 0.2s;
}

/* KEYFRAME */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown > a::after {
    content: " ▼";
    font-size: 10px;
    margin-left: 5px;
    color: var(--gold);
}

@media (max-width: 768px) {

    .dropdown-menu.dark {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: #000;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }
}

.dropdown-menu {
    display: block;
}

.dropdown-menu li {
    display: block;
}
.dropdown-menu {
    display: flex;
    flex-direction: column;
}

/* ================= CONTACT SECTION ================= */
.contact-section {
    padding: 100px 0;
    background: #f5f5f5;
}

/* WRAPPER */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* LEFT SIDE */
.contact-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-info p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* BLOCK */
.contact-block {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

/* ICON */
.contact-block .icon {
    font-size: 22px;
    color: var(--gold);
}

/* TEXT */
.contact-block h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

/* FORM BOX */
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
}

/* FOCUS EFFECT */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    outline: none;
}

/* BUTTON */
.contact-form button {
    background: #3b1f14; /* dark brown like screenshot */
    color: #fff;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

.contact-form button:hover {
    background: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ================= MAP SECTION ================= */
.map-section {
    padding-top: 100px;
    background: #fff;
}

/* MAP WRAPPER */
.map-wrapper {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

/* OPTIONAL: MAKE IT FULL WIDTH EDGE-TO-EDGE */
.map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(20%) contrast(1.05); /* premium subtle effect */
}

/* ================= PREMIUM MAP ================= */
.map-section {
    padding: 100px 0;
    background: #fff;
}

/* CONTAINER */
.map-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 40px auto 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
}

/* MAP */
.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

/* OVERLAY CARD */
.map-card {
    position: absolute;
    top: 40px;
    left: 40px;
    background: #fff;
    padding: 25px 30px;
    border-radius: 10px;
    max-width: 280px;

}

/* TEXT */
.map-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.map-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* BUTTON */
.map-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 13px;
    transition: 0.3s;
}

.map-btn:hover {
    background: var(--gold);
}

/* MOBILE */
@media (max-width: 768px) {

    .map-card {
        position: static;
        margin: 20px;
        max-width: 100%;
    }

    .map-container {
        border-radius: 0;
    }
}
/* HIDE CONTACT IN DESKTOP */
.mobile-contact {
    display: none;
}

/* SHOW ONLY IN MOBILE */
@media (max-width: 768px) {
    .mobile-contact {
        display: block;
    }
}
@media (max-width: 768px) {

    .mobile-contact a {
        display: inline-block;
        background: #000;
        color: #fff !important;
        padding: 10px 20px;
        border-radius: 25px;
        margin-top: 10px;
    }

    .mobile-contact a:hover {
        background: var(--gold);
    }
}

/* ================= MODERN PROJECT GRID ================= */
.projects-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */
.project-card-modern img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 15px;
    transition: 0.4s ease;
}

/* HOVER IMAGE */
.project-card-modern:hover img {
    transform: scale(1.03);
}

/* CATEGORY */
.category {
    display: inline-block;
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-left: 12px;
}

/* SMALL GOLD SQUARE */
.category::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--gold);
    position: absolute;
    left: 0;
    top: 5px;
}

/* TITLE */
.project-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* TEXT */
.project-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .projects-grid-modern {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .projects-grid-modern {
        grid-template-columns: 1fr;
    }
}