/* Global Styles */
:root {
    --primary-color: #E84D1A;
    --primary-dark: #C43D12;
    --primary-rgb: 232, 77, 26;
    --secondary-color: #2C3E50;
    --text-color: #333333;
    --light-color: #F8F9FA;
    --dark-color: #1A1A1A;
    --gray-color: #6C757D;
    --border-color: #DEE2E6;
    --white-color: #FFFFFF;
}

/* Base Styles */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow:hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-color);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Top Bar */
.top-bar {
    background: var(--primary-color);
    padding: 12px 0;
    color: var(--white-color);
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 35px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 35px;
    margin-left: auto;
}

.top-bar a {
    color: var(--white-color);
    opacity: 0.9;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.top-bar a i {
    font-size: 16px;
}

.top-bar a:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.top-bar .contact-info {
    display: flex;
    align-items: center;
    gap: 35px;
}

.top-bar .social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar .social-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 0;
    gap: 0;
}

.top-bar .social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .top-bar {
        padding: 10px 0;
        font-size: 13px;
    }

    .top-bar-left, .top-bar-right {
        gap: 25px;
    }
    
    .top-bar .container {
        padding: 0 20px;
    }

    .top-bar .contact-info {
        gap: 25px;
    }

    .top-bar .social-links {
        gap: 10px;
    }

    .top-bar .social-links a {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 767.98px) {
    .top-bar {
        padding: 10px 0;
        font-size: 12px;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 12px;
    }

    .top-bar-left, .top-bar-right {
        width: 100%;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 575.98px) {
    .top-bar {
        padding: 8px 0;
    }

    .top-bar-left, .top-bar-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .top-bar a {
        font-size: 11px;
        padding: 3px 0;
    }

    .top-bar a i {
        font-size: 14px;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 220px 0 100px;
    color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern.png');
    opacity: 0.1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white-color);
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero .btn {
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.hero .btn-light {
    background: var(--white-color);
    color: var(--primary-color);
}

.hero .btn-outline-light:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--white-color);
    position: relative;
}

.feature-box {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: transparent;
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.feature-box:hover .feature-icon {
    background: var(--primary-color);
    color: var(--white-color);
    transform: rotateY(360deg);
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    color: var(--white-color);
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern.png');
    opacity: 0.1;
}

.stats h2 {
    color: var(--white-color);
    font-weight: 700;
}

.stats p {
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Why Choose Us */
.why-choose-us {
    padding: 100px 0;
    background: var(--light-color);
}

.why-choose-us .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
}

.why-choose-us img {
    transition: all 0.3s ease;
}

.why-choose-us img:hover {
    transform: translateY(-10px);
}

/* Call to Action */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern.png');
    opacity: 0.1;
}

.cta h2 {
    color: var(--white-color);
}

.cta p {
    opacity: 0.9;
}

.cta .btn {
    padding: 15px 40px;
    font-weight: 500;
    border-radius: 50px;
    background: var(--white-color);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background: var(--dark-color);
    padding: 80px 0 0;
    color: var(--white-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern.png');
    opacity: 0.05;
}

.footer-logo img {
    height: 45px;
    margin-bottom: 25px;
}

.footer h5 {
    color: var(--white-color);
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 16px;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 60px;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: var(--white-color);
}

/* Badges */
.badge {
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 500;
}

.bg-primary-light {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    background: transparent;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: var(--white-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-brand img {
    height: 55px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand img.logo-white {
    display: block;
}

.navbar-brand img.logo-orange {
    display: none;
}

.navbar.scrolled .navbar-brand img.logo-white {
    display: none;
}

.navbar.scrolled .navbar-brand img.logo-orange {
    display: block;
}

.navbar-toggler {
    display: none;
    border: none;
    padding: 0.5rem;
    color: var(--white-color);
    font-size: 1.8rem;
    background: transparent;
    cursor: pointer;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.navbar.scrolled .navbar-toggler {
    color: var(--dark-color);
}

.navbar-menu {
    display: flex;
    align-items: center;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item {
    margin: 0 15px;
    display: inline-block;
}

.nav-link {
    color: var(--white-color);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    white-space: nowrap;
    transition: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white-color);
    transition: width 0.3s ease;
}

.navbar.scrolled .nav-link {
    color: var(--dark-color);
}

.navbar.scrolled .nav-link::after {
    background: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.quote-btn {
    background: var(--white-color);
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.nav-link.quote-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

.nav-link.quote-btn::after {
    display: none;
}

.close-menu {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
    color: var(--primary-color);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.1);
    transition: all 0.3s ease;
}

.close-menu:hover {
    transform: rotate(90deg);
    background: var(--primary-color);
    color: var(--white-color);
}

@media (max-width: 991.98px) {
    .navbar-toggler {
        display: flex;
    }

    .close-menu {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white-color);
        padding: 80px 0 30px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        z-index: 999;
        overflow-y: auto;
    }

    .navbar-menu.show {
        right: 0;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        padding: 0 25px;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 6px 0;
    }

    .nav-link {
        color: var(--dark-color);
        padding: 12px 15px;
        border-radius: 8px;
        width: 100%;
        font-size: 1.1rem;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(var(--primary-rgb), 0.08);
        color: var(--primary-color);
        transform: translateX(5px);
    }

    .nav-link.active {
        background: var(--primary-color);
        color: var(--white-color);
    }

    .nav-link.quote-btn {
        margin: 12px 0 0;
        background: var(--primary-color);
        color: var(--white-color);
        padding: 14px 20px;
        font-weight: 600;
        font-size: 1.1rem;
        letter-spacing: 0.3px;
        box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.2);
    }

    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand img {
        height: 45px;
    }
    
    .navbar-menu {
        width: 100%;
        padding: 70px 0 30px;
    }
    
    .navbar-nav {
        padding: 0 25px;
    }
    
    .nav-link {
        font-size: 1.05rem;
        padding: 12px 15px;
    }
} 