/* Main CSS for Retail Compliance Audit Service Website */

:root {
    --primary-color: #5a7d9a;
    --secondary-color: #e4a77c;
    --accent-color: #d64161;
    --neutral-color: #8aaa79;
    --dark-color: #2c3e50;
    
    --primary-light: #7797b9;
    --primary-dark: #3d5c7a;
    --secondary-light: #f2c7a6;
    --secondary-dark: #c68652;
    --accent-light: #e47a93;
    --accent-dark: #b0233e;
    --neutral-light: #acc6a0;
    --neutral-dark: #5f8851;
    --dark-light: #4a6785;
    --dark-dark: #1a2530;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

section {
    padding: 5rem 0;
}

.bg-light {
    background-color: #f8f9fa;
}

/* Header */
.header {
    padding: 1rem 0;
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.nav-link {
    font-weight: 600;
    color: var(--dark-color);
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Breadcrumb */
.breadcrumb-container {
    height: 120px;
    overflow: hidden;
    position: relative;
}

.breadcrumb-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Section */
.hero-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.2;
}

.hero-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.2;
}

#hero-title-1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

#hero-subtitle-1 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-image {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-10deg);
}

/* About Section */
.about-section {
    text-align: center;
}

.about-feature-card {
    padding: 2rem 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Services Section */
.services-section {
    background-color: #f8f9fa;
    text-align: center;
}

.services-cards {
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h5 {
    padding: 1.5rem 1rem 0.5rem;
    color: var(--dark-color);
}

.service-card p {
    padding: 0 1rem;
    color: #6c757d;
}

.service-card ul {
    list-style-type: none;
    padding: 0 1rem;
    margin: 1rem 0;
    text-align: left;
}

.service-card ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.price-tag {
    margin: auto 1rem 1rem;
    padding: 0.5rem 1rem;
    background-color: var(--primary-light);
    color: white;
    border-radius: 5px;
    font-weight: 700;
}

/* Features Section */
.features-section {
    text-align: center;
}

.features-row {
    margin-top: 3rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background: white;
    margin-bottom: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

/* Price Plan Section */
.price-plan-section {
    background-color: #f8f9fa;
    text-align: center;
}

.pricing-cards {
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    padding: 3rem 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: white;
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-card.featured .plan-name {
    color: white;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 400;
}

.pricing-card ul {
    list-style-type: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-card ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.pricing-card.featured ul li::before {
    color: white;
}

/* Team Section */
.team-section {
    text-align: center;
}

.team-swiper {
    margin-top: 3rem;
    padding-bottom: 3rem;
}

.team-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.team-img-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.team-card h5 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.team-card p {
    color: #6c757d;
}

/* Reviews Section */
.reviews-section {
    background-color: #f8f9fa;
    text-align: center;
}

.reviews-swiper {
    margin-top: 3rem;
    padding-bottom: 3rem;
}

.review-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    height: 100%;
    text-align: left;
}

.review-content p {
    font-style: italic;
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.review-content p::before {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-size: 1.5rem;
}

.review-content h5 {
    color: var(--dark-color);
    font-weight: 600;
}

/* Core Info Section */
.core-info-section {
    text-align: center;
}

.core-info-cards {
    margin-top: 3rem;
}

.core-info-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.core-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.icon-container {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.icon-container i {
    font-size: 1.8rem;
    color: white;
}

/* Contact Section */
.contact-section {
    text-align: center;
}

.contact-form {
    text-align: left;
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
}

.contact-details p {
    margin-bottom: 1rem;
}

.contact-details i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    width: 20px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.5rem 2rem;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Blog Section */
.blog-section {
    background-color: #f8f9fa;
    text-align: center;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
    text-align: left;
}

.blog-content h5 {
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.blog-content p {
    color: #6c757d;
    margin-bottom: 1rem;
}

.blog-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.blog-link::after {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5rem;
    font-size: 0.8rem;
}

/* FAQ Section */
.faq-section {
    text-align: center;
}

.accordion {
    margin-top: 3rem;
    text-align: left;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
}

.accordion-button {
    background-color: white;
    border-radius: 10px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    color: var(--dark-color);
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-light);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    background-size: 1rem;
}

.accordion-collapse {
    border: none;
}

.accordion-body {
    padding: 1.5rem;
    background-color: white;
    border-radius: 0 0 10px 10px;
}

/* Gallery Section */
.gallery-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
    display: block;
    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);
}

.gallery-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 0 1rem;
}

footer h4, footer h5 {
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style-type: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

#site-copyright {
    display: block;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Additional Pages Styles */
.add-page-section {
    text-align: center;
    padding: 5rem 0;
}

.add-page-element-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.add-page-element-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.element-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.industry-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    height: 100%;
    position: relative;
}

.industry-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.industry-content {
    padding: 1.5rem;
    background: white;
}

.tech-card, .benefit-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.tech-card:hover, .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tech-icon, .benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.case-study-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    background: white;
}

.case-content {
    padding: 1.5rem;
}

.resource-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.resource-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.solution-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    height: 100%;
    background: white;
}

.solution-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.solution-card h5 {
    padding: 1.5rem 1rem 0.5rem;
}

.solution-card p {
    padding: 0 1rem 1.5rem;
    color: #6c757d;
}

.update-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    margin-bottom: 1.5rem;
    position: relative;
}

.update-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-light);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

.process-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    margin-bottom: 1.5rem;
    position: relative;
}

.process-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

/* Space Page */
#space {
    min-height: 500px;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.rounded-corners {
    border-radius: 10px;
}

.shadow-effect {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
} 