/* ================================================
   STRUXCORE CUSTOM CONSTRUCTION - SHARED STYLES
   ================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
}

/* NAVIGATION */
nav {
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav img {
    height: 70px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

nav ul li a:hover {
    color: #f7941d;
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* PAGE HEADER */
.page-header {
    background-color: #1a1a1a;
    text-align: center;
    padding: 60px 40px;
}

.page-header h1 {
    color: #f7941d;
    font-size: 48px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-header p {
    color: #ccc;
    font-size: 18px;
}

/* HERO SECTION */
.hero {
    width: 100%;
    height: 500px;
    background-image: url('images/FB_Background.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 8px;
}

.hero-content h1 {
    color: #ffffff;
    font-size: 48px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-content p {
    color: #f7941d;
    font-size: 22px;
    margin-bottom: 20px;
}

.hero-content a {
    background-color: #f7941d;
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
}

.hero-content a:hover {
    background-color: #d4780f;
}

/* SERVICES SECTION */
.services {
    background-color: #f4f4f4;
    padding: 60px 40px;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.services p.subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 18px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 30px;
    border-radius: 6px;
    border-bottom: 4px solid #f7941d;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #f7941d;
    text-transform: uppercase;
}

.service-card p {
    font-size: 14px;
    color: #ccc;
}

/* CALL TO ACTION */
.cta {
    background-color: #f7941d;
    text-align: center;
    padding: 60px 40px;
}

.cta h2 {
    color: #ffffff;
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.cta p {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 30px;
}

.cta a {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
}

.cta a:hover {
    background-color: #333;
}

/* SERVICE BLOCKS (Services page) */
.service-block {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 2px solid #f0f0f0;
}

.service-block:last-child {
    border-bottom: none;
}

.service-icon {
    background-color: #1a1a1a;
    color: #f7941d;
    font-size: 36px;
    min-width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border-bottom: 4px solid #f7941d;
}

.service-info h2 {
    font-size: 28px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.service-info p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

.service-info ul {
    list-style: none;
    padding: 0;
}

.service-info ul li {
    padding: 5px 0;
    color: #555;
    font-size: 15px;
}

.service-info ul li::before {
    content: "✔ ";
    color: #f7941d;
    font-weight: bold;
}

/* GALLERY */
.gallery {
    padding: 60px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery h2 {
    font-size: 32px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 10px;
    border-left: 6px solid #f7941d;
    padding-left: 15px;
}

.gallery p.section-desc {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
    padding-left: 21px;
}

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
}

.photo-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border-bottom: 4px solid #f7941d;
}

.photo-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.photo-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #f7941d;
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 4px;
}

.photo-card p {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 12px 15px;
    font-size: 14px;
}

.placeholder-card {
    border-radius: 6px;
    overflow: hidden;
    border-bottom: 4px solid #f7941d;
}

.placeholder-img {
    width: 100%;
    height: 300px;
    background-color: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.placeholder-img span {
    font-size: 48px;
}

.placeholder-img p {
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.placeholder-card p.caption {
    background-color: #1a1a1a;
    color: #555;
    padding: 12px 15px;
    font-size: 14px;
    font-style: italic;
}

/* FORMS */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f7941d;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.required {
    color: #f7941d;
}

.submit-btn {
    background-color: #f7941d;
    color: #ffffff;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    align-self: flex-start;
}

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

/* SUCCESS MESSAGE */
.success-message {
    display: none;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 30px;
    border-radius: 6px;
    border-left: 6px solid #f7941d;
    text-align: center;
    margin-top: 20px;
}

.success-message h3 {
    color: #f7941d;
    font-size: 24px;
    margin-bottom: 10px;
}

.success-message p {
    color: #ccc;
    font-size: 16px;
}

/* FOOTER */
footer {
    background-color: #1a1a1a;
    color: #aaa;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

footer span {
    color: #f7941d;
}
/* QUOTE PAGE */
.quote-section {
    padding: 60px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.quote-section h2 {
    font-size: 28px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 10px;
    border-left: 6px solid #f7941d;
    padding-left: 15px;
}

.quote-section p.intro {
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
    padding-left: 21px;
    line-height: 1.7;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

/* CONTACT PAGE */
.contact-section {
    padding: 60px 40px;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 28px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 10px;
    border-left: 6px solid #f7941d;
    padding-left: 15px;
}

.contact-info p.intro {
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
    padding-left: 21px;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    background-color: #1a1a1a;
    color: #f7941d;
    font-size: 24px;
    min-width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border-bottom: 3px solid #f7941d;
}

.contact-item h3 {
    font-size: 14px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.contact-item a,
.contact-item p {
    font-size: 16px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: bold;
}

.contact-item a:hover {
    color: #f7941d;
}

.contact-item .sub {
    font-size: 13px;
    color: #999;
    font-weight: normal;
    margin-top: 3px;
}

.social-section {
    margin-top: 40px;
}

.social-section h3 {
    font-size: 16px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: bold;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 3px solid #f7941d;
    transition: background-color 0.2s;
}

.social-btn:hover {
    background-color: #333;
}

.contact-form-section h2 {
    font-size: 28px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 10px;
    border-left: 6px solid #f7941d;
    padding-left: 15px;
}

.contact-form-section p.intro {
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
    padding-left: 21px;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* WHY US SECTION */
.why-us {
    background-color: #f4f4f4;
    padding: 60px 40px;
    text-align: center;
}

.why-us h2 {
    font-size: 32px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.why-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 6px;
    border-bottom: 4px solid #f7941d;
}

.why-card span {
    font-size: 36px;
    display: block;
    margin-bottom: 15px;
}

.why-card h3 {
    color: #f7941d;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.why-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

/* SERVICES PAGE */
.services-section {
    padding: 60px 40px;
    max-width: 1100px;
    margin: 0 auto;
}
/* SERVICES PAGE LAYOUT */
.services-page-section {
    padding: 60px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-block {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 2px solid #f0f0f0;
    background: none;
}

.service-block:last-child {
    border-bottom: none;
}

.service-icon {
    background-color: #1a1a1a;
    color: #f7941d;
    font-size: 36px;
    min-width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border-bottom: 4px solid #f7941d;
    flex-shrink: 0;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 28px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-align: left;
}

.service-info p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
    text-align: left;
}

.service-info ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-info ul li {
    padding: 5px 0;
    color: #555;
    font-size: 15px;
}

.service-info ul li::before {
    content: "✔ ";
    color: #f7941d;
    font-weight: bold;
}