/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --font-primary: 'Inter', 'Segoe UI', sans-serif;

    --h1: 48px;
    --h2: 32px;
    --h3: 22px;
    --body: 15px;
    --small: 13px;

    --lh-heading: 1.3;
    --lh-body: 1.8;

    --text-main: #eaeaea;
    --text-muted: #bfbfbf;
}

/* BODY */
body {
    font-family: var(--font-primary);
    background-color: #0f0f0f;
    color: var(--text-main);
}
h1, h2, h3 {
    font-weight: 400;
    line-height: var(--lh-heading);
    letter-spacing: 0.5px;
}

p {
    font-size: var(--body);
    line-height: var(--lh-body);
    color: var(--text-muted);
}
section {
    padding: 100px 0;
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
}

/* CONTAINER */
.container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* HEADER */
.header {
    width: 100%;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    background: transparent;
    z-index: 1000;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px; /* slightly more breathing */
}

.logo img {
    width: 42px;   /* increased from ~28 */
    height: 42px;
    object-fit: contain;
}

.logo span {
    font-size: 26px;  /* increased from ~18 */
    letter-spacing: 1.5px;
    font-weight: 500;
}
@media (max-width: 768px) {

    .logo img {
        width: 36px;  /* increased from 24 */
        height: 36px;
    }

    .logo span {
        font-size: 22px; /* increased from 16 */
    }

}

/* NAV */
.nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #eaeaea;
    font-size: 14px;
    position: relative;
}

/* NAV HOVER (Copper underline) */
.nav a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    background: #b87333;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav a:hover::after {
    width: 100%;
}

/* HAMBURGER ICON */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #b87333;
    margin: 4px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {

    /* Hide normal nav */
    .nav {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: #0f0f0f;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
    }

    .nav a {
        margin: 15px 0;
        font-size: 16px;
    }

    /* Show hamburger */
    .hamburger {
        display: flex;
    }

}

.nav.active {
    display: flex;
}
html {
    scroll-behavior: smooth;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}
.hero-sub {
    position: absolute;   /* 🔥 key */
    bottom: 40px;
    right: 5%;

    font-size: 12px;
    letter-spacing: 2px;
    color: #b87333;
    text-transform: uppercase;
}

/* IMAGE LAYER */
.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../images/hero.png') center/cover no-repeat;
    filter: brightness(0.85);
}

/* DARK OVERLAY */
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(15,15,15,0.6),
        rgba(15,15,15,0.9)
    );
}

/* CONTENT */
.hero-content {
    position: absolute;   /* 🔥 important */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    z-index: 2;
}

/* TEXT */
.hero h1 {
    font-size: var(--h1);
    max-width: 780px;
    line-height: 1.3;
}

/* COPPER LINE DETAIL */
.hero h1::after {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    background: #b87333;
    margin: 20px auto 0;
}
@media (max-width: 768px) {

    .hero {
        height: 90vh;
    }

    .hero h1 {
        font-size: 26px;
        padding: 0 20px;
        line-height: 1.4;
    }
    
    .hero-sub {
        bottom: 25px;
        right: 20px;
        font-size: 11px;
        letter-spacing: 1.5px;
    }
}

.section-line {
    width: 60px;
    height: 1px;
    background: #b87333;
    margin-bottom: 30px;
}

/* PHILOSOPHY SECTION */
.philosophy {
    background: #0f0f0f;
}

/* LAYOUT */
.philosophy-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

/* TEXT BLOCK */
.philosophy-text {
    width: 100%;

    /* animation */
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s ease;
}

.philosophy-text.show {
    opacity: 1;
    transform: translateX(0);
}

/* HEADING */
.philosophy-text h2 {
    font-size: var(--h2);
    font-weight: 400;
    margin-bottom: 30px; /* spacing you wanted */
}

/* PARAGRAPH */
.philosophy-text p {
    font-size: var(--body);
    max-width: none;
    line-height: 1.9;
    color: #bfbfbf;
    margin-bottom: 15px;
}

@media (max-width: 768px) {

    .philosophy-container {
        flex-direction: column;
    }

    .philosophy-text {
        width: 100%;
        transform: translateX(30px);
    }

    .philosophy-space {
        display: none;
    }

    .philosophy-text h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .philosophy-text p {
        font-size: 14px;
        max-width: 100%;
    }
}

/* SERVICES */
.services {
    background: #0f0f0f;
}

/* EACH SERVICE BLOCK */
.service {
    display: flex;
    align-items: center;
    min-height: 70vh;
}

/* IMAGE */
.service-image {
    width: 50%;
    height: 70vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.service1 {
    background-image: url('../images/service1.png');
}

.service2 {
    background-image: url('../images/service2.png');
}

.service3 {
    background-image: url('../images/service3.png');
}

/* TEXT */
.service-text {
    width: 50%;
    padding: 50px; /* reduced from 60px */

    /* animation */
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.service-text.show {
    opacity: 1;
    transform: translateY(0);
}

.service-text h3 {
    position: relative;
    font-size: var(--h3);
}

.service-text h3::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 50%;
    width: 10px;
    height: 1px;
    background: #b87333;
}

.service-text p {
      font-size: var(--body);
    color: #bfbfbf;
    line-height: 1.8;
    max-width: 420px; /* IMPORTANT: controls text width */
}

.service:nth-child(even) {
    flex-direction: row-reverse;
}
@media (max-width: 768px) {

    .service {
        flex-direction: column !important; /* override alternating */
        align-items: flex-start;
       min-height: auto;   /* 🔥 THIS is the main fix */
        height: auto;

        margin-bottom: 20px;
    }

    .service-image {
        width: 100%;
        height: 200px;
        margin-bottom: 15px;
    }

.service-text {
        width: 100%;
        padding: 0 20px 25px 20px;

        transform: translateY(25px); /* softer animation */
    }

    .service-text h3 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .service-text p {
        font-size: 14px;
        max-width: 100%;
    }

}

/* PROJECTS */
.projects {
    background: #0f0f0f;
    padding-top: 100px; 
}
.projects-header {
    width: 90%;
    margin: 0 auto 60px auto;
}

.projects-header h2 {
    font-size: 32px;
    font-weight: 400;
}
.project {
    position: relative;
    height: 75vh;
    overflow: hidden;

    display: block;          /* 🔥 ADD THIS */
    text-decoration: none;   /* 🔥 ADD THIS */
    color: inherit;          /* 🔥 ADD THIS */
}

/* IMAGE */
.project-image {
    position: relative;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: contain;
}

/* ADD THIS */
.project-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(
        to top,
        rgba(15,15,15,0.7),
        rgba(15,15,15,0.2)
    );
}

/* OVERLAY TEXT */
.project-info {
    position: absolute;
    bottom: 60px;
    left: 5%;
    color: #eaeaea;

    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.project-info.show {
    opacity: 1;
    transform: translateY(0);
}

.project-info h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 10px;
}

.project-info p {
    font-size: 14px;
    color: #cfcfcf;
}

.project1 {
    background-image: url('../images/project1.png');
}

.project2 {
    background-image: url('../images/project7.png');
}

.project3 {
    background-image: url('../images/project18.png');
}

@media (max-width: 768px) {

    .project {
        height: 60vh;
         margin: 0;
         padding: 0;
    }
    .projects-header {
        margin-bottom: 40px;
    }

    .projects-header h2 {
        font-size: 24px;
    }

    .project-info {
        bottom: 30px;
        left: 20px;
        right: 20px;
    }

    .project-info h3 {
        font-size: 22px;
    }

    .project-info p {
        font-size: 13px;
    }
    
     .project-image {
        position: relative;
        overflow: hidden;
         line-height: 0;
    }
    
    .project-image img {
       width: 100%;
       height: 450px;
       object-fit: cover;

       display: block;
     }

}

/* PROCESS */
.process {
    background: #0f0f0f;
}

.process-container {
    width: 90%;
    margin: auto;
}

/* HEADER */
.process-header h2 {
     font-size: var(--h2);
    font-weight: 400;
    margin-bottom: 60px;
}

/* STEPS */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;

    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.process-step.show {
    opacity: 1;
    transform: translateY(0);
}

/* NUMBER */
.step-number {
    font-size: 22px;
    color: #b87333; /* copper */
    min-width: 40px;
}

/* TEXT */
.step-text h3 {
    font-size: var(--h3);
    font-weight: 400;
    margin-bottom: 10px;
}

.step-text p {
    font-size: 14px;
    color: #bfbfbf;
    line-height: 1.8;
    max-width: 500px;
}

@media (max-width: 768px) {

    .process-header h2 {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .process-step {
        gap: 20px;
    }

    .step-number {
        font-size: 20px;
    }

    .step-text h3 {
        font-size: 18px;
    }

    .step-text p {
        font-size: 13px;
        max-width: 100%;
    }

}
.materials {
    background: #0f0f0f;
}

.materials-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* TEXT */
.materials-text {
    width: 45%;
}

.materials-text h2 {
    font-size: var(--h2);
    margin-bottom: 25px;
}

.materials-text p {
    font-size: 15px;
    color: #bfbfbf;
    line-height: 1.9;
    margin-bottom: 15px;
}

/* GRID */
.materials-grid {
    width: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.material-item {
    height: 180px;
    background-size: cover;
    background-position: center;
}

/* HIDE MOBILE VERSION ON DESKTOP */
.materials-mobile {
    display: none;
}

@media (max-width: 768px) {

    .materials-container {
        flex-direction: column;
    }

    .materials-text {
        width: 100%;
        margin-bottom: 30px;
    }

    /* HIDE DESKTOP GRID */
    .materials-grid {
        display: none;
    }

    /* SHOW MOBILE VERSION */
    .materials-mobile {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 90%;
        margin: auto;
    }

    .material-card {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .material-img {
        width: 50%;
        height: 110px;
        background-size: cover;
        background-position: center;
    }

    .material-text {
        width: 50%;
    }

    .material-text h3 {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .material-text p {
        font-size: 12px;
        color: #bfbfbf;
        line-height: 1.4;
    }

}

.m1 { background-image: url('../images/mat1.jpg'); }
.m2 { background-image: url('../images/mat2.jpg'); }
.m3 { background-image: url('../images/mat3.png'); }
.m4 { background-image: url('../images/mat4.jpg'); }

/* CTA SECTION */
.cta {
    background: #0a0a0a; /* slightly darker than rest */
    text-align: center;
}

.cta-container {
    width: 90%;
    margin: auto;
    max-width: 700px;
}

/* TEXT */
.cta h2 {
    font-size: var(--h2);
    font-weight: 400;
    margin-bottom: 20px;
}

.cta p {
    font-size: 15px;
    color: #bfbfbf;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* BUTTON */
.cta-btn {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid #b87333;
    color: #b87333;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
     position: relative;
    z-index: 5;
}

/* HOVER */
.cta-btn:hover {
    background: #b87333;
    color: #000;
}

@media (max-width: 768px) {

    .cta h2 {
        font-size: 24px;
    }

    .cta p {
        font-size: 14px;
    }

    .cta-btn {
        padding: 10px 22px;
        font-size: 13px;
    }

}
/* FOOTER */
.footer {
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 60px 80px 30px;
}

/* CONTAINER */
.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
}

/* LEFT */
.footer-left h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.footer-left p {
    font-size: 14px;
    color: #bfbfbf;
    line-height: 1.7;
    max-width: 400px;
}

/* CENTER */
.footer-center h4,
.footer-right h4 {
    font-size: 13px;
    margin-bottom: 15px;
    color: #b87333;
    letter-spacing: 1px;
}

/* NAV LINKS */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: #cfcfcf;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #b87333;
}

/* CONTACT */
.footer-right p {
    font-size: 14px;
    color: #d0d0d0;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* SOCIALS */
.footer-socials {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.footer-socials a {
    font-size: 13px;
    color: #a8a8a8;
    transition: 0.3s;
}

.footer-socials a:hover {
    color: #b87333;
}

/* BOTTOM */
.footer-bottom {
    max-width: 1200px;
    margin: 50px auto 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 15px;
    text-align: center;
    font-size: 12px;
    color: #777;
}
@media (max-width: 768px) {

    .footer {
        padding: 50px 20px 25px;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: left;
    }

    /* LEFT */
    .footer-left h3 {
        font-size: 22px;
        line-height: 1.3;
    }

    .footer-left p {
        font-size: 15px;
        line-height: 1.7;
    }

    /* CENTER (NAV) */
    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-links a {
        font-size: 14px;
    }

 /* CONTACT TEXT */
.footer-right p {
    font-size: 15px;
    line-height: 1.8;
    color: #d0d0d0;
}

/* FIX LINK STYLE */
.footer-right a {
    color: #d0d0d0;          /* match text */
    text-decoration: none;   /* remove underline */
    transition: 0.3s;
}

/* HOVER EFFECT */
.footer-right a:hover {
    color: #b87333;
}

    /* SOCIALS */
    .footer-socials {
        justify-content: flex-start;
        gap: 20px;
        margin-top: 10px;
    }

    .footer-socials a {
        font-size: 14px;
    }

    /* BOTTOM */
    .footer-bottom {
        margin-top: 30px;
        font-size: 12px;
        text-align: left;
    }

}
@media (max-width: 768px) {

    :root {
        --h1: 26px;
        --h2: 24px;
        --h3: 18px;
        --body: 14px;
        --small: 12px;
    }

}
/* =========================
   HERO
========================= */
.case-hero {
    position: relative;
    height: 80vh;
    margin-bottom: 60px;
}

.case-hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* IMAGE CONTROL */
.case-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.case-hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.case-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

}

.case-hero-content h1 {
    font-size: 40px;
    letter-spacing: 0.5px;
}

.case-hero-content p {
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 1px;
}

/* =========================
   CONTAINER
========================= */
.case-container {
    width: 80%;
    max-width: 900px;
    margin: auto;
}

.case-container p {
    font-size: 17px;
    line-height: 1.8;
    color: #cfcfcf;
}

/* =========================
   SECTIONS
========================= */
.case-intro {
    margin-top: 60px;
    padding: 60px 0;
}

.case-intent {
    padding: 60px 0;
}

.case-intent h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* =========================
   GALLERY (NEW SYSTEM)
========================= */
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 10px;

    width: 90%;
    margin: 60px auto;
}

/* IMAGE BLOCK */
.gallery-img {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

/* IMAGE */
.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* HOVER */
.gallery-img:hover img {
    transform: scale(1.05);
}

/* OVERLAY */
.gallery-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    transition: 0.4s ease;
}

.gallery-img:hover::after {
    background: rgba(0,0,0,0.05);
}

/* LAYOUT CLASSES */
.gallery-img.big {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
}

.gallery-img.small.top {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
}

.gallery-img.small.bottom {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
}

.gallery-img.wide {
    grid-column: 1 / 3;
    height: 220px;
}

/* =========================
   DETAILS
========================= */
.case-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    width: 80%;
    max-width: 1000px;
    margin: 80px auto;

    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
}

.detail {
    width: 30%;
    text-align: left;
}

.detail h4 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b87333;
    margin-bottom: 10px;
}

.detail p {
    font-size: 18px;
    color: #e5e5e5;
    line-height: 1.6;
}

/* =========================
   STORY SECTION
========================= */
.case-story {
    width: 80%;
    max-width: 1100px;
    margin: 100px auto;
}

.story-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

/* IMAGE */
.story-img {
    flex: 0 0 60%;
    height: 360px;
    overflow: hidden;
}

.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXT */
.story-text {
    flex: 0 0 40%;
}

/* =========================
   CTA
========================= */
.case-cta {
    text-align: center;
    padding: 40px 0 80px;
}

.case-cta a {
    text-decoration: none;
    color: #b87333;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .case-hero {
        height: 60vh;
    }

    /* GALLERY */
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        margin: 30px auto 20px;
    }

    .gallery-img {
        height: 220px;
    }

    /* DETAILS */
    .case-details {
        flex-direction: column;
        gap: 30px;
        width: 90%;
    }

    .detail {
        width: 100%;
    }

    .detail p {
        font-size: 16px;
    }

    /* STORY */
    .story-block {
        flex-direction: column;
        gap: 20px;
        margin: 30px 0;
    }

    .story-img,
    .story-text {
        width: 100%;
    }

    .story-img {
        height: 220px;
        margin-bottom: 15px;
    }

}
/* CONTACT HERO */
.contact-hero {
    text-align: center;
    padding: 120px 20px 60px;
}

.contact-hero h1 {
    font-size: 36px;
    font-weight: 400;
}

.contact-hero p {
    margin-top: 10px;
    color: #bfbfbf;
}

/* FORM SECTION */
.contact-form-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 100px;
}

.contact-form {
    width: 90%;
    max-width: 900px;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group.full-width {
    grid-column: span 2;
}

/* FORM ELEMENTS */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #b87333;
    letter-spacing: 1.2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #b87333;
}
/* FIX DROPDOWN VISIBILITY (DESKTOP ISSUE) */
.form-group select {
    background-color: #0f0f0f; /* force dark */
    color: white;
}

/* DROPDOWN OPTIONS */
.form-group select option {
    background-color: #0f0f0f;
    color: white;
}

/* SELECTED OPTION (highlight) */
.form-group select option:checked {
    background-color: #b87333;
    color: black;
}
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

/* BUTTON */
.submit-btn {
    width: 100%;
    padding: 16px;
    margin-top: 40px;
    letter-spacing: 1.5px;
    background: transparent;
    border: 1px solid #b87333;
    color: #b87333;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #b87333;
    color: black;
}

@media (max-width: 768px) {

    .contact-form {
        max-width: 500px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

}

.footer-credit {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #888;
}

.footer-credit a {
    color: #b87333;
    text-decoration: none;
}

.footer-credit a:hover {
    text-decoration: underline;
}
