
/* ==========================
   GLOBAL STYLES
========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #121212;
    color: #d9d9d9;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

/* ==========================
   NAVIGATION
========================== */

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
}

.navbar {
    max-width: 1400px;
    margin: auto;
    padding: 15px 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #d9d9d9;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active {
    color: #f2c300;
}

/* ==========================
   HERO SECTION
========================== */

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.65),
            rgba(122,0,0,0.35)
        );
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    color: #f2c300;
    letter-spacing: 5px;
    text-shadow: 0 0 20px #000;
}

.hero h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-top: 20px;
}

.hero p {
    margin-top: 25px;
    font-size: 1.2rem;
    color: #d9d9d9;
}

/* ==========================
   BUTTONS
========================== */

.hero-buttons {
    margin-top: 40px;
}

.btn {
    display: inline-block;
    background: #f2c300;
    color: #121212;
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: bold;
    margin: 10px;
    transition: 0.4s;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px #f2c300;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #f2c300;
    color: #f2c300;
}

/* ==========================
   SECTIONS
========================== */

section {
    padding: 100px 10%;
}

section h2 {
    text-align: center;
    color: #f2c300;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-family: 'Oswald', sans-serif;
}

/* ==========================
   SERVICES
========================== */

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 30px;
}

.service-card {
    background: #1b1b1b;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s;
    border: 1px solid #2a2a2a;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #f2c300;
    box-shadow: 0 0 25px rgba(242,195,0,0.3);
}

.service-card h3 {
    color: #f2c300;
    margin-bottom: 20px;
}

/* ==========================
   WHY US
========================== */

.reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 25px;
}

.reason {
    background: linear-gradient(
        135deg,
        #5a0000,
        #7a0000
    );

    padding: 30px;
    border-radius: 15px;
    text-align: center;
    font-weight: bold;
    color: #ffffff;
}

/* ==========================
   PROJECTS
========================== */

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
}

.project-placeholder {
    height: 300px;
	width: 300px;
    border: 2px dashed #f2c300;
    border-radius: 20px;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #f2c300;
    text-align: center;
    padding: 20px;
    background: #1a1a1a;
}

/* ==========================
   CTA SECTION
========================== */

.cta {
    text-align: center;
    background:
        linear-gradient(
            135deg,
            #5a0000,
            #9b0000
        );
}

.cta h2 {
    color: #ffffff;
}

.cta p {
    margin-bottom: 40px;
}

/* ==========================
   FOOTER
========================== */

footer {
    background: #090909;
    text-align: center;
    padding: 50px 20px;
}

footer h3 {
    color: #f2c300;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

footer p {
    margin: 10px 0;
}

/* ==========================
   SCROLLBAR
========================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #121212;
}

::-webkit-scrollbar-thumb {
    background: #f2c300;
    border-radius: 20px;
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 900px) {

    .hero h1 {
        font-size: 3rem;
    }

    .hero h2 {
        font-size: 1.4rem;
    }

    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }

    .logo img {
        height: 60px;
    }

    .navbar {
        padding: 15px 20px;
    }
}

/* ==========================
   SCROLL ANIMATIONS
========================== */

.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================
   LOADER
========================== */

.loader {
    position: fixed;
    inset: 0;
    background: #121212;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader img {
    width: 220px;
    animation: pulse 2s infinite;
}

.loader-hidden {
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* ==========================
   PAGE HERO
========================== */

.page-hero {
    height: 45vh;
    background:
        linear-gradient(
            rgba(0,0,0,0.7),
            rgba(122,0,0,0.5)
        ),
        url("../images/about-banner.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
}

.page-hero h1 {
    font-size: 4rem;
    color: #f2c300;
    font-family: 'Oswald', sans-serif;
}

.page-hero p {
    margin-top: 20px;
    font-size: 1.2rem;
}

/* ==========================
   ABOUT SECTION
========================== */

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-top: 20px;
    line-height: 1.8;
}

.about-image .project-placeholder {
    height: 400px;
}
.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* ==========================
   MISSION
========================== */

.mission {
    text-align: center;
}

.mission p {
    max-width: 900px;
    margin: auto;
    line-height: 1.8;
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 900px) {

    .about-section {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }
}

/* ==========================
   SERVICES PAGE
========================== */

.services-page {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-image .project-placeholder {
    height: 350px;
}

.service-content h2 {
    color: #f2c300;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 20px;
}

.service-content p {
    line-height: 1.8;
    color: #d9d9d9;
}

.reverse .service-image {
    order: 2;
}

.reverse .service-content {
    order: 1;
}

.slider {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 20px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slider-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.slider-buttons button {
    background: #f2c300;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 8px;
}



.before-after {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 20px;
}

.img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Images */
.after-img,
.before-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BEFORE is top layer (right side controlled) */
.before-img {
    clip-path: inset(0 0 0 50%);
}

/* Labels */
.label {
    position: absolute;
    top: 10px;
    background: rgba(0,0,0,0.6);
    color: #f2c300;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 5px;
    z-index: 6;
}

.after-label {
    left: 10px;
}

.before-label {
    right: 10px;
}

/* Vertical divider line */
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: #f2c300;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Grab handle circle */
.handle-circle {
    width: 25px;
    height: 25px;
    background: #f2c300;
    border-radius: 50%;
    border: 3px solid #121212;
    cursor: grab;
}

/* Invisible slider */
.range-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 10;
}

.label {
    position: absolute;
    top: 10px;
    background: rgba(0,0,0,0.6);
    color: #f2c300;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 5px;
    z-index: 6;

    transition: opacity 0.3s ease;
}

/* hidden state */
.label.hide {
    opacity: 0;
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 900px) {

    .service-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .reverse .service-image,
    .reverse .service-content {
        order: unset;
    }
}

/* ==========================
   GALLERY PAGE
========================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.gallery-item {
    height: 300px;
    background: #1a1a1a;
    border: none;
    border-radius: 20px;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 0;
    overflow: hidden;

    box-shadow: 0 5px 20px rgba(0,0,0,0.4);

    transition: 0.4s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(242, 195, 0, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
}

/* ==========================
   QUOTE PAGE
========================== */

.quote-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 100px 10%;
}

.quote-form {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
} 

.quote-form {
    width: 100%;
    max-width: 800px;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    padding: 18px;
    background: #1a1a1a;
    border: 2px solid #2a2a2a;
    border-radius: 12px;
    color: #d9d9d9;
    font-size: 1rem;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: #f2c300;
}

.upload-label {
    color: #f2c300;
    font-weight: bold;
}

/* ==========================
   CONTACT PAGE
========================== */

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
}

.contact-info h2 {
    color: #f2c300;
    margin-bottom: 30px;
}

.contact-info p {
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-form-container {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
}

.contact-form-container h2 {
    color: #f2c300;
    margin-bottom: 30px;
}

.contact-form-container form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-container input,
.contact-form-container textarea {
    padding: 18px;
    border: 2px solid #2a2a2a;
    border-radius: 12px;
    background: #121212;
    color: #d9d9d9;
}

.contact-form-container input:focus,
.contact-form-container textarea:focus {
    outline: none;
    border-color: #f2c300;
}

@media (max-width: 900px) {
    .contact-section {
        grid-template-columns: 1fr;
    }
}

/* ==========================
   PROJECT IMAGES
========================== */

.project-placeholder {
    border: none;
    padding: 0;
    overflow: hidden;
}

.project-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}









.contact-info a {
    color: #f2c300;
    text-decoration: none;
    transition: 0.3s;
}

.contact-info a:hover {
    color: #ffffff;
    text-decoration: underline;
}




