:root {
    /* Primary color palette */
    --primary-1: #e65b00; /* Deep orange - primary brand color */
    --primary-2: #36454f; /* Charcoal for text and accents */
    --primary-3: #ffb347; /* Muted yellow for highlights */
    --primary-4: #4c8c4a; /* Mechanic green for trust */
    --primary-5: #8a2be2; /* Purple for creative accents */
    
    /* Shades and tints */
    --primary-1-light: #ff8533;
    --primary-1-dark: #cc5000;
    --primary-2-light: #5d7d8a;
    --primary-2-dark: #1f2a33;
    --primary-3-light: #ffcc80;
    --primary-3-dark: #e69c00;
    --primary-4-light: #6fb36d;
    --primary-4-dark: #3a6d38;
    --primary-5-light: #a64dff;
    --primary-5-dark: #6a0dad;
    
    /* Neutrals */
    --neutral-100: #ffffff;
    --neutral-200: #f5f5f5;
    --neutral-300: #e0e0e0;
    --neutral-400: #cccccc;
    --neutral-500: #9e9e9e;
    --neutral-600: #757575;
    --neutral-700: #616161;
    --neutral-800: #424242;
    --neutral-900: #212121;
}

/* Base Styles */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--primary-2);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--neutral-100);
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: var(--primary-1);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-1-dark);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-2-dark);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-1);
    color: var(--neutral-100);
}

.btn-primary:hover {
    background-color: var(--primary-1-dark);
    color: var(--neutral-100);
}

.btn-secondary {
    background-color: var(--primary-2);
    color: var(--neutral-100);
}

.btn-secondary:hover {
    background-color: var(--primary-2-dark);
    color: var(--neutral-100);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-1);
    color: var(--primary-1);
}

.btn-outline:hover {
    background-color: var(--primary-1);
    color: var(--neutral-100);
}

/* Header Styles */
header {
    background-color: var(--neutral-100);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

header.sticky {
    padding: 15px 0;
    background-color: var(--neutral-100);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-2-dark);
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--primary-2);
    font-weight: 600;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-1);
    transition: all 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, var(--primary-2-dark), var(--primary-2));
    color: var(--neutral-100);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../BEN_images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

/* About Section */
.about {
    background-color: var(--neutral-200);
    position: relative;
    overflow: hidden;
}

.about::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: var(--primary-3-light);
    opacity: 0.2;
    z-index: 0;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.about-feature {
    background-color: var(--neutral-100);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
    font-size: 2.5rem;
    color: var(--primary-1);
    margin-bottom: 20px;
}

/* Services Section */
.services {
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--primary-4-light);
    opacity: 0.1;
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    background-color: var(--neutral-100);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-item:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-price {
    display: inline-block;
    background-color: var(--primary-1);
    color: var(--neutral-100);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-features {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--neutral-300);
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-4);
}

/* Features Section */
.features {
    background-color: var(--primary-2-dark);
    color: var(--neutral-100);
    position: relative;
    overflow: hidden;
}

.features::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../BEN_images/pattern.webp');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.features .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-3);
    margin-bottom: 20px;
}

/* Pricing Section */
.pricing {
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-item {
    background-color: var(--neutral-100);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    padding: 50px 30px;
    position: relative;
}

.pricing-item.featured {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-1);
}

.pricing-item.featured::before {
    content: 'Popular';
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-1);
    color: var(--neutral-100);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-2-dark);
    margin: 20px 0;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--neutral-600);
}

.pricing-features {
    margin: 30px 0;
    text-align: left;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.pricing-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-4);
}

/* Team Section */
.team {
    background-color: var(--neutral-200);
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: var(--primary-5-light);
    opacity: 0.1;
    z-index: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background-color: var(--neutral-100);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
    height: 300px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-member:hover .team-img img {
    transform: scale(1.1);
}

.team-content {
    padding: 20px;
    text-align: center;
}

.team-role {
    color: var(--primary-1);
    font-weight: 600;
}

/* Reviews Section */
.reviews {
    position: relative;
}

.reviews-slider {
    margin-top: 50px;
}

.review-item {
    background-color: var(--neutral-100);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 20px;
}

.review-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-rating {
    color: var(--primary-3);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Core Info Section */
.core-info {
    background-color: var(--primary-1);
    color: var(--neutral-100);
    position: relative;
    overflow: hidden;
}

.core-info::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../BEN_images/pattern-light.webp');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.core-info .container {
    position: relative;
    z-index: 1;
}

.core-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.core-info-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.core-info-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.core-info-item i {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Contact Section */
.contact {
    position: relative;
}

.contact-form {
    background-color: var(--neutral-100);
    border-radius: 10px;
    padding: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 50px auto 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--neutral-300);
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-1);
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 91, 0, 0.2);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.checkbox-group input {
    margin-right: 10px;
}

.service-select {
    margin-bottom: 20px;
}

.service-select label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Blog Section */
.blog {
    background-color: var(--neutral-200);
    position: relative;
    overflow: hidden;
}

.blog::after {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--primary-3-light);
    opacity: 0.2;
    z-index: 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-item {
    background-color: var(--neutral-100);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-item:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
}

.blog-date {
    color: var(--primary-1);
    font-weight: 600;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq {
    position: relative;
}

.accordion {
    max-width: 800px;
    margin: 50px auto 0;
}

.accordion-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    background-color: var(--neutral-100);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background-color: var(--neutral-200);
}

.accordion-header h5 {
    margin: 0;
}

.accordion-header i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.accordion-body {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: var(--neutral-100);
}

.accordion-item.active .accordion-header {
    background-color: var(--primary-1);
    color: var(--neutral-100);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-body {
    padding: 20px;
    max-height: 300px;
}

/* Gallery Section */
.gallery {
    background-color: var(--neutral-100);
    position: relative;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 50px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Footer */
footer {
    background-color: var(--primary-2-dark);
    color: var(--neutral-100);
    padding: 70px 0 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../BEN_images/pattern-dark.webp');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

footer .container {
    position: relative;
    z-index: 1;
}

footer h5 {
    color: var(--neutral-100);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact i {
    margin-right: 15px;
    color: var(--primary-1);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--neutral-400);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#site-copyright {
    font-size: 0.9rem;
    color: var(--neutral-500);
}

/* Space Page */
#space {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.5s ease forwards;
}

/* Shapes */
.shape {
    position: absolute;
    z-index: -1;
}

.shape.circle {
    border-radius: 50%;
}

.shape.triangle {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.shape.square {
    transform: rotate(45deg);
}

/* Breadcrumb */
.breadcrumb {
    padding: 20px 0;
    background-color: var(--neutral-200);
}

.breadcrumb-content {
    display: flex;
    align-items: center;
}

.breadcrumb img {
    height: 20px;
    width: auto;
} 