/* =========================
   BASIC RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
}


/* =========================
   NAVBAR
========================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.navbar {
    max-width: 1200px;
    margin: auto;
    height: 75px;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 21px;
    font-weight: 800;
}

.logo i {
    font-size: 28px;
    color: #ff6b00;
}

.logo span span {
    color: #ff6b00;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ff6b00;
}

.menu-btn {
    display: none;
    border: none;
    background: none;
    font-size: 25px;
    cursor: pointer;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    background-image: 
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("images/hero.jpg");

    background-size: cover;
    background-position: center;

    color: white;
    padding: 100px 8%;
}

.hero-content {
    max-width: 700px;
}

.small-title {
    color: #ff7a00;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: clamp(45px, 4vw, 78px);
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero h1 span {
    color: #ff7a00;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 14px 28px;
    border-radius: 8px;

    font-weight: 600;
    transition: 0.3s;
}

.primary-btn {
    background: #ff6b00;
    color: white;
}

.primary-btn:hover {
    background: #e55e00;
    transform: translateY(-3px);
}

.secondary-btn {
    background-color: grey;
    border: 2px solid white;
    color: white;
}

.secondary-btn:hover {
    background: white;
    color: #222;
}


/* =========================
   STATS
========================= */

.stats {
    max-width: 1100px;
    margin: -60px auto 80px;

    position: relative;
    z-index: 5;

    background: white;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);

    overflow: hidden;
}

.stat-box {
    text-align: center;
    padding: 30px 15px;
    border-right: 1px solid #eee;
}

.stat-box:last-child {
    border-right: none;
}

.stat-box i {
    font-size: 28px;
    color: #ff6b00;
}

.stat-box h2 {
    font-size: 32px;
    margin: 5px 0;
}

.stat-box p {
    color: #777;
    font-size: 14px;
}


/* =========================
   GENERAL SECTION
========================= */

.section {
    max-width: 1200px;
    margin: auto;
    padding: 90px 20px;
}

.section-heading {
    text-align: center;
    margin-bottom: 55px;
}

.section-heading > p:first-child {
    color: #ff6b00;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-heading h2 {
    font-size: 42px;
    margin: 8px 0;
}

.section-heading h2 span {
    color: #ff6b00;
}

.line,
.owner-line {
    width: 70px;
    height: 4px;
    background: #ff6b00;
    margin: 15px auto;
    border-radius: 10px;
}

.description {
    max-width: 600px;
    margin: auto;
    color: #777;
}


/* =========================
   SERVICES
========================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    padding: 35px 28px;

    background: powderblue;
    border-radius: 15px;

    box-shadow: 0 8px 30px rgba(0,0,0,0.08);

    transition: 0.35s;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: #ff6b00;
}

.service-icon {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: wheat;
    color: #ff6b00;

    font-size: 28px;

    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 21px;
    margin-bottom: 10px;
}

.service-card p {
    color: #777;
    margin-bottom: 20px;
}

.service-card a {
    color: #ff6b00;
    font-weight: 600;
}


/* =========================
   WHY US
========================= */

.why-us {
    background: #111;
    color: white;
    padding: 100px 20px;
}

.why-container {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.why-image img {
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.why-content h2 {
    font-size: 45px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.why-content h2 span {
    color: #ff6b00;
}

.why-content > p {
    color: #bbb;
}

.features {
    margin-top: 30px;
}

.feature {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
}

.feature i {
    color: #ff6b00;
    font-size: 22px;
}

.feature h3 {
    margin-bottom: 3px;
}

.feature p {
    color: #aaa;
}


/* =========================
   GALLERY
========================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    height: 260px;
    overflow: hidden;
    border-radius: 15px;
}

.gallery-item img {
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}


/* =========================
   TESTIMONIALS
========================= */

.testimonials {
    background: #f8f8f8;
    padding: 100px 20px;
}

.testimonial-container {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.stars {
    color: #ffb000;
    font-size: 22px;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #666;
    margin-bottom: 20px;
}

.testimonial-card h3 {
    font-size: 18px;
}

.testimonial-card span {
    color: #ff6b00;
    font-size: 13px;
}


/* =========================
   OWNER
========================= */

.owner-section {
    padding: 50px 20px;
    background: white;
}

.owner-container {
    max-width: 1050px;
    margin: auto;

    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    align-items: center;
}

.owner-photo {
    position: relative;
}

.owner-photo::before {
    content: "";

    position: absolute;

    width: 100%;
    height: 100%;

    border: 4px solid #ff6b00;

    border-radius: 20px;

    top: 2px;
    left: 5px;

    z-index: 0;
}

.owner-photo img {
    position: relative;
    z-index: 1;

    height: 480px;
    object-fit: cover;

    border-radius: 20px;
}

.owner-content .small-title {
    color: #ff6b00;
}

.owner-content h2 {
    font-size: 40px;
    line-height: 1.2;
    margin: 10px 0;
}

.owner-content h2 span {
    color: #ff6b00;
}

.owner-line {
    margin: 20px 0;
}

.owner-content h3 {
    font-size: 25px;
}

.owner-role {
    color: #ff6b00;
    font-weight: 600;
    margin-bottom: 20px;
}

.owner-content > p {
    color: #666;
    margin-bottom: 15px;
}

.owner-signature {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
}

.owner-signature span {
    font-size: 20px;
    font-weight: 700;
}

.owner-signature small {
    color: #ff6b00;
}


/* =========================
   CONTACT
========================= */

.contact {
    padding: 100px 20px;
    background: #f7f7f7;
}

.contact-container {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 20px;

    background: white;
    padding: 20px;
    border-radius: 12px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-box i {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff0e6;
    color: #ff6b00;

    border-radius: 50%;
    font-size: 20px;
}

.contact-box p {
    color: #777;
}

.contact-form {
    background: white;
    padding: 35px;
    border-radius: 15px;

    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;

    padding: 14px 16px;
    margin-bottom: 15px;

    border: 1px solid #ddd;
    border-radius: 8px;

    font-family: inherit;
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #ff6b00;
}

.contact-form button {
    border: none;
    cursor: pointer;
}


/* =========================
   FOOTER
========================= */

footer {
    background: #111;
    color: white;
    padding-top: 60px;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px 50px;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-about p {
    color: #aaa;
    max-width: 350px;
    margin-top: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links h3,
.footer-social h3 {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
}

.footer-links a:hover {
    color: #ff6b00;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #222;

    transition: 0.3s;
}

.social-icons a:hover {
    background: #ff6b00;
    transform: translateY(-4px);
}

.copyright {
    text-align: center;
    border-top: 1px solid #292929;
    padding: 20px;
    color: #777;
}


/* =========================
   WHATSAPP
========================= */

.whatsapp-btn {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #25d366;
    color: white;

    font-size: 30px;

    z-index: 999;

    box-shadow: 0 5px 20px rgba(0,0,0,0.2);

    animation: pulse 2s infinite;
}

@keyframes pulse {

    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37,211,102,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }

}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .nav-links {
        position: absolute;

        top: 75px;
        left: -100%;

        width: 100%;

        background: white;

        flex-direction: column;

        text-align: center;

        padding: 25px;

        transition: 0.3s;
    }

    .nav-links.active {
        left: 0;
    }

    .menu-btn {
        display: block;
    }

    .stats {
        margin: -30px 20px 50px;
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-box {
        border-bottom: 1px solid #eee;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .testimonial-container {
        grid-template-columns: 1fr;
    }

    .owner-container {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .owner-photo {
        max-width: 400px;
        margin: auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 600px) {

    .hero {
        padding: 100px 25px 60px;
    }

    .hero h1 {
        font-size: 45px;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .stat-box {
        border-right: none;
    }

    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .why-content h2 {
        font-size: 35px;
    }

    .why-image img {
        height: 350px;
    }

    .owner-content h2 {
        font-size: 32px;
    }

    .owner-photo img {
        height: 400px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

}