/* Global Styles */
:root {
    --primary: #ff6b00;
    --secondary: #222;
    --light: #f8f9fa;
    --dark: #111;
    --gray: #6c757d;
    --gradient-primary: linear-gradient(135deg, #ff6b00 0%, #ff9100 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

h1, h2, h3, .logo {
    font-family: 'Marcellus', serif;
    letter-spacing: 1px;
}

body {
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Navbar Styles */
header {
    margin-top: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 15px 0;
}

header.scrolled {
    padding: 20px 0;
}

header.scrolled .logo-img {
    height: 40px;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 50px;
    transition: all 0.3s ease;
}

.logo-text {
    margin-left: 15px;
}

.logo-text h1 {
    color: var(--light);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-text span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    margin: 0 3px;
    position: relative;
}

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link:hover {
    color: var(--primary);
    background-color: rgba(255, 255, 255, 0.05);
}


.nav-link .nav-icon {
    margin-right: 6px;
    font-size: 14px;
}

.dropdown-toggle::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.2s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 200px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    color: var(--dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: rgba(255, 107, 0, 0.05);
    color: var(--primary);
    padding-left: 30px;
}

.dropdown-item .dropdown-icon {
    width: 18px;
    margin-right: 10px;
    color: var(--primary);
}

.nav-cta {
    background: var(--gradient-primary);
    padding: 10px 24px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #ff9100 0%, #ff6b00 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
    color: white;
}

.nav-cta .nav-icon {
    margin-left: 5px;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    color: var(--light);
    font-size: 24px;
}

.mobile-nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Button Styles */
.btn.primary {
    background-color: var(--primary);
    color: white;
    padding: 16px 36px;
    font-size: 17px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn.primary:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn.primary:hover:after {
    height: 100%;
}

.btn.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 16px 36px;
    font-size: 17px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn.secondary:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: white;
    transition: all 0.3s ease;
    z-index: -1;
}

.btn.secondary:hover {
    color: var(--primary);
}

.btn.secondary:hover:after {
    height: 100%;
}

/* Footer Styles */
footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

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

.footer-logo img {
    height: 50px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #aaa;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 20px;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

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

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

.footer-link {
    margin-bottom: 12px;
}

.footer-link a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-link a:hover {
    color: var(--primary);
    margin-left: 5px;
}

.footer-contact-item {
    display: flex;
    margin-bottom: 15px;
}

.footer-contact-icon {
    color: var(--primary);
    margin-right: 10px;
    font-size: 16px;
}

.footer-contact-text {
    color: #aaa;
    font-size: 14px;
}

.footer-bottom {
    margin-top: 50px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
    color: #777;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
    .navbar-container {
        padding: 0 20px;
    }

    .hamburger {
        display: flex;
        align-items: center;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background-color: #111;
        flex-direction: column;
        padding: 100px 0 30px;
        text-align: left;
        z-index: 999;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        width: 100%;
        margin: 0;
    }

    .nav-link {
        padding: 15px 30px;
        border-radius: 0;
        width: 100%;
    }

    .nav-link.active {
        background: transparent;
        color: var(--primary);
        box-shadow: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: rgba(255, 255, 255, 0.03);
        box-shadow: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 1000px;
    }

    .dropdown-toggle::after {
        position: absolute;
        right: 30px;
    }

    .dropdown.active .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .dropdown-item {
        color: var(--light);
        padding: 12px 45px;
    }

    .dropdown-item:hover {
        padding-left: 50px;
        background-color: rgba(255, 107, 0, 0.1);
    }

    .nav-cta {
        margin: 20px 30px;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .btn.primary, .btn.secondary {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}