/* =====================================
   GENERAL STYLES
   ===================================== */
:root {
    --primary-color: #003d82;
    --secondary-color: #0066cc;
    --accent-color: #ff6600;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 5px 20px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* =====================================
   NAVIGATION
   ===================================== */
.navbar {
    box-shadow: var(--shadow);
    padding: 1rem 0;
    background-color: #ffffff !important;
    border-bottom: 2px solid #e0e0e0;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 700;
}

.navbar-logo {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}

.navbar-brand i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.navbar-light .navbar-brand {
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem !important;
    border-radius: 4px;
    color: var(--primary-color) !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color) !important;
    background-color: rgba(255, 102, 0, 0.1);
}

.navbar-light .navbar-nav .nav-link {
    color: var(--primary-color) !important;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    background-color: #ffffff;
}

.dropdown-item {
    color: var(--primary-color);
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: rgba(255, 102, 0, 0.1);
    color: var(--accent-color);
}

.dropdown-item.active {
    background-color: rgba(255, 102, 0, 0.15);
    color: var(--accent-color);
}

/* =====================================
   HERO SECTION
   ===================================== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 0;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--accent-color);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e55a00;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    border: 2px solid white;
    padding: 10px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.hero-icon {
    text-align: center;
    font-size: 200px;
    color: rgba(255, 255, 255, 0.1);
    animation: float 3s ease-in-out infinite;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* =====================================
   PAGE HEADER
   ===================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* =====================================
   SECTION TITLE
   ===================================== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

/* =====================================
   FEATURES SECTION
   ===================================== */
.features-section {
    background-color: white;
    padding-top: 60px;
}

.feature-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.feature-image {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    background-color: var(--bg-light);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-text {
    color: var(--text-light);
    line-height: 1.6;
}

/* =====================================
   SERVICES SECTION
   ===================================== */
.services-section {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.service-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background-color: var(--bg-light);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #e55a00;
}

/* =====================================
   STATS SECTION
   ===================================== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.95;
}

/* =====================================
   CTA SECTION
   ===================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* =====================================
   FOOTER
   ===================================== */
footer {
    background-color: #1a1a1a;
    border-top: 3px solid var(--accent-color);
}

footer h5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

footer p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 102, 0, 0.2);
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

/* =====================================
   ABOUT PAGE
   ===================================== */
.info-box {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.info-box p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.company-info {
    padding: 0;
    overflow: hidden;
}

.info-box-inner {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.info-image {
    width: 45%;
    border-radius: 8px 0 0 8px;
    overflow: hidden;
    background-color: var(--bg-light);
    transition: all 0.3s ease;
}

.info-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: all 0.3s ease;
}

.company-info:hover .info-image img {
    transform: scale(1.05);
}

.info-text {
    width: 55%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    display: block;
}

.info-text h2::after {
    left: 0;
}

.info-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.1), rgba(0, 102, 204, 0.1));
    border-radius: 8px;
    padding: 60px;
    text-align: center;
}

.about-image i {
    font-size: 150px;
    color: var(--primary-color);
    opacity: 0.5;
}

.about-image-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-container img {
    width: 100%;
    height: 100%;
    display: block;
    transition: all 0.3s ease;
    object-fit: cover;
}

.about-image-container:hover img {
    transform: scale(1.05);
}

/* Vision & Mission Cards */
.vision-mission-section {
    background-color: var(--bg-light);
}

.vm-card {
    background: white;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--accent-color);
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.combined-card {
    text-align: left;
    padding: 0 !important;
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.combined-card:hover {
    transform: translateY(-10px);
}

.vm-image {
    width: 100%;
    height: 250px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    background-color: var(--bg-light);
}

.vm-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.vm-card:hover .vm-image img,
.combined-card:hover .vm-image img {
    transform: scale(1.05);
}

.vm-content {
    display: flex;
    padding: 40px;
    gap: 30px;
}

.vm-section {
    flex: 1;
    text-align: left;
}

.vm-section h3 {
    text-align: center;
}

.vm-divider {
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--accent-color), transparent);
    min-height: 300px;
}

.vm-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-align: center;
}

.vm-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.vm-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.mission-list {
    list-style: none;
    text-align: left;
}

.mission-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    line-height: 1.8;
}

.mission-list i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* Advantages */
.advantages-section {
    background: white;
}

.advantage-item {
    display: flex;
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(10px);
}

.advantage-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    min-width: 70px;
    text-align: center;
    margin-right: 20px;
}

.advantage-content h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.advantage-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Team Cards */
.team-section {
    background: var(--bg-light);
}

.team-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.team-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* =====================================
   SERVICE PAGES
   ===================================== */
.service-icon-large {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 61, 130, 0.1), rgba(0, 102, 204, 0.1));
    border-radius: 8px;
    padding: 80px;
    font-size: 200px;
    color: var(--primary-color);
    opacity: 0.5;
}

.service-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-details-section {
    background: white;
}

.detail-card {
    background: white;
    border-left: 4px solid var(--accent-color);
    padding: 25px;
    border-radius: 4px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.detail-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
}

.detail-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.detail-card i {
    margin-right: 0.5rem;
}

.detail-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Process Steps */
.process-section {
    background: var(--bg-light);
}

.process-step {
    background: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.process-step h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Benefits */
.benefits-section {
    background: var(--bg-light);
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Import/Export Cards */
.import-export-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.import-export-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 20px;
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
}

.card-header i {
    margin-right: 0.5rem;
}

.card-body {
    padding: 25px;
}

.card-body h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.benefit-list {
    list-style: none;
    text-align: left;
}

.benefit-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.benefit-list i {
    color: var(--accent-color);
    margin-right: 0.5rem;
    font-weight: 600;
}

/* Shipping Cards */
.shipping-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.shipping-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.shipping-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.shipping-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.shipping-benefits {
    list-style: none;
    text-align: left;
}

.shipping-benefits li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.shipping-benefits i {
    color: var(--accent-color);
    margin-right: 0.5rem;
    font-weight: 600;
}

.service-type {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 1rem;
    text-align: left;
}

.service-type h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-type i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.service-type p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.comparison-table tbody tr:hover {
    background-color: var(--bg-light);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.why-choose-us-section {
    background: white;
}

.reason-item {
    background: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.reason-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.reason-item h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.reason-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* =====================================
   CONTACT PAGE
   ===================================== */
.row .col-md-4 {
    display: flex;
}

.contact-info-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-card .contact-icon {
    flex-shrink: 0;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-info-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--accent-color);
}

/* Contact Form */
.contact-form-section {
    background: var(--bg-light);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-form .form-label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.25);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form .btn {
    padding: 12px 40px;
    font-weight: 600;
}

.form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.form-check-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 102, 0, 0.25);
}

#formMessage {
    border-radius: 4px;
    padding: 15px;
}

#formMessage.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#formMessage.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Map */
.map-section {
    background: white;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* FAQ */
.faq-section {
    background: var(--bg-light);
}

.accordion {
    border: none;
}

.accordion-item {
    border: none;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
    border-radius: 8px;
}

.accordion-button {
    background-color: white;
    color: var(--primary-color);
    font-weight: 600;
    border: none;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.accordion-button:focus {
    border-color: none;
    box-shadow: none;
}

.accordion-body {
    padding: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

/* =====================================
   RESPONSIVE DESIGN
   ===================================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-icon {
        font-size: 100px;
        margin-top: 2rem;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .hero-image img {
        font-size: 100px;
    }

    .info-box-inner {
        flex-direction: column;
        height: auto;
    }

    .info-image {
        width: 100%;
        height: 250px;
        border-radius: 8px 8px 0 0;
    }

    .info-text {
        width: 100%;
        padding: 30px;
        border-radius: 0 0 8px 8px;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header {
        padding: 40px 0;
    }

    .hero-section {
        padding: 50px 0;
    }

    .stat-number {
        font-size: 2rem;
    }

    .service-icon-large,
    .about-image {
        padding: 40px;
        font-size: 100px;
    }

    .service-image,
    .about-image-container {
        margin-top: 1.5rem;
        height: auto;
        min-height: 250px;
    }

    .vm-content {
        padding: 30px;
    }

    .vm-divider {
        width: 100%;
        height: 2px;
        margin: 20px 0;
        min-height: auto;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
    }

    .navbar-logo {
        height: 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-icon {
        font-size: 60px;
    }

    .hero-image {
        margin-top: 1.5rem;
    }

    .info-box-inner {
        flex-direction: column;
        height: auto;
    }

    .info-image {
        width: 100%;
        height: 200px;
        border-radius: 8px 8px 0 0;
    }

    .info-text {
        width: 100%;
        padding: 20px;
        border-radius: 0 0 8px 8px;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .page-header p {
        font-size: 0.9rem;
    }

    .feature-card,
    .service-card,
    .detail-card {
        padding: 20px;
    }

    .feature-image {
        height: 150px;
    }

    .service-card-image {
        height: 150px;
    }

    .feature-icon,
    .service-icon {
        font-size: 2.5rem;
    }

    .contact-form {
        padding: 20px;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .navbar-logo {
        height: 25px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .vm-card {
        padding: 25px 20px;
    }

    .combined-card {
        padding: 0 !important;
    }

    .vm-image {
        height: 200px;
        border-radius: 8px 8px 0 0;
    }

    .vm-content {
        flex-direction: column;
        padding: 25px;
        gap: 0;
    }

    .vm-divider {
        width: 100%;
        height: 2px;
        min-height: auto;
        margin: 25px 0;
        background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    }

    .vm-section {
        text-align: center;
    }

    .vm-section h3 {
        text-align: center;
    }

    .advantage-item {
        flex-direction: column;
        text-align: center;
    }

    .advantage-icon {
        min-width: auto;
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .service-icon-large,
    .about-image {
        padding: 30px;
        font-size: 80px;
    }
}

/* =====================================
   UTILITY CLASSES
   ===================================== */
.text-justify {
    text-align: justify;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Smooth Transitions */
a, button, .nav-link {
    transition: all 0.3s ease;
}

/* =====================================
   ACCESSIBILITY
   ===================================== */
:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

a:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}
