* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #f5f5f5;
    color: #222;
    padding-top: 80px;
}

/* Loader */
#loader {
    position: fixed;
    inset: 0;
    background: #111;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    z-index: 9999;
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    background: #111;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 80px;
    z-index: 1000;
}


.logo span {
    color: #f39c12;
}

nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

/* Hero */
/* Hero Modern Upgrade */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;

}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gradient Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(0,0,0,0.85) 30%,
        rgba(0,0,0,0.65) 60%,
        rgba(0,0,0,0.4) 100%
    );
}

/* Hero Content */
.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #f39c12;
}

.hero-content p {
    max-width: 600px;
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ddd;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn.primary {
    background: #f39c12;
    color: black;
}

.btn.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn.secondary:hover {
    background: white;
    color: black;
}

.btn {
    padding: 14px 28px;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: all .3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}


.btn {
    margin-top: 20px;
    display: inline-block;
    background: #f39c12;
    padding: 12px 25px;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: transform .3s;
}

.btn:hover {
    transform: scale(1.1);
}

/* Sections */
.section {
    padding: 6rem 2rem;
    text-align: center;
}

.dark {
    background: #111;
    color: white;
}

/* Services */
/* Services Advanced Upgrade */
.services-section {
    background: linear-gradient(180deg, #111 0%, #1c1c1c 100%);
    color: white;
    padding: 7rem 2rem;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-header h2 {
    font-size: 2.5rem;
    margin: 15px 0;
}

.services-header p {
    color: #bbb;
    font-size: 1.1rem;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: #f39c12;
    color: black;
    font-weight: bold;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-radius: 50px;
}

/* Upgrade service cards */
.services-section .card {
    background: #1f1f1f;
    color: white;
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(6px);
}

.services-section .card p {
    color: #ccc;
}

.services-section .card:hover {
    border-color: #f39c12;
    box-shadow: 0 25px 60px rgba(243,156,18,0.2);
}

/* Icon upgrade */
.services-section .icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #f39c12;
}


/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery img {
    width: 100%;
    height: 250px;              /* forces same height */
    object-fit: cover;          /* crops nicely */
    border-radius: 15px;
    transition: transform .4s, box-shadow .4s;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
}


/* Footer */
footer {
    background: black;
    color: white;
    padding: 20px;
    text-align: center;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile */
@media(max-width: 768px) {

    header {
        height: 70px;
        padding: 0 1.2rem;
    }

    /* Navigation */
    nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: #111;
        display: flex;
        flex-direction: column;
        padding: 40px 20px;
        gap: 25px;
        transition: 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.4);
    }

    nav a {
        margin: 0;
        font-size: 1.1rem;
    }

    nav.show {
        right: 0;
    }

    /* Hamburger */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .menu-toggle span {
        width: 25px;
        height: 3px;
        background: white;
        border-radius: 2px;
        transition: 0.3s;
    }

    /* Hero adjustments */
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* Forms stack properly */
    .form-row {
        flex-direction: column;
    }

    /* Section padding smaller */
    .section {
        padding: 4rem 1.2rem;
    }
}


.card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: transform .4s, box-shadow .4s;
}

.card .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.card p {
    font-size: 0.95rem;
    color: #555;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

/* Section Titles Upgrade */
.section h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    position: relative;
}

.section h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #f39c12;
    display: block;
    margin: 10px auto 0;
    border-radius: 10px;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #666;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: left;
    transition: transform .4s, box-shadow .4s;
    border-top: 5px solid #f39c12;
}

.about-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.about-card p {
    color: #555;
    line-height: 1.6;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Make dark sections cleaner */
.dark .section-intro {
    color: #ccc;
}

/* Slow Background Zoom Effect */
@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.12);
    }
}

.hero img {
    animation: slowZoom 30s ease-in-out infinite alternate;
}

/* Footer Upgrade */
footer {
    background: #0d0d0d;
    padding: 30px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-content p {
    color: #aaa;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #1c1c1c;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #f39c12;
    color: black;
    transform: translateY(-5px);
}

/* Logo Upgrade */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.logo-text span {
    color: #f39c12;
}

.logo img {
    height: 75px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Advanced Quote Form */
.quote-form {
    max-width: 900px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    flex: 1;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: #1f1f1f;
    color: white;
    font-size: 0.95rem;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: #aaa;
}

.quote-form select {
    cursor: pointer;
}

.quote-form textarea {
    resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: #f39c12;
    box-shadow: 0 0 10px rgba(243,156,18,0.3);
}

.quote-form button {
    align-self: flex-start;
    margin-top: 10px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Home Highlights */
.services-highlight {
    background: #f8f8f8;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px auto;
    max-width: 1100px;
}

.highlight-card {
    background: white;
    padding: 40px 25px;
    border-radius: 15px;
    transition: 0.4s;
    border-top: 5px solid #f39c12;
}

.highlight-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #f39c12;
}

.highlight-card h3 {
    margin-bottom: 10px;
}

.highlight-card p {
    color: #555;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}



