/* Pages Specific Styles */

/* Page Hero (Inner Pages) */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
    /* Account for fixed navbar */
    color: white;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.page-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    z-index: 0;
}

.page-hero .hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 40px 20px;
}

.page-hero .breadcrumb {
    justify-content: center !important;
    text-align: center !important;
    width: 100%;
}

.page-hero .hero-title {
    text-align: center !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.page-hero .hero-subtitle {
    text-align: center !important;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero-lightning::before {
    background-image: url('https://images.unsplash.com/photo-1605727216801-e27ce1d0cc28?q=80&w=1920&auto=format&fit=crop');
    background-color: #1a1a2e;
}

.page-hero-garments::before {
    background-image: url('../images/pexels-kaip-996329.jpg');
    background-color: #2d3436;
}

.page-hero-trade::before {
    background-image: url('../images/pexels-tomfisk-3848793.jpg');
    background-color: #002f5e;
}

/* Breadcrumbs */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.breadcrumb a:hover {
    color: var(--color-accent);
}

.breadcrumb i {
    width: 14px;
    height: 14px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.product-card-wide {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .product-card-wide {
        grid-column: span 1;
    }
}

.product-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.product-icon i {
    width: 32px;
    height: 32px;
}

.product-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.product-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.industry-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.industry-item i {
    width: 40px;
    height: 40px;
    color: var(--color-primary);
}

.industry-item span {
    font-weight: 600;
    text-align: center;
}

/* Strengths Grid */
.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.strength-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.strength-item i {
    width: 50px;
    height: 50px;
    color: var(--color-accent);
    margin-bottom: 15px;
}

.strength-item h4 {
    margin-bottom: 10px;
}

.strength-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Markets Grid */
.markets-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.market-tag {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--color-primary), #007a4c);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition-normal);
}

.market-tag:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-card i {
    width: 45px;
    height: 45px;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.service-card h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    position: relative;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 150px;
    max-width: 200px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-accent), #f5a623);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 15px;
    box-shadow: var(--shadow-md);
}

.process-step h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Content Split — Premium Redesign */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.content-split.reverse {
    direction: rtl;
}

.content-split.reverse>* {
    direction: ltr;
}

@media (max-width: 768px) {

    .content-split,
    .content-split.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 40px;
    }
}

/* Split Text */
.split-text {
    position: relative;
}

.split-text .lead {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--text-dark);
    font-weight: 400;
}

.split-text p.mt-3 {
    color: var(--text-muted);
    line-height: 1.75;
}

.split-text .section-header {
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--color-primary);
}

.split-text .section-header .section-title {
    font-size: 1.6rem;
    text-align: left;
}

.split-text .section-header .section-desc {
    text-align: left;
    margin-left: 0;
    font-size: 0.95rem;
}

.split-text h2 {
    margin-bottom: 25px;
}

/* Capability Items — Enhanced */
.split-text .capabilities-grid {
    gap: 12px;
    margin-top: 25px;
}

.split-text .capability-item {
    background: linear-gradient(135deg, rgba(0, 90, 52, 0.04), rgba(0, 47, 94, 0.04));
    border: 1px solid rgba(0, 90, 52, 0.1);
    border-radius: var(--radius-full);
    padding: 12px 22px;
    font-weight: 500;
    font-size: 0.93rem;
    transition: all 0.3s ease;
}

.split-text .capability-item:hover {
    background: linear-gradient(135deg, rgba(0, 90, 52, 0.1), rgba(0, 47, 94, 0.08));
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 90, 52, 0.1);
}

.split-text .capability-item i {
    color: var(--color-primary);
    width: 18px;
    height: 18px;
}

/* Split Image — Premium Frame */
.split-image {
    position: relative;
}

.split-image .intro-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    min-height: 420px;
}

.split-image .intro-image::before {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    bottom: 8px;
    left: 8px;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-lg);
    opacity: 0.2;
    z-index: -1;
    transition: all 0.4s ease;
}

.split-image .intro-image:hover::before {
    top: -12px;
    right: -12px;
    opacity: 0.35;
}

.split-image .intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
    min-height: 420px;
}

.split-image .intro-image:hover img {
    transform: scale(1.04);
}

/* Decorative dot accent on split-image */
.split-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--color-accent) 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.4;
    z-index: -1;
}

.content-split.reverse .split-image::after {
    left: auto;
    right: -15px;
}

@media (max-width: 768px) {

    .split-image .intro-image,
    .split-image .intro-image img {
        min-height: 300px;
    }

    .split-image .intro-image::before,
    .split-image::after {
        display: none;
    }

    .split-text .section-header {
        padding-left: 15px;
    }
}

.check-list {
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.check-list li i {
    width: 22px;
    height: 22px;
    color: var(--color-primary);
}

.split-image .image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
}

.lightning-image {
    background-image: url('https://images.unsplash.com/photo-1509390144018-eeeb287023be?q=80&w=800&auto=format&fit=crop');
}

.trade-image {
    background-image: url('https://images.unsplash.com/photo-1578575436955-7f1d0b0a0d0d?q=80&w=800&auto=format&fit=crop');
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: 80px 0;
    color: white;
}

.cta-garments {
    background: linear-gradient(135deg, #005A34, #2d3436);
}

.cta-trade {
    background: linear-gradient(135deg, #004d99, #002f5e);
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   ABOUT PAGE STYLES
   ============================================= */

/* About Hero */
.page-hero-about::before {
    background-image: url('../images/about-office.png');
    background-color: #002f5e;
}

/* About Introduction */
.about-intro {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 992px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.intro-content .lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.intro-content p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Stats Grid */
.intro-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-card .stat-icon {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.stat-card .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.stat-card .stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-accent), var(--color-primary), var(--color-secondary));
    border-radius: 2px;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 50px;
}

.timeline-item.left {
    left: 0;
    text-align: right;
    padding-right: 60px;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
    padding-left: 60px;
}

@media (max-width: 768px) {

    .timeline-item,
    .timeline-item.left,
    .timeline-item.right {
        width: 100%;
        left: 0;
        text-align: left;
        padding-left: 80px;
        padding-right: 20px;
    }
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.timeline-year {
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.timeline-badge {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.timeline-item.left .timeline-badge {
    right: -25px;
    top: 30px;
}

.timeline-item.right .timeline-badge {
    left: -25px;
    top: 30px;
}

@media (max-width: 768px) {

    .timeline-item .timeline-badge,
    .timeline-item.left .timeline-badge,
    .timeline-item.right .timeline-badge {
        left: 5px;
        right: auto;
    }
}

.badge-accent {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.badge-secondary {
    background: linear-gradient(135deg, #002f5e, #004080);
}

.badge-primary {
    background: linear-gradient(135deg, #005a34, #007a48);
}

.badge-today {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.timeline-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

.timeline-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.timeline-item.left .timeline-highlights {
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .timeline-item.left .timeline-highlights {
        justify-content: flex-start;
    }
}

.timeline-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--text-dark);
}

.timeline-highlights span i {
    color: var(--color-primary);
    font-size: 0.9rem;
}

/* Mission & Vision */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

.mv-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.mission-card {
    background: linear-gradient(135deg, #005a34, #003d24);
    color: white;
}

.vision-card {
    background: linear-gradient(135deg, #002f5e, #001f3d);
    color: white;
}

.mv-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.mv-card p {
    opacity: 0.9;
    line-height: 1.8;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: white;
    padding: 35px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Enhanced About Introduction */
.about-intro-enhanced {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .about-intro-enhanced {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.intro-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 400px;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.intro-image:hover img {
    transform: scale(1.03);
}

/* Garments Page Enhancements */
.header-line-left {
    height: 3px;
    width: 60px;
    background: var(--color-primary);
    margin-top: 15px;
    border-radius: 2px;
}

.logistics-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.logistics-item-small {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.logistics-item-small i {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.logistics-item-small h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.logistics-item-small p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Garments Page Specifics */
.capabilities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.capability-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 15px 25px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 500;
}

.capability-item i {
    width: 20px;
    height: 20px;
}

.product-list {
    list-style: none;
    text-align: left;
    margin-top: 15px;
    padding-left: 0;
}

.product-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.product-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

/* Wide product card adjustment */
.product-content-wide {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.product-content-wide .product-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
    text-align: left;
}

@media (max-width: 768px) {
    .product-content-wide .product-list {
        grid-template-columns: 1fr;
    }
}

.qa-list {
    list-style: none;
    padding: 0;
}

.qa-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.qa-list li i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.logistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.logistics-item {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
}

.logistics-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.logistics-item i {
    width: 50px;
    height: 50px;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.logistics-item h4 {
    font-size: 1.1rem;
    margin: 0;
}

.intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.intro-image .image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-accent), #f5a623);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
}

.intro-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.highlight-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.highlight-item i {
    font-size: 1.1rem;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
}

@media (max-width: 992px) {
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-section {
        grid-template-columns: 1fr;
    }
}

/* Business Gallery */
.about-gallery-section {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.text-white {
    color: white !important;
}

.text-white-muted {
    color: rgba(255, 255, 255, 0.7);
}

.business-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .business-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .business-gallery {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.gallery-item.gallery-large {
    grid-column: span 2;
    height: 300px;
}

@media (max-width: 576px) {
    .gallery-item.gallery-large {
        grid-column: span 1;
        height: 250px;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: white;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(180deg, rgba(0, 90, 52, 0.3) 0%, rgba(0, 47, 94, 0.9) 100%);
}

.gallery-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--color-accent);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* =============================================
   GET QUOTE PAGE
   ============================================= */
.page-hero-quote::before {
    background: linear-gradient(135deg, #005a34, #002f5e);
}

.quote-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

@media (max-width: 992px) {
    .quote-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Service Selection */
.quote-services h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.quote-services .text-muted {
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.service-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.service-option:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.service-option.active {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(0, 90, 52, 0.05), rgba(0, 47, 94, 0.05));
    box-shadow: 0 4px 20px rgba(0, 90, 52, 0.15);
}

.service-option-image {
    width: 80px;
    height: 60px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.service-option-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-option-content {
    flex: 1;
}

.service-option-content i {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 5px;
    display: block;
}

.service-option-content h4 {
    font-size: 1rem;
    margin-bottom: 3px;
    color: var(--text-dark);
}

.service-option-content p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.service-check {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.service-check i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.service-option.active .service-check {
    opacity: 1;
}

/* Quote Form */
.quote-form-container {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.quote-form-header h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.quote-form-header p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.quote-form .form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quote-form .form-group label i {
    color: var(--color-primary);
}

.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 400 !important;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.btn-quote-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Quote Benefits */
.quote-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .quote-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .quote-benefits {
        grid-template-columns: 1fr;
    }
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: white;
}

.benefit-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Responsive Quote Form */
@media (max-width: 576px) {
    .quote-form-container {
        padding: 25px;
    }

    .service-option-image {
        width: 60px;
        height: 50px;
    }

    .service-option-content i {
        font-size: 1.2rem;
    }
}

/* =============================================
   SERVICES PAGE
   ============================================= */
.page-hero-services::before {
    background-image: url('../images/services-bg-no-text.png');
    background-color: #004080;
}

.services-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 50px;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-row.reverse {
    direction: rtl;
}

.service-row.reverse .service-content {
    direction: ltr;
    /* Reset text direction for content */
}

@media (max-width: 992px) {
    .service-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-row.reverse {
        direction: ltr;
    }
}

.service-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-lg);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-row:hover .service-image img {
    transform: scale(1.05);
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 90, 52, 0.1), rgba(0, 47, 94, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon-wrapper i {
    font-size: 1.8rem;
    color: var(--color-primary);
}

.service-brief {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 500;
}

.service-features-list li i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

@media (max-width: 576px) {
    .service-features-list {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 250px;
    }

    .service-content h3 {
        font-size: 1.5rem;
    }
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

.process-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.process-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 47, 94, 0.05);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.process-card h4 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
    position: relative;
}

.process-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    position: relative;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Responsive Adjustments for Services Page */
@media (max-width: 992px) {
    .services-wrapper {
        gap: 60px;
    }

    .service-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-row.reverse {
        direction: ltr;
        /* Reset direction for tablet/mobile */
    }

    .service-image {
        height: 350px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-hero-services {
        min-height: 40vh;
        /* Adjust hero height */
    }

    .service-content h3 {
        font-size: 1.75rem;
    }

    .service-brief {
        font-size: 1rem;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .services-wrapper {
        gap: 50px;
        margin-top: 30px;
    }

    .service-image {
        height: 250px;
    }

    .service-content h3 {
        font-size: 1.5rem;
    }

    .service-features-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card {
        padding: 25px 20px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* =============================================
   UNIFIED MODERN UI ENHANCEMENTS
   ============================================= */

/* --- Hero Enhancements --- */
.page-hero {
    min-height: 55vh;
}

.page-hero .hero-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.page-hero .hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.92;
    margin-top: 12px;
}

@media (max-width: 768px) {
    .page-hero .hero-title {
        font-size: 2rem;
    }

    .page-hero .hero-subtitle {
        font-size: 1rem;
    }
}

/* --- Scroll Animations --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Enhanced Product Cards --- */
.product-card {
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    background-clip: padding-box;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, var(--color-primary), var(--color-accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 90, 52, 0.12);
}

/* --- Glassmorphism Strength Cards --- */
.strength-item {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition-normal);
}

.strength-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 90, 52, 0.2);
}

.strength-item i {
    transition: transform 0.3s ease;
}

.strength-item:hover i {
    transform: scale(1.15);
}

/* --- Enhanced Process Timeline --- */
.process-timeline {
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    left: calc(12.5% + 25px);
    right: calc(12.5% + 25px);
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-primary), var(--color-secondary), var(--color-accent));
    z-index: 0;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .process-timeline::before {
        display: none;
    }
}

.process-step {
    position: relative;
    z-index: 1;
}

.step-number {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* --- Enhanced Market Tags --- */
.market-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.market-tag:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 90, 52, 0.25);
}

/* --- Split Image Enhancements --- */
.split-image {
    position: relative;
}

.intro-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 90, 52, 0.05), transparent 60%);
    border-radius: inherit;
    pointer-events: none;
}

/* --- Section Header Enhancements --- */
.section-header .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

.header-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- CTA Section Enhancements --- */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section h2 {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.max-w-3xl {
    max-width: 700px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* --- Bootstrap Override Fixes --- */
.container {
    max-width: 1200px;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 20px;
}

.btn {
    border-radius: var(--radius-full);
}

/* Ensure custom .lead matches site style */
.lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* --- Capability Items in split layouts --- */
.content-split .capabilities-grid {
    justify-content: flex-start;
}

/* --- Responsive Refinements --- */
@media (max-width: 576px) {
    .section-header .section-title {
        font-size: 1.6rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .capability-item {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .intro-image {
        min-height: 280px;
    }
}

@media (max-width: 992px) {
    .strengths-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .strengths-grid {
        grid-template-columns: 1fr;
    }
}