@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;600&display=swap");

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

:root {
    --orange: #f26522;
    --dark: #1a1a1a;
    --light: #ffffff;
    --gray-text: #555;
    --footer-bg: #f9f9f9;
}

body {
    font-family: "Open Sans", sans-serif;
    color: var(--dark);
}

/* ── LOGO ── */
.logo {
    max-width: 220px;
    min-width: 110px;
    width: 220px;
    height: auto;
}

/* ── NAVBAR ── */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 90px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    white-space: nowrap;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 30px; 
}

.nav-links {
	padding-left: 0;
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 10px;
    padding-right: 3%;
}

.nav-links a {
    font-family: "Montserrat", sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 5px;
}

.hamburger .bar {
	width: 25px;
	height: 3px;
	background-color: var(--dark);
	transition: all 0.3s ease-in-out;
}

.nav-links a:hover {
    color: var(--orange);
}

.btn-quote {
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 11px 22px;
    font-family: "Montserrat", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition:
        background 0.2s,
        transform 0.15s;
}

.btn-quote:hover {
    background: #d4551a;
    transform: translateY(-1px);
}

@media (max-width: 960px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 90px; /* Matches the exact height of your nav */
        left: -100%; /* Hides the menu off-screen by default */
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s ease-in-out;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
        padding: 30px 0 40px 0;
        gap: 25px;
    }

    /* Class added by JavaScript to slide the menu in */
    .nav-menu.active {
        left: 0;
    }

    .nav-links {
				display: flex;
        flex-direction: column;
        gap: 25px;
				width: 100%;
    }

    /* Animates the hamburger into an "X" when open */
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Banner Video *.brand-card */
.video-banner {
    width: 100%;
    height: 100vh;
    position: relative;
}

.video-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 900px;
}

.video-overlay h1 {
    font-size: 3.5rem; /* bigger */
    font-weight: 900;
    color: #ffffff; /* already white, keep it */
    margin-bottom: 1.25rem;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.video-overlay p {
    font-size: 1.4rem; /* bigger */
    font-weight: 600;
    color: #ffffff; /* already white, keep it */
    margin-bottom: 2rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.btn-video {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #111;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-video:hover {
    background-color: #111;
    color: #ffffff;
}

/* update mobile size too */
@media (max-width: 768px) {
    .video-overlay h1 {
        font-size: 2.25rem;
    }

    .video-overlay p {
        font-size: 1rem;
    }
}

/* Hero Split */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    background-color: #f5f5f3;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-desc {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.75rem;
}

.hero-sub {
    font-size: 0.875rem;
    color: #888;
    margin-bottom: 2.5rem;
}

.btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid #111;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #111;
    color: #fff;
}

.hero-image {
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Section */
.services {
    padding: 80px 50px;
    text-align: center;
}

.services h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 60px;
}

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

.service-card h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-split {
        grid-template-columns: 1fr;
    }

    .hero-image {
        height: 300px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

.cta-parallax {
    background-image: url("../assets/images/screen.jpg");
    background-attachment: fixed; /* this is what keeps the image in place on scroll */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh; /* full screen height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    padding: 40px 20px;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-cta {
    display: inline-block;
    padding: 16px 36px;
    background-color: #ffffff;
    color: #111;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #111;
    color: #fff;
}

/* Parallax doesn't work well on iOS - this is the fix */
@media (max-width: 768px) {
    .cta-parallax {
        background-attachment: scroll; /* disable parallax on mobile */
        background-position: center;
    }
}

.brands {
    padding: 60px 50px;
}

.brands h1 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 2rem;
}

.brands-grid {
    display: flex;
    align-items: center;
    gap: 0px;
    flex-wrap: wrap;
}

.brand-card {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    flex: 1;

    /* smooth transition for the hover effect */
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.brand-card img {
    display: block;
    height: auto; /* adjust to match your image sizes */
    width: 280px;
    object-fit: contain;
}

/* the pop effect on hover */
.brand-card:hover {
    transform: scale(1.05) translateY(-4px); /* slightly bigger + lifts up */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* responsive */
@media (max-width: 768px) {
    .brands {
        padding: 40px 20px;
    }

    .brands-grid {
        justify-content: center;
    }

    .brand-card img {
        height: 120px;
    }
}

.footer {
    background-color: #ffffff;
    border-top: 1px solid #e5e5e5;
    padding-top: auto;
    margin-top: auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 50px 40px;
    gap: 40px;
}

/* Left column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    height: auto;
    width: 180px;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #333;
}

.footer-icon {
    font-size: 1rem;
    color: #f07800;
}

/* Social buttons */
.footer-socials {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #f07800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

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

/* Right column */
.footer-links h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
    margin-top: 40px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.95rem;
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f07800;
}

/* Bottom bar */
.footer-bottom {
    background-color: #f5f5f5;
    padding: 16px 50px;
    border-top: 1px solid #e5e5e5;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}
.fp-footer {
    background: #fff;
    border-top: 1px solid #e5e5e5;
    font-family: var(--font-sans);
}
.fp-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 32px 40px 28px;
    gap: 40px;
}
.fp-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.fp-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}
.fp-logo-text {
    font-size: 20px;
    font-weight: 500;
    color: #111;
    letter-spacing: -0.5px;
}
.fp-logo-dot {
    color: #f07800;
}
.fp-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    margin: 0;
}
.fp-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
}
.fp-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fp-icon svg {
    width: 14px;
    height: 14px;
    fill: #f07800;
}
.fp-socials {
    display: flex;
    gap: 8px;
}
.fp-social {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #e5e5e5;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}
.fp-social:hover {
    background: #f07800;
    border-color: #f07800;
    color: #fff;
}
.fp-divider {
    width: 1px;
    background: #f0f0f0;
    align-self: stretch;
}
.fp-right {
    display: flex;
    gap: 48px;
}
.fp-col h4 {
    font-size: 11px;
    font-weight: 600;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 12px;
}
.fp-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.fp-col ul li a {
    font-size: 13px;
    color: #777;
    text-decoration: none;
    transition: color 0.2s;
}
.fp-col ul li a:hover {
    color: #f07800;
}
.fp-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}
.fp-bottom p {
    font-size: 12px;
    color: #aaa;
    margin: 0;
}
.fp-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #bbb;
}
.fp-badge span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        padding: 0 20px 40px;
    }

    .footer-bottom {
        padding: 16px 20px;
    }
}
