@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
    /* 🌟 PRIMARY BRAND */
    --primary: #f47032;
    --primary-dark: #d85f22;
    --primary-soft: rgba(244, 112, 50, 0.15);

    /* 🖤 BACKGROUND SYSTEM (industrial dark garage style) */
    --bg: #0b0f14;          /* main background */
    --bg-soft: #111824;     /* sections/cards depth */
    --bg-elevated: #161f2e; /* lifted elements */
    --card: #111827;

    /* 🧱 BORDERS */
    --border: #243042;
    --border-soft: rgba(255,255,255,0.06);

    /* ✍️ TEXT */
    --text: #ffffff;
    --text-muted: #a7b0be;
    --text-dim: #6b7686;

    /* 🌑 OVERLAY (for hero images) */
    --overlay: rgba(0,0,0,0.65);

    /* EFFECTS */
    --glow: rgba(244, 112, 50, 0.35);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* NAV */

.menu {
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  display: none;
  padding: 0;
  z-index: 2000;
}

.line {
  fill: none;
  stroke: var(--primary);
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-links {
    display: flex;
    gap: 20px;
}

nav a {
    color: #ccc;
    margin-left: 20px;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    color: var(--primary);
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 8%;
    position: relative;

    /* FULL BACKGROUND IMAGE */
    background: url("assets/images/697120526_122225468150299455_4793768705015053209_n.jpg") center/cover no-repeat;
}

/* Dark overlay for readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.15)
    );
}

.hero-text {
    position: relative;
    max-width: 600px;
    z-index: 2;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.2;
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-text p {
    margin: 20px 0;
    color: #cfcfcf;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary);
    color: #000;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.05);
}

/* HERO IMAGE */
.hero-box {
    width: 380px;
    height: 380px;
    background: linear-gradient(145deg, #00e5ff33, #ffffff10);
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #888;
    border: 1px solid var(--border);
    overflow: hidden;
    line-height: 0;
    display: flex;
}

.hero-box img {
    width: 100%;
    height: 100%;
}

/* SERVICES */
.services {
    padding: 80px 8%;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: var(--card);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.card h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

/* ABOUT */
.about {
    padding: 80px 8%;
    display: flex;
    gap: 40px;
    align-items: center;
}

.about div {
    flex: 1;
}

.about h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about p {
    color: #aaa;
}

/* GALLERY */
.gallery {
    padding: 80px 8%;
    text-align: center;
    background: var(--bg);
}

.gallery h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.gallery p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* IMAGE BOX */
.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
    transition: 0.3s;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: 0.3s;
}

/* HOVER EFFECT */
.gallery-item:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--glow);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* BUTTON */
.gallery-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 25px;
    background: var(--primary);
    color: #000;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.gallery-btn:hover {
    transform: scale(1.05);
    background: var(--primary-dark);
}

/* CTA */
.cta {
    margin: 80px 8%;
    padding: 50px;
    text-align: center;
    background: linear-gradient(90deg, #00e5ff22, #ffffff10);
    border-radius: 20px;
    border: 1px solid var(--border);
}

.cta h2 {
    margin-bottom: 20px;
}

/* FOOTER */
footer {
    background: radial-gradient(circle at top, rgba(244,112,50,0.08), transparent 60%), var(--bg);
    border-top: 1px solid var(--border);
    padding: 70px 8% 20px;
    color: var(--text-muted);
}

/* MAIN GRID */
.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

/* BRAND TITLE */
.footer-col h3 {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.footer-col h4 {
    color: var(--text);
    margin-bottom: 15px;
    font-size: 16px;
}

/* TEXT */
.footer-col p {
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* SOCIAL BOX */
.socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-muted);
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: 0.3s;
    background: var(--bg-soft);
}

.social-item i {
    color: var(--primary);
}

.social-item:hover {
    transform: translateX(5px);
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--glow);
    color: var(--text);
}

/* BOTTOM BAR */
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: var(--text-dim);
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;

    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 9999;

    transition: 0.3s ease;
    animation: pulse 2s infinite;
}

/* ICON */
.whatsapp-float img {
    width: 32px;
    height: 32px;
}

/* HOVER EFFECT */
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
}

.wa-tooltip {
    position: absolute;
    right: 70px;
    background: var(--bg-soft);
    color: var(--text);
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;

    opacity: 0;
    transform: translateX(10px);
    transition: 0.3s;

    pointer-events: none;
    white-space: nowrap;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* PULSE ANIMATION */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    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: 768px) {
    header {
        position: sticky;
        top: 0;

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding: 20px 8%;
    }

    .menu {
        display: block;
        z-index: 10000;
    }

    .logo {
        height: 35px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 80px 8%;
    }

    .hero-box {
        margin-top: 40px;
    }

    .about {
        flex-direction: column;
        text-align: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-item {
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 250px;
    }

    .menu {
        display: block;
        z-index: 3000;
    }

    /* FULL SCREEN NAV */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;

        background: rgba(11, 15, 20, 0.95);
        backdrop-filter: blur(12px);

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;

        transform: translateX(-100%);
        transition: transform 0.4s ease;

        z-index: 2000;
    }

    /* OPEN STATE */
    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 22px;
        color: var(--text);
        text-decoration: none;
        transition: 0.3s;
    }

    .nav-links a:hover {
        color: var(--primary);
    }
}