/* =====================================================
   GLOBAL VARIABLES & RESET
===================================================== */
:root {
    /* Color Palette */
    --primary-color: #FD5906;
    /* Orbit Orange */
    --primary-dark: #e04800;
    /* Darker Orange for hover */
    --secondary-color: #1A1A1A;
    /* Dark Grey/Black */
    --text-color: #333333;
    /* Main Text */
    --text-light: #666666;
    /* Subtitles/Light Text */
    --bg-light: #F9F9F9;
    /* Light Background */
    --white: #FFFFFF;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Spacing */
    --container-max-width: 1200px;
    --header-height: 80px;

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    /* Resetting to standard web size, was 20px */
    width: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

a {
    transition: all 0.3s ease;
}

/* Container Utility */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================================================
   TOP HEADER
===================================================== */
.top-header {
    background: var(--white);
    border-bottom: 3px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1000000;
}

.container {
    max-width: var(--container-max-width);
    margin: auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo img {
    width: 80px;
    /* Reduced from 220px for better proportion */
    height: auto;
}

.logo span {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    /* Adjusted for better scale */
    font-weight: 700;
    line-height: 1.1;
    background: linear-gradient(to bottom, var(--primary-color) 50%, #000 50%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* .header-info .title {
    color: #fd5906;
    font-weight: 600;
} */

/* .header-info p {
    font-size: 1.1rem;
} */

/* =====================================================
   NAVBAR
===================================================== */
.navbar {
    background: var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 99999;
    width: 100%;
    box-shadow: var(--shadow-md);
}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: var(--white);
    padding: 10px 20px;
    cursor: pointer;
    position: relative;
    z-index:1000000;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center align items */
    gap: 30px;
    padding: 0 20px;
    margin: 0 auto;
    max-width: var(--container-max-width);
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 15px 10px;
    display: block;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    transition: background 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255, 255, 255, 0.2);
    border-bottom: none;
    /* Removed border bottom style in favor of background */
}

/* ---------- DROPDOWN ---------- */
.menu-item {
    position: relative;
    height: 100%;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 280px;
    display: none;
    padding: 10px 0;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--secondary-color);
    border-radius: 0 0 4px 4px;
}

.dropdown a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid #eee;
}

.dropdown a:last-child {
    border-bottom: none;
}

.dropdown a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 25px;
    /* Slight indent on hover */
}

.menu-item:hover .dropdown {
    display: block;
    animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ALLOYS WE DEAL IN CSS */
/* -------------------------- */
/* ---------- HAS SUBMENU ---------- */
.has-submenu {
    position: relative;
}

/* Arrow indicator */
.has-submenu>a::after {
    content: "›";
    float: right;
    font-size: 18px;
    margin-left: 10px;
    transition: transform 0.2s;
}

.has-submenu:hover>a::after {
    transform: translateX(4px);
}

/* ---------- SUB DROPDOWN (RIGHT SIDE) ---------- */
.sub-dropdown {
    position: absolute;
    top: -10px;
    /* Align with top of parent item */
    left: 100%;
    background: var(--white);
    min-width: 260px;
    display: none;
    padding: 10px 0;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 4px 4px 0;
    z-index: 1002;
}

/* Sub dropdown links */
.sub-dropdown a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    font-size: 0.95rem;
    white-space: nowrap;
    border-bottom: 1px solid #eee;
}

.sub-dropdown a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 25px;
}

/* SHOW SUBMENU ON HOVER */
.has-submenu:hover .sub-dropdown {
    display: block;
    animation: fadeIn 0.2s ease-in-out;
}





/* =====================================================
   ABOUT SECTION
===================================================== */

/* =====================================================
   HERO SLIDER
===================================================== */
.slider {
    position: relative;
    width: 100%;
    height: 400px;
    /* Increased height for impact */
    min-height: 600px;
    overflow: hidden;
    background: #000;
    /* Fallback */
    z-index: 1;
}

/* Slider arrows */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    /* Subtle glass effect */
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    /* Circular buttons */
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    z-index: 2;
}

.prev:hover,
.next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

/* Dots */
.dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    filter: brightness(0.7);
    /* Darken images slightly for text contrast if we add text later */
}

.slide.active {
    opacity: 1;
}

/* =====================================================
   ABOUT SECTION
===================================================== */
.perfect-section {
    padding: 100px 20px;
    background: var(--white);
    position: relative;
}

.perfect-container {
    max-width: var(--container-max-width);
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    /* Center vertically */
}

.perfect-image {
    position: relative;
}

.perfect-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease;
}

.perfect-image img:hover {
    transform: scale(1.02);
}

/* Decorative element behind image */
.perfect-image::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 5px solid var(--primary-color);
    border-left: 5px solid var(--primary-color);
    z-index: -1;
}

.text-inner h2 {
    font-size: 3rem;
    /* Larger heading */
    margin-bottom: 20px;
    color: var(--secondary-color);
    border-left: 5px solid var(--primary-color);
    padding-left: 20px;
    line-height: 1.1;
}

.text-inner .orange-line {
    display: none;
    /* Removed in favor of border-left style above */
}

.text-inner p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: justify;
}

/* =====================================================
   PRODUCTS
===================================================== */
/* =====================================================
   PRODUCTS
===================================================== */
.products-section {
    padding: 100px 20px;
    background: var(--bg-light);
    text-align: center;
}

.products-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.orange-line {
    height: 4px;
    background: var(--primary-color);
    width: 60px;
    margin: 0 auto 30px;
    border-radius: 2px;
}

.products-desc {
    max-width: 800px;
    margin: auto;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.products-container {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid transparent;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(253, 89, 6, 0.1);
}

.product-card img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.product-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.product-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* =====================================================
   CTA
===================================================== */
/* xxxxxxxxxxxxxxxxxxx */
/* ================================
   CTA SECTION STYLES
================================ */
/* ===============================
   CTA SECTION WRAPPER
================================ */
/* =====================================================
   CTA & FORM SECTION
===================================================== */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, #fff5f0 0%, #fff 100%);
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.cta-content {
    background: transparent;
    padding: 0;
    max-width: var(--container-max-width);
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Content */
.cta-text-content {
    padding-right: 20px;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Form Styles */
.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    width: 100%;
}

.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s;
    background: #fcfcfc;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(253, 89, 6, 0.1);
    background: var(--white);
    outline: none;
}

.contact-form-card textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-card button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 16px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form-card button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* "Contact Us" Button (Secondary) - Hiding if redundant or styling as alternative */
.cta-button {
    display: none;
    /* Hidden as the form is the primary action */
}

/* RESPONSIVE */
@media (max-width: 1024px) {

    /* Tablet */
    .cta-content {
        gap: 40px;
    }

    .cta-content h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {

    /* Mobile */
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .cta-text-content {
        padding-right: 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .contact-form-card {
        padding: 30px 20px;
    }
}


/* =====================================================
   FOOTER
===================================================== */
/* =====================================================
   FOOTER
===================================================== */
.footer {
    background: var(--secondary-color);
    color: #bbbbbb;
    padding: 80px 20px 30px;
    font-size: 0.95rem;
}

.footer-container {
    max-width: var(--container-max-width);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.footer-box h3,
.footer-box h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-box h3::after,
.footer-box h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

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

.footer-box ul li {
    margin-bottom: 12px;
}

.footer-box ul li a {
    color: #bbbbbb;
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-box ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-box p {
    margin-bottom: 15px;
    color: #bbbbbb;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 60px;
    padding-top: 25px;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

/* =====================================================
   WHATSAPP
===================================================== */
/* .whatsapp-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: #25D366;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s;
} */

/* .whatsapp-btn:hover {
    transform: translateY(-5px);
}

.whatsapp-btn img {
    width: 24px;
    filter: brightness(0) invert(1);
} */

/* =====================================================
   MOBILE NAVBAR CLEAN VERSION
===================================================== */
@media (max-width: 768px) {

    /* Show hamburger */
    .menu-toggle {
        display: block;
    }

    /* Main mobile menu */
    .nav-links {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: var(--primary-color); /* your orange */
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        z-index: 999999;
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        color: var(--white);
    }

    /* Disable hover dropdown on mobile */
    .menu-item:hover .dropdown {
        display: none;
    }

    /* Mobile dropdown */
    .dropdown {
        display: none;
        position: static;
        background: #1f1f1f;
        box-shadow: none;
        border: none;
    }

    .dropdown a {
        color: #ddd;
        padding: 12px;
        font-size: 0.9rem;
        border-bottom: 1px solid #333;
    }

    /* When dropdown is opened via JS */
    .dropdown.active {
        display: block;
    }

    /* Fix slider height */
    .slider {
        height: 60vh;
    }

    /* Stack layout sections */
    .perfect-container,
    .products-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    :root {
        --header-height: 70px;
    }

    .logo span {
        font-size: 2rem;
    }

    .logo img {
        width: 60px;
    }
}

