@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');

:root {
    --primary-bg: #FFFFFF;
    --secondary-bg: #0A0A0A;
    --accent: #C8A84B;
    --body-text: #1A1A1A;
    --light-text: #F0F0F0;
    --grey-text: #AAAAAA;
    --nav-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-bg);
    color: var(--body-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--body-text);
}

.label {
    display: block;
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: transparent;
    z-index: 1000;
    display: flex;
    justify-content: center;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
}

.logo img {
    height: 80px;
    width: auto;
    transform: scale(1.5);
    transform-origin: left center;
    object-fit: contain;
}

.logo .logo-dark {
    display: none;
}

.navbar.scrolled .logo .logo-white {
    display: none;
}

.navbar.scrolled .logo .logo-dark {
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-bg);
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.navbar.scrolled .nav-links a {
    color: var(--body-text);
}

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

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--primary-bg);
    margin: 5px;
    transition: all 0.3s ease;
}

.navbar.scrolled .burger div {
    background-color: var(--body-text);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #000;
}

.carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide-layer.active {
    opacity: 0.8;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--primary-bg);
    margin-bottom: 20px;
    line-height: 1.3;
    white-space: nowrap;
}

.hero-divider {
    width: 150px;
    height: 3px;
    background-color: var(--accent);
    border: none;
    margin: 0 auto 20px auto;
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--primary-bg);
    color: var(--primary-bg);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--secondary-bg);
}

/* Ticker Section */
.ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    height: 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-top: 1px solid rgba(200, 168, 75, 0.3);
    z-index: 3;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.ticker-content {
    display: flex;
    align-items: center;
}

.ticker-content img {
    height: 40px;
    width: auto;
    padding: 0 40px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.8);
}

.ticker-content img.blend-logo {
    filter: grayscale(100%) invert(1) opacity(0.8) !important;
    mix-blend-mode: screen;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-25%);
    }
}

/* About Section */
.about {
    padding: 100px 20px;
    background-color: var(--primary-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-text p {
    margin-bottom: 20px;
    color: #444;
    font-size: 1.1rem;
}

.link-secondary {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 20px;
    transition: transform 0.3s ease;
}

.link-secondary:hover {
    transform: translateX(5px);
}

.about-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 500px;
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    transform: rotate(3deg);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image.lazy-bg-loaded {
    opacity: 1;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent);
    z-index: -1;
    transform: rotate(-3deg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header .subtitle {
    color: var(--grey-text);
    font-size: 1.2rem;
    font-weight: 300;
}

/* Services Section */
.services {
    padding: 100px 20px;
    background-color: #111111;
}

.services .section-header h2 {
    color: var(--primary-bg);
}

.services .section-header .subtitle {
    color: var(--grey-text);
}

.services .label {
    color: var(--accent);
}

.services-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-arrow {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-bg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.carousel-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--secondary-bg);
}

.carousel-arrow svg {
    width: 20px;
    height: 20px;
}

.services-carousel {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.services-track {
    display: flex;
    gap: 0px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card {
    flex: 0 0 auto;
    padding: 60px 20px;
    text-align: center;
    cursor: default;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    color: var(--accent);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--grey-text);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.6;
}

/* Footer Section */
.footer {
    background-color: var(--primary-bg);
    color: var(--body-text);
    padding-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: block;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transform: scale(1.5);
    transform-origin: left center;
}

.footer-tagline {
    color: var(--grey-text);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--body-text);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.social-icons a svg {
    width: 20px;
    height: 20px;
}

.social-icons a:hover {
    background-color: var(--accent);
    color: var(--secondary-bg);
}

.footer-col h3 {
    color: var(--secondary-bg);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

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

.footer-col ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li svg {
    flex-shrink: 0;
    color: var(--grey-text);
}

.footer-col ul li a,
.footer-col ul li {
    color: var(--grey-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 4px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #25D366;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #1DA851;
    transform: translateY(-2px);
}
.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--grey-text);
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-bottom p a {
    color: var(--body-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-bottom p a:hover {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 2px;
}

/* Responsive Design */

/* Tablets */
@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 0.15em;
    }

    .about-content {
        gap: 40px;
    }

    .about-text h2 {
        font-size: 2.5rem;
    }

    .service-card {
        padding: 40px 20px;
    }

    .service-card h3 {
        font-size: 1.6rem;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .brand-col {
        grid-column: 1 / -1;
    }

    .services-carousel-wrapper {
        max-width: 100%;
    }
}

/* Small tablets / large phones */
@media screen and (max-width: 768px) {
    .burger {
        display: block;
    }

    .nav-links {
        position: absolute;
        right: 0px;
        height: calc(100vh - var(--nav-height));
        top: var(--nav-height);
        background-color: var(--primary-bg);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.4s ease-in;
        padding-top: 50px;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links li {
        margin-bottom: 30px;
    }

    .nav-links a {
        color: var(--body-text) !important;
        font-size: 1.1rem;
    }

    .nav-active {
        transform: translateX(0%);
    }

    .logo img {
        height: 60px;
        transform: scale(1.2);
    }

    .hero-title {
        font-size: 1.5rem;
        white-space: normal;
        padding: 0 15px;
    }

    .hero-tagline {
        font-size: 0.85rem;
        letter-spacing: 0.1em;
    }

    .ticker {
        height: 50px;
    }

    .ticker-content img {
        height: 25px;
        padding: 0 20px;
    }

    .about {
        padding: 60px 20px;
    }

    .about-content {
        flex-direction: column;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .about-image-wrapper {
        width: 100%;
    }

    .about-image {
        height: 350px;
        max-width: 100%;
        margin-top: 30px;
        transform: rotate(0deg);
    }

    .about-image::before {
        display: none;
    }

    .services {
        padding: 60px 15px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header .subtitle {
        font-size: 1rem;
    }

    .service-card {
        padding: 30px 15px;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .carousel-arrow {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .carousel-arrow svg {
        width: 16px;
        height: 16px;
    }

    .services-carousel-wrapper {
        gap: 10px;
    }

    .footer {
        padding-top: 50px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .footer-col h3 {
        font-size: 1rem;
    }

    .footer-bottom {
        padding: 15px 0;
    }
}

/* Small phones (iPhone SE, etc.) */
@media screen and (max-width: 480px) {
    :root {
        --nav-height: 60px;
    }

    .logo img {
        height: 50px;
        transform: scale(1);
    }

    .nav-container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.2rem;
        padding: 0 10px;
    }

    .hero-tagline {
        font-size: 0.75rem;
        letter-spacing: 0.08em;
    }

    .hero-overlay {
        padding: 0 10px;
    }

    .ticker {
        height: 40px;
    }

    .ticker-content img {
        height: 18px;
        padding: 0 15px;
    }

    .about {
        padding: 40px 15px;
    }

    .about-text h2 {
        font-size: 1.6rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .about-image {
        height: 250px;
    }

    .about-image-wrapper {
        padding: 0;
    }

    .label {
        font-size: 0.75rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header .subtitle {
        font-size: 0.85rem;
    }

    .services {
        padding: 40px 10px;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .carousel-arrow {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .footer-container {
        padding: 0 15px;
        gap: 25px;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* Hamburger Animation */
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}