/* Fleet Access Template - Main Stylesheet */

/* Color Variables */
:root {
    /* Primary Color Palette */
    --primary-1: #3A6EA5; /* Deep Blue - Primary Brand Color */
    --primary-2: #FF6B35; /* Persimmon - Accent Color */
    --primary-3: #004E64; /* Midnight Green - Dark Accent */
    --primary-4: #F9A826; /* Yellow Orange - Highlight Color */
    --primary-5: #6A4C93; /* Royal Purple - Secondary Accent */
    
    /* Light Shades */
    --primary-1-light: #5B8BC0;
    --primary-2-light: #FF8A5E;
    --primary-3-light: #006E8A;
    --primary-4-light: #FBBE5C;
    --primary-5-light: #8A6CAD;
    
    /* Dark Shades */
    --primary-1-dark: #2A5380;
    --primary-2-dark: #E34F18;
    --primary-3-dark: #00364A;
    --primary-4-dark: #D78A0C;
    --primary-5-dark: #503273;
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f7f7f7;
    --light-gray: #e0e0e0;
    --medium-gray: #9e9e9e;
    --dark-gray: #424242;
    --black: #212121;
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-3);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-1);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-1-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-3);
}

.nav-link {
    font-weight: 600;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    color: var(--dark-gray);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-2);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 50%;
    background-color: var(--primary-2);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 70%;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    background-image: linear-gradient(rgba(0, 78, 100, 0.7), rgba(0, 78, 100, 0.7)), url('../EXH_images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title-1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle-1 {
    font-size: 1.5rem;
    color: var(--off-white);
    margin-bottom: 2rem;
}

.hero-desc-1 {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--off-white);
}

.about-title {
    color: var(--primary-3);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-subtitle {
    color: var(--primary-2);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.about-desc {
    margin-bottom: 3rem;
}

.about-feature {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
    font-size: 2.5rem;
    color: var(--primary-1);
    margin-bottom: 20px;
}

.about-feature-name {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-3);
}

.about-feature-desc {
    color: var(--dark-gray);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--white);
}

.services-title {
    color: var(--primary-3);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-subtitle {
    color: var(--primary-2);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.services-desc {
    margin-bottom: 3rem;
}

.services-item {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--light-gray);
}

.services-item::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: var(--primary-1);
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
}

.services-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.services-item:hover::before {
    height: 10px;
}

.services-item-name {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-3);
}

.services-item-desc {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.services-item-features {
    margin-bottom: 20px;
}

.services-item-features ul {
    list-style-type: none;
    padding-left: 0;
}

.services-item-features li {
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
}

.services-item-features li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary-4);
    position: absolute;
    left: 0;
    top: 5px;
}

.services-item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-1);
    margin-top: 20px;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: var(--primary-3-light);
    color: var(--white);
}

.features-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.features-subtitle {
    color: var(--light-gray);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.features-desc {
    margin-bottom: 3rem;
}

.features-item {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
}

.features-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.features-item-icon {
    font-size: 2.5rem;
    color: var(--primary-4);
    margin-bottom: 20px;
}

.features-item-name {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--white);
}

.features-item-desc {
    color: var(--light-gray);
}

/* Price Plan Section */
.priceplan-section {
    padding: 100px 0;
    background-color: var(--off-white);
}

.priceplan-title {
    color: var(--primary-3);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.priceplan-subtitle {
    color: var(--primary-2);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.priceplan-desc {
    margin-bottom: 3rem;
}

.priceplan-item {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.priceplan-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.priceplan-item-header {
    padding: 30px;
    background-color: var(--primary-1);
    color: var(--white);
    text-align: center;
}

.priceplan-item-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.priceplan-item-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
}

.priceplan-item-content {
    padding: 30px;
}

.priceplan-item-desc {
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.priceplan-item-features {
    margin-bottom: 30px;
}

.priceplan-item-features ul {
    list-style-type: none;
    padding-left: 0;
}

.priceplan-item-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
    position: relative;
    padding-left: 30px;
}

.priceplan-item-features li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary-4);
    position: absolute;
    left: 0;
    top: 10px;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background-color: var(--white);
}

.team-title {
    color: var(--primary-3);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.team-subtitle {
    color: var(--primary-2);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.team-desc {
    margin-bottom: 3rem;
}

.team-member {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.team-member img {
    width: 100%;
    transition: all 0.5s ease;
}

.team-member:hover img {
    transform: scale(1.05);
}

.team-member-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    transition: all 0.3s ease;
}

.team-member:hover .team-member-info {
    background: linear-gradient(to top, var(--primary-3-dark), transparent);
}

.team-member-name {
    color: var(--white);
    margin-bottom: 5px;
}

.team-member-role {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background-color: var(--off-white);
}

.reviews-title {
    color: var(--primary-3);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.reviews-subtitle {
    color: var(--primary-2);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.reviews-desc {
    margin-bottom: 3rem;
}

.reviews-slider {
    position: relative;
    padding: 30px 0;
}

.reviews-item {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin: 20px 15px;
}

.reviews-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.reviews-item-author {
    font-weight: 700;
    color: var(--primary-3);
    margin-top: 20px;
    position: relative;
    padding-left: 60px;
    min-height: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reviews-item-author::before {
    content: '';
    position: absolute;
    width: 45px;
    height: 45px;
    left: 0;
    top: 0;
    background-color: var(--primary-2);
    border-radius: 50%;
    background-image: url('../EXH_images/user.webp');
    background-size: cover;
    background-position: center;
}

.reviews-item-text {
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.reviews-item-text::before {
    content: '\201C';
    font-size: 3rem;
    position: absolute;
    left: -10px;
    top: -20px;
    color: var(--primary-1-light);
    opacity: 0.3;
}

/* Core Info Section */
.coreinfo-section {
    padding: 100px 0;
    background-color: var(--white);
}

.coreinfo-title {
    color: var(--primary-3);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.coreinfo-subtitle {
    color: var(--primary-2);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.coreinfo-desc {
    margin-bottom: 3rem;
}

.coreinfo-item {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    background-color: var(--off-white);
}

.coreinfo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background-color: var(--white);
}

.coreinfo-item-icon {
    font-size: 2.5rem;
    color: var(--primary-5);
    margin-bottom: 20px;
}

.coreinfo-item-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-3);
}

.coreinfo-item-desc {
    color: var(--dark-gray);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--primary-3);
    color: var(--white);
}

.contact-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-subtitle {
    color: var(--light-gray);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.contact-desc {
    margin-bottom: 3rem;
    color: var(--light-gray);
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: none;
    border-bottom: 2px solid var(--light-gray);
    border-radius: 0;
    padding: 10px 0;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: none;
    border-bottom-color: var(--primary-2);
}

.form-check-label {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.contact-info {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    height: 100%;
}

.contact-info p {
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
}

.contact-info p i {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 1.25rem;
    color: var(--primary-4);
}

.btn-primary {
    background-color: var(--primary-2);
    border-color: var(--primary-2);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-2-dark);
    border-color: var(--primary-2-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(227, 79, 24, 0.3);
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background-color: var(--off-white);
}

.blog-title {
    color: var(--primary-3);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.blog-subtitle {
    color: var(--primary-2);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.blog-desc {
    margin-bottom: 3rem;
}

.blog-item {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.blog-item-img {
    position: relative;
    overflow: hidden;
}

.blog-item-img img {
    transition: all 0.5s ease;
    width: 100%;
}

.blog-item:hover .blog-item-img img {
    transform: scale(1.1);
}

.blog-item-content {
    padding: 30px;
}

.blog-item-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-3);
    transition: all 0.3s ease;
}

.blog-item-title:hover {
    color: var(--primary-2);
}

.blog-item-excerpt {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.blog-item-link {
    color: var(--primary-2);
    font-weight: 600;
    position: relative;
    padding-right: 20px;
    transition: all 0.3s ease;
}

.blog-item-link:hover {
    color: var(--primary-2-dark);
    padding-right: 25px;
}

.blog-item-link::after {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 2px;
    transition: all 0.3s ease;
}

.blog-item-link:hover::after {
    right: -5px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--white);
}

.faq-title {
    color: var(--primary-3);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.faq-subtitle {
    color: var(--primary-2);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.faq-desc {
    margin-bottom: 3rem;
}

.accordion-item {
    margin-bottom: 15px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 20px 30px;
    font-weight: 600;
    color: var(--primary-3);
    background-color: var(--white);
}

.accordion-button:not(.collapsed) {
    color: var(--primary-2);
    background-color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF6B35'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px 30px;
    color: var(--dark-gray);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: var(--off-white);
}

.gallery-container {
    position: relative;
}

.gallery-item {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
    transition: all 0.5s ease;
    width: 100%;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 78, 100, 0.7));
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Footer */
footer {
    background-color: var(--primary-3-dark);
    color: var(--light-gray);
    padding: 70px 0 20px;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-brand a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
}

.footer-desc {
    margin-bottom: 30px;
    color: var(--medium-gray);
}

.footer-heading {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--primary-2);
    bottom: 0;
    left: 0;
}

.footer-links {
    list-style-type: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--medium-gray);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-2);
    padding-left: 5px;
}

.contact-info-item {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.contact-info-item i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-2);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 50px;
    text-align: center;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Animation Utilities */
.animate-fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.animate-fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Breadcrumb */
.breadcrumb-section {
    padding: 100px 0 30px;
    background-color: var(--primary-3);
    margin-top: 76px;
}

.breadcrumb-image {
    height: 200px;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.breadcrumb-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 78, 100, 0.8), transparent);
}

/* Space Page */
.space-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background-color: var(--off-white);
}

/* Additional Pages */
.add-page-section {
    padding: 100px 0;
}

.add-page-section:nth-child(odd) {
    background-color: var(--off-white);
}

.add-page-section:nth-child(even) {
    background-color: var(--white);
}

.add-page-title {
    color: var(--primary-3);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.add-page-subtitle {
    color: var(--primary-2);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.add-page-desc {
    margin-bottom: 3rem;
}

.add-page-elem {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.add-page-elem:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.add-page-elem-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-3);
}

.add-page-elem-desc {
    color: var(--dark-gray);
}

/* Utilities */
.section-divider {
    height: 5px;
    width: 70px;
    background-color: var(--primary-2);
    margin: 0 auto 50px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--off-white) !important;
}

.text-primary {
    color: var(--primary-1) !important;
}

.text-secondary {
    color: var(--primary-2) !important;
}

.rounded-custom {
    border-radius: 10px !important;
}

.shadow-custom {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

.transition-custom {
    transition: all 0.3s ease !important;
} 