/* ================= RESET ================= */

* {

    margin:0;

    padding:0;

    box-sizing:border-box;

}


html {

    scroll-behavior:smooth;

}


body {

    font-family:Arial, Helvetica, sans-serif;

    background:#111;

    color:white;

    overflow-x:hidden;

}


/* ================= NAVIGATION ================= */

nav {

    width:100%;

    height:90px;

    background:#050505;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 8%;

    position:relative;

    z-index:10;

}



.logo {

    width:130px;

    height:auto;

}



.logo-container {

    display:flex;

    align-items:center;

}



.nav-links {

    display:flex;

    gap:40px;

}



.nav-links a {

    color:white;

    text-decoration:none;

    font-size:17px;

    font-weight:600;

    transition:.3s;

}



.nav-links a:hover {

    color:#d4af37;

}



/* ================= HERO ================= */

.hero {

    position:relative;

    min-height:820px;

    display:flex;

    align-items:center;

    padding:0 8%;

    background:

    linear-gradient(
    rgba(0,0,0,.55),
    rgba(0,0,0,.65)
    ),

    url("images/ironwork.jpg");

    background-size:cover;

    background-position:center;

}



.hero-overlay {

    position:absolute;

    inset:0;

    background:

    linear-gradient(
    90deg,
    rgba(0,0,0,.8),
    rgba(0,0,0,.25)
    );

}



.hero-content {

    position:relative;

    max-width:700px;

}



.hero h1 {

    font-size:54px;

    line-height:1.15;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:25px;

}



.hero h1 span {

    display:block;

    color:#d4af37;

}



.hero h3 {

    color:#d4af37;

    font-size:18px;

    letter-spacing:2px;

    margin-bottom:25px;

}



.hero p {

    color:#eee;

    font-size:20px;

    line-height:1.7;

    margin-bottom:35px;

}



.hero-buttons {

    display:flex;

    gap:20px;

}



.btn {

    display:inline-block;

    padding:15px 35px;

    background:#d4af37;

    color:#111;

    text-decoration:none;

    border-radius:30px;

    font-weight:700;

    transition:.3s;

}



.btn:hover {

    background:white;

    transform:translateY(-4px);

}



.btn-outline {

    background:transparent;

    border:2px solid #d4af37;

    color:white;

}



.btn-outline:hover {

    background:#d4af37;

    color:#111;

}



.hero-features {

    display:flex;

    gap:15px;

    margin-top:40px;

}



.hero-feature {

    background:rgba(255,255,255,.12);

    border:1px solid rgba(212,175,55,.5);

    padding:12px 20px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

}

/* ================= SERVICE AREA ================= */

.service-area {

    background:#ffffff;

    color:#111;

    text-align:center;

    padding:90px 8%;

}



.service-area-content {

    max-width:850px;

    margin:auto;

}



.service-area h2 {

    font-size:42px;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:20px;

}



.section-line {

    width:90px;

    height:4px;

    background:#d4af37;

    margin:20px auto 35px;

    border-radius:10px;

}



.service-area p {

    font-size:20px;

    line-height:1.8;

    color:#555;

    margin-bottom:20px;

}



/* ================= SERVICES ================= */

.services {

    background:#1c1c1c;

    color:white;

    text-align:center;

    padding:90px 8%;

}



.section-header {

    max-width:850px;

    margin:auto;

}



.section-header h2 {

    font-size:42px;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:20px;

}



.section-header p {

    color:#ddd;

    font-size:20px;

    line-height:1.8;

    margin-bottom:50px;

}



.service-container {

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:30px;

}



.service-card {

    position:relative;

    background:#292929;

    width:260px;

    min-height:250px;

    padding:40px 30px;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.45);

    transition:.3s;

}



.service-card:hover {

    transform:translateY(-10px);

}



.service-accent {

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:#d4af37;

}



.service-card h3 {

    color:#d4af37;

    font-size:24px;

    margin-top:15px;

    margin-bottom:20px;

}



.service-card p {

    color:#ddd;

    line-height:1.7;

}



/* ================= GALLERY ================= */

.gallery {

    background:#0c0c0c;

    color:white;

    text-align:center;

    padding:90px 8%;

}



.gallery h2 {

    font-size:42px;

    text-transform:uppercase;

    letter-spacing:2px;

}



.gallery-line {

    width:90px;

    height:4px;

    background:#d4af37;

    margin:20px auto 30px;

}



.gallery-header p {

    max-width:850px;

    margin:auto;

    color:#ddd;

    font-size:20px;

    line-height:1.8;

}



.gallery-category h3 {

    color:#d4af37;

    font-size:28px;

    margin-top:50px;

    margin-bottom:25px;

}



.gallery-category h3::after {

    content:"";

    display:block;

    width:70px;

    height:3px;

    background:#d4af37;

    margin:12px auto 0;

}



.gallery-container {

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:20px;

}



.gallery-container img {

    width:250px;

    height:180px;

    object-fit:cover;

    border-radius:10px;

    transition:.3s;

}



.gallery-container img:hover {

    transform:scale(1.05);

}

/* ================= WHY CHOOSE US ================= */

.why-us {

    background:#111;

    color:white;

    text-align:center;

    padding:90px 8%;

}


.why-container {

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:30px;

    margin-top:50px;

}



.why-card {

    position:relative;

    background:#292929;

    width:260px;

    min-height:230px;

    padding:40px 30px;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.45);

    transition:.3s;

}



.why-card:hover {

    transform:translateY(-10px);

}



.why-accent {

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:#d4af37;

}



.why-card h3 {

    color:#d4af37;

    font-size:24px;

    margin-top:15px;

    margin-bottom:20px;

}



.why-card p {

    color:#ddd;

    line-height:1.7;

}



/* ================= CONTACT ================= */


.contact {

    background:#d4af37;

    color:#111;

    text-align:center;

    padding:90px 8%;

}



.contact-header {

    max-width:850px;

    margin:auto;

}



.contact-header h2 {

    font-size:42px;

    text-transform:uppercase;

    letter-spacing:2px;

}



.contact-line {

    width:90px;

    height:4px;

    background:#111;

    margin:20px auto 30px;

}



.contact-header p {

    font-size:20px;

    line-height:1.8;

}



.contact-box {

    background:#111;

    color:white;

    max-width:550px;

    margin:50px auto 0;

    padding:45px 35px;

    border-radius:15px;

    box-shadow:0 15px 35px rgba(0,0,0,.35);

}



.contact-logo {

    width:120px;

    margin-bottom:20px;

}



.contact-box h3 {

    color:#d4af37;

    font-size:26px;

    margin-bottom:25px;

}



.contact-box p {

    font-size:18px;

    margin:12px 0;

}



.contact-button {

    display:inline-block;

    margin-top:25px;

    padding:15px 35px;

    background:#d4af37;

    color:#111;

    border-radius:30px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}



.contact-button:hover {

    background:white;

}



/* ================= FOOTER ================= */


footer {

    background:#050505;

    color:white;

    text-align:center;

    padding:70px 8% 35px;

}



.footer-content {

    max-width:700px;

    margin:auto;

}



.footer-logo {

    width:150px;

    margin-bottom:20px;

}



footer h3 {

    color:#d4af37;

    font-size:26px;

    margin-bottom:15px;

}



footer p {

    color:#ddd;

    font-size:17px;

    line-height:1.8;

}



.footer-line {

    width:80px;

    height:3px;

    background:#d4af37;

    margin:35px auto 25px;

}



.copyright {

    color:#888;

    font-size:14px;

}

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width:768px){


/* NAVIGATION */

nav {

    height:auto;

    flex-direction:column;

    padding:20px;

}


.logo {

    width:110px;

}


.nav-links {

    margin-top:20px;

    flex-wrap:wrap;

    justify-content:center;

    gap:20px;

}


/* HERO */

.hero {

    min-height:700px;

    padding:120px 20px 60px;

    align-items:center;

}


.hero-content {

    text-align:center;

}


.hero h1 {

    font-size:32px;

}


.hero h3 {

    font-size:13px;

}


.hero p {

    font-size:16px;

}


.hero-buttons {

    flex-direction:column;

    align-items:center;

}


.btn {

    width:280px;

}


.hero-features {

    flex-direction:column;

    align-items:center;

}


.hero-feature {

    width:280px;

}



/* SERVICE AREA */

.service-area h2,
.section-header h2,
.gallery h2,
.contact-header h2 {

    font-size:30px;

}


.service-area p,
.section-header p,
.gallery-header p,
.contact-header p {

    font-size:17px;

}



/* SERVICES */

.service-container {

    flex-direction:column;

    align-items:center;

}


.service-card {

    width:300px;

}



/* GALLERY */

.gallery-container {

    flex-direction:column;

    align-items:center;

}


.gallery-container img {

    width:280px;

    height:200px;

}



/* WHY US */

.why-container {

    flex-direction:column;

    align-items:center;

}


.why-card {

    width:300px;

}



/* CONTACT */

.contact-box {

    width:90%;

    padding:35px 20px;

}


.contact-logo {

    width:100px;

}



/* FOOTER */

.footer-logo {

    width:120px;

}


}

/* ================= PREMIUM ANIMATIONS ================= */


/* Smooth card movement */

.service-card,
.why-card,
.gallery-container img {

    transition:
    transform .35s ease,
    box-shadow .35s ease;

}



/* Card hover upgrade */

.service-card:hover,
.why-card:hover {

    transform:translateY(-12px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.45);

}



/* Gallery hover */

.gallery-container img:hover {

    transform:scale(1.06);

    box-shadow:
    0 15px 30px rgba(0,0,0,.5);

}



/* Button polish */

.btn,
.contact-button {

    transition:
    transform .3s ease,
    background .3s ease,
    color .3s ease;

}


.btn:hover,
.contact-button:hover {

    transform:translateY(-4px);

}



/* Section entrance animation */

.service-area-content,
.service-card,
.why-card,
.contact-box {

    animation:fadeUp .8s ease forwards;

}



@keyframes fadeUp {


    from {

        opacity:0;

        transform:translateY(35px);

    }


    to {

        opacity:1;

        transform:translateY(0);

    }

}

/* ================= CARD HOVER FIX ================= */

.service-card:hover,
.why-card:hover {

    transform: translateY(-12px) !important;

    box-shadow:
    0 20px 40px rgba(0,0,0,.45) !important;

}

/* ================= CONTACT LINKS ================= */


.contact-box a {

    color:white;

    text-decoration:none;

    transition:.3s;

}


.contact-box a:hover {

    color:#d4af37;

}

/* ================= QUOTE FORM ================= */

.quote-box {
    background:#111;
    color:white;
    max-width:750px;
    margin:50px auto 0;
    padding:45px;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,.35);
    text-align:left;
}

.quote-box form {
    width:100%;
}

.form-group {
    margin-bottom:25px;
}

.form-row {
    display:flex;
    gap:20px;
}

.form-row .form-group {
    flex:1;
}

.form-group label {
    display:block;
    color:#d4af37;
    font-size:16px;
    font-weight:700;
    margin-bottom:8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width:100%;
    padding:14px 16px;
    background:#1c1c1c;
    border:1px solid #444;
    border-radius:8px;
    color:white;
    font-family:Arial, Helvetica, sans-serif;
    font-size:16px;
    outline:none;
    transition:.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color:#d4af37;
    box-shadow:0 0 0 2px rgba(212,175,55,.15);
}

.form-group textarea {
    resize:vertical;
    min-height:140px;
}

.form-group select {
    cursor:pointer;
}

.form-group select option {
    background:#1c1c1c;
    color:white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color:#888;
}

.form-group input[type="file"] {
    padding:12px;
    cursor:pointer;
}

.form-group small {
    display:block;
    margin-top:8px;
    color:#999;
    font-size:13px;
    line-height:1.5;
}

.quote-submit {
    width:100%;
    padding:16px 30px;
    border:none;
    border-radius:30px;
    background:#d4af37;
    color:#111;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.quote-submit:hover {
    background:white;
    transform:translateY(-4px);
}


/* ================= QUOTE FORM MOBILE ================= */

@media (max-width:768px){

    .quote-box {
        width:90%;
        padding:30px 20px;
    }

    .form-row {
        flex-direction:column;
        gap:0;
    }

    .form-group label {
        font-size:15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size:16px;
    }

    .quote-submit {
        padding:15px 25px;
        font-size:16px;
    }

}