/* =============================================
   HERO SECTION STYLES
   ============================================= */

.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.8), rgba(0, 166, 81, 0.6));
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero-subheadline {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.2s;
    animation-fill-mode: both;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.4s;
    animation-fill-mode: both;
}

.hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.6s;
    animation-fill-mode: both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn.primary {
    background: #fff;
    color: var(--primary-color, #0066cc);
}

.hero-btn.primary:hover {
    background: var(--primary-color, #0066cc);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.hero-btn.secondary:hover {
    background: #fff;
    color: var(--primary-color, #0066cc);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-btn i {
    font-size: 1.2rem;
}

.hero-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease-out 0.8s;
    animation-fill-mode: both;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-feature-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-feature-item i {
    font-size: 1.5rem;
    color: #ffd700;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.hero-scroll-indicator i {
    font-size: 2rem;
    color: #fff;
    opacity: 0.8;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-feature-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 450px;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
}
/* ============================================ */
/* BACK TO TOP BUTTON - UNIVERSAL STYLES       */
/* ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

section {
    padding: 80px 0 !important;
}



.section-subtitle {
    font-size: 1.1rem !important;
    color: #666 !important;
    max-width: 800px !important;
    margin: 0 auto 40px !important;
    line-height: 1.8 !important;
}

.text-center {
    text-align: center !important;
}
/* ===== COMPANY HISTORY BLOCK ===== */
.company-history {
    background: #fff;
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.history-text {
    padding: 20px 0;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.8;
}

.description-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.history-highlights {
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 12px;
    background: var(--light-color);
    border-radius: 8px;
    transition: var(--transition);
}

.highlight-item:hover {
    background: #e8f4f8;
    transform: translateX(10px);
}

.highlight-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.highlight-item span {
    font-size: 1rem;
    color: var(--text-color);
}

.history-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.history-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.history-image:hover img {
    transform: scale(1.05);
}

/* ===== WHY CHOOSE US BLOCK ===== */
.why-choose-us {
    background: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-content {
    padding: 30px;
    position: relative;
    color: var(--dark-color);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
    text-align: center !important;
}

.feature-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    text-align: center !important;
}



/* ===== TRUSTED BRANDS BLOCK ===== */
.trusted-brands {
    background: #fff;
}

.brands-container {
    margin-top: 50px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: var(--light-color);
    border-radius: 10px;
    transition: var(--transition);
    min-height: 150px;
}

.brand-item:hover {
    background: #fff;
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.brand-item img {
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
    filter: grayscale(100%);
    transition: var(--transition);
}

.brand-item:hover img {
    filter: grayscale(0%);
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    text-align: center;
}

.brand-location {
    font-size: 0.9rem;
    color: #888;
    text-align: center;
    margin-top: 5px;
}



/* ===== QUALITY EXCELLENCE BLOCK ===== */
.quality-excellence {
    background: var(--light-color);
}

.quality-activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.quality-activity-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.quality-activity-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.activity-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.activity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 102, 204, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.quality-activity-card:hover .activity-overlay {
    opacity: 1;
}

.quality-activity-card:hover .activity-image img {
    transform: scale(1.15);
}

.activity-overlay i {
    font-size: 3rem;
    color: #fff;
}

.activity-content {
    padding: 25px;
}

.activity-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 12px;
}

.activity-description {
    font-size: 0.95rem;
    color: #666;
    text-align: center;
    line-height: 1.7;
}

/* ===== PRODUCTS SHOWCASE BLOCK ===== */
.products-showcase {
    background: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.product-card {
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.product-image {
    width: 100%;
    height: 350px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 35px;
}

.product-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.product-description {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    margin-bottom: 25px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.product-features span {
    font-size: 1rem;
    color: var(--text-color);
}

.product-cta {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.product-cta:hover {
    background: var(--secondary-color);
    transform: translateX(5px);
}

/* ===== COMPANY POLICIES BLOCK ===== */
.company-policies {
    background: var(--light-color);
}

.policies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 50px;
}

.policy-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 5px solid var(--primary-color);
}

.policy-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(10px);
}

.policy-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.policy-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.policy-icon i {
    font-size: 2rem;
    color: #fff;
}

.policy-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-color);
}

.policy-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-details {
    list-style: none;
    margin: 20px 0;
}

.policy-details li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.policy-details li:before {
    content: "\f138";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.policy-image {
    margin-top: 25px;
    border-radius: 10px;
    overflow: hidden;
}

.policy-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== SERVICES INFO BLOCK (Original) ===== */
.services-info {
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--light-color);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 1.75rem;
    color: #fff;
}

.service-content {
    margin-top: 20px;
}

.service-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.service-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #555;
}

.meta-item i {
    color: var(--secondary-color);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }
    
    .history-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .history-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid,
    .quality-activities-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vmo-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-header {
        flex-direction: column;
        text-align: center;
    }
    
    .policy-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 250px;
    }
    
    .vmo-card,
    .policy-card {
        padding: 25px;
    }
}


.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color, #8b5cf6);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 999;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    background: var(--primary-dark, #7c3aed);
}

/* Responsive back to top */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* ============================================ */
/* ENHANCED HEADER STYLES                      */
/* ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.4s var(--ease-out-expo);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(30px);
}

/* Top Header */
.top-header {
    background: var(--primary-color, #1e40af);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.contact-item i {
    font-size: 0.8rem;
    opacity: 0.9;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-color, #f59e0b);
    transform: translateY(-1px);
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-links a {
    color: white;
    text-decoration: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-out-expo);
    background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px) scale(1.1);
    color: var(--accent-color, #f59e0b);
}

/* Main Header */
.main-header {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: white;
}

.site-header.scrolled .main-header {
    padding: 0.75rem 0;
}

.main-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
}

.logo:hover {
    transform: scale(1.05);
}

.site-logo-img {
    height: 100px;
    width: auto;
    transition: all 0.3s ease;
}

.site-header.scrolled .site-logo-img {
    height: 40px;
}

.logo-content {
    display: flex;
    flex-direction: column;
}

.site-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary, #1f2937);
    line-height: 1;
    background: var(--gradient-primary, linear-gradient(135deg, var(--primary-color), var(--secondary-color)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-tagline {
    font-size: 0.8rem;
    color: var(--text-muted, #6b7280);
    font-weight: 400;
    margin-top: 0.2rem;
}

.site-header.scrolled .site-tagline {
    display: none;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-primary, #1f2937);
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius-md, 8px);
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s var(--ease-out-expo);
    transform: translateX(-50%);
}

.nav-link:hover::before,
.main-nav li.active .nav-link::before {
    width: 80%;
}

.nav-link:hover,
.main-nav li.active .nav-link {
    color: var(--primary-color, #1e40af);
    background: rgba(139, 92, 246, 0.05);
}

.nav-icon {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    width: 16px;
    text-align: center;
}

.nav-link:hover .nav-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* Submenu */
.has-submenu {
    position: relative;
}

.has-submenu .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-md, 8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s var(--ease-out-expo);
    z-index: 1000;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu ul {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.submenu-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: var(--text-primary, #1f2937);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-size: 0.9rem;
}

.submenu-link:hover {
    background: rgba(139, 92, 246, 0.05);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.submenu-link i {
    font-size: 0.8rem;
    opacity: 0.7;
    width: 12px;
}

/* ============================================ */
/* MOBILE MENU TOGGLE STYLES                   */
/* ============================================ */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
    z-index: 1001; /* Ensure toggle is above overlay */
}

.mobile-menu-toggle:hover {
    background: rgba(139, 92, 246, 0.1);
}

.hamburger-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 20px;
}

.line {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s var(--ease-out-expo);
    transform-origin: center;
}

.mobile-menu-toggle.active .line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================ */
/* MOBILE MENU OVERLAY                         */
/* ============================================ */

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998; /* Below menu but above content */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================ */
/* MOBILE NAVIGATION STYLES                    */
/* ============================================ */

@media (max-width: 768px) {
    .top-header {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: right 0.4s var(--ease-out-expo);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 999; /* Above overlay */
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .main-nav li {
        width: 100%;
    }
    
    .nav-link {
        padding: 1rem 0;
        justify-content: flex-start;
        border-radius: 0;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }
    
    .nav-link::before {
        display: none;
    }
    
    /* FIX: Hide submenus by default on mobile */
    .has-submenu .submenu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        margin-left: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s var(--ease-out-expo);
    }
    
    /* FIX: Show submenu only when parent has active class */
    .has-submenu.active .submenu {
        opacity: 1;
        visibility: visible;
        max-height: 500px; /* Adjust based on content */
    }
    
    .submenu-link {
        padding: 0.75rem 0;
        font-size: 0.9rem;
        border-bottom: none;
    }
    
    .nav-cta {
        margin: 1rem 0 0 0;
        width: 100%;
    }
    
    .nav-cta-btn {
        justify-content: center;
        width: 100%;
    }
    
    /* FIX: Ensure home link is visible and clickable */
    .main-nav .logo {
        display: none; /* Hide duplicate logo in mobile nav */
    }
    
    /* Theme-specific mobile styles */
    .creative-dark-theme .main-nav,
    .modern-tech-theme .main-nav {
        background: var(--bg-secondary);
    }
    
    .creative-dark-theme .nav-link,
    .modern-tech-theme .nav-link {
        border-bottom-color: var(--border-light);
    }
    
    /* FIX: Ensure proper z-index stacking */
    .site-header {
        z-index: 1000;
    }
    
    .mobile-menu-toggle {
        z-index: 1001;
    }
    
    .main-nav {
        z-index: 999;
    }
    
    .mobile-menu-overlay {
        z-index: 998;
    }
}

/* ============================================ */
/* SUBMENU TOGGLE FOR MOBILE                   */
/* ============================================ */

/* Add submenu toggle indicator for mobile */
.has-submenu > .nav-link::after {
    content: '\f107'; /* FontAwesome chevron down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: auto;
    transition: transform 0.3s var(--ease-out-expo);
}

.has-submenu.active > .nav-link::after {
    transform: rotate(180deg);
}

/* ============================================ */
/* MOBILE SUBMENU ENHANCEMENTS                 */
/* ============================================ */

@media (max-width: 768px) {
    /* FIX: Make submenu items visually distinct */
    .submenu-link {
        padding-left: 1.5rem;
        color: var(--text-muted);
        font-size: 0.85rem;
        border-left: 2px solid transparent;
        transition: all 0.3s ease;
    }
    
    .submenu-link:hover {
        border-left-color: var(--primary-color);
        background: rgba(139, 92, 246, 0.05);
    }
    
    /* FIX: Add subtle background to submenu */
    .has-submenu.active .submenu {
        background: rgba(0, 0, 0, 0.02);
        border-radius: var(--border-radius-sm);
        margin: 0.5rem 0;
        padding: 0.5rem 0;
    }
    
    /* FIX: Ensure all links are properly spaced */
    .main-nav ul {
        gap: 0.5rem;
    }
    
    .nav-link {
        margin: 0;
    }
}

/* ============================================ */
/* ACCESSIBILITY ENHANCEMENTS                  */
/* ============================================ */

/* Ensure proper focus management for mobile */
@media (max-width: 768px) {
    .main-nav {
        /* Allow focus within mobile menu */
        :focus {
            outline: 2px solid var(--primary-color);
            outline-offset: 2px;
        }
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}
/* ============================================ */
/* RESPONSIVE HEADER STYLES                    */
/* ============================================ */

@media (max-width: 1024px) {
    .main-nav ul {
        gap: 1rem;
    }
    
    .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .top-header {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: right 0.4s var(--ease-out-expo);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .main-nav li {
        width: 100%;
    }
    
    .nav-link {
        padding: 1rem 0;
        justify-content: flex-start;
        border-radius: 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-link::before {
        display: none;
    }
    
   
    
    .nav-cta {
        margin: 1rem 0 0 0;
        width: 100%;
    }
    
    .nav-cta-btn {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .main-header-content {
        gap: 1rem;
    }
    
    .site-logo-img {
        height: 40px;
    }
    
    .site-name {
        font-size: 1.5rem;
    }
    
    .main-nav {
        width: 280px;
    }
}

/* ============================================ */
/* ENHANCED FOOTER STYLES - ALL THEMES         */
/* ============================================ */

.site-footer {
    background: var(--bg-secondary, #f8fafc);
    color: var(--text-secondary, #475569);
    position: relative;
    overflow: hidden;
}

/* Footer Main Section */
.footer-main {
    padding: 4rem 0 2rem;
}

.footer-widgets-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.footer-widget {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.widget-title {
    color: var(--text-primary, #1f2937);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Company Info */
.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-logo-text .footer-site-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 400;
}

.footer-about {
    line-height: 1.6;
    color: var(--text-secondary);
}

.trust-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--accent-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
}

.trust-badge i {
    color: var(--primary-color);
}

/* Quick Links */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-menu li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
    padding: 0.5rem 0;
    border-radius: var(--border-radius-sm);
}

.footer-menu li a:hover {
    color: var(--primary-color);
    transform: translateX(8px);
    background: rgba(139, 92, 246, 0.05);
}

.footer-menu li a i {
    width: 16px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Contact Info */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.contact-text {
    flex: 1;
}

.contact-text a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-color);
}

/* Newsletter & Social */
.newsletter-box {
    background: var(--accent-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.newsletter-box p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: white;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.input-group {
    display: flex;
    flex: 1;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.input-group input {
    flex: 1;
    border: none;
    padding: 0.75rem 1rem;
    background: transparent;
    color: var(--text-primary);
}

.input-group input:focus {
    outline: none;
}

.newsletter-btn {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 0 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--gradient-accent);
}

.footer-social h5 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1rem;
}

.social-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--accent-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
    font-size: 0.9rem;
}

.social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    border-color: transparent;
}

.social-link i {
    width: 16px;
    text-align: center;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    background: var(--bg-secondary);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.copyright p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.credits p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
}

/* ============================================ */
/* THEME-SPECIFIC FOOTER STYLES                */
/* ============================================ */

/* Creative Dark Theme */
.creative-theme .site-footer {
    background: var(--bg-primary, #0f0f23);
    border-top: 1px solid var(--border-light);
}

.creative-theme .trust-badge,
.creative-theme .newsletter-box,
.creative-theme .social-link {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

.creative-theme .input-group {
    background: var(--bg-secondary);
    border-color: var(--border-light);
}

.creative-theme .input-group input {
    background: transparent;
    color: var(--text-secondary);
}

.creative-theme .footer-bottom {
    background: var(--bg-tertiary);
    border-top-color: var(--border-light);
}

/* Corporate Elegance Theme */
.elegance-theme .site-footer {
    background: var(--bg-secondary, #f8fafc);
    border-top: 1px solid var(--border-color);
}

.elegance-theme .trust-badge,
.elegance-theme .newsletter-box,
.elegance-theme .social-link {
    background: white;
    border-color: var(--border-color);
    box-shadow: var(--shadow-subtle);
}

.elegance-theme .footer-bottom {
    background: var(--gradient-primary);
}

/* Modern Tech Theme */
.modern-theme .site-footer {
    background: var(--bg-primary, #0f172a);
    border-top: 1px solid var(--border-color);
}

.modern-theme .trust-badge,
.modern-theme .newsletter-box,
.modern-theme .social-link {
    background: var(--gradient-glass);
    backdrop-filter: var(--blur-amount);
    border: 1px solid var(--border-light);
}

.modern-theme .input-group {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
}

.modern-theme .input-group input {
    background: transparent;
    color: var(--text-secondary);
}

.modern-theme .footer-bottom {
    background: var(--bg-tertiary);
    border-top-color: var(--border-light);
}

/* ============================================ */
/* FOOTER RESPONSIVE DESIGN                    */
/* ============================================ */

@media (max-width: 1024px) {
    .footer-widgets-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-widgets-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-links-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .trust-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 2rem 0 1rem;
    }
    
    .footer-widget {
        gap: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-icon {
        align-self: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ============================================ */
/* FOOTER ANIMATIONS & EFFECTS                 */
/* ============================================ */

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-widget {
    animation: floatUp 0.6s var(--ease-out-expo) forwards;
}

/* Hover effects */
.footer-widget:hover .widget-title::after {
    width: 60px;
    transition: width 0.3s var(--ease-out-expo);
}

/* Loading states */
.newsletter-form.loading .newsletter-btn {
    pointer-events: none;
    opacity: 0.7;
}

.newsletter-form.loading .newsletter-btn i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================ */
/* FOOTER ACCESSIBILITY                        */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
    .footer-widget {
        animation: none;
    }
    
    .social-link:hover {
        transform: none;
    }
}

/* High contrast support */
@media (prefers-contrast: high) {
    .site-footer {
        border-top: 3px solid var(--primary-color);
    }
    
    .widget-title::after {
        height: 4px;
    }
    
    .social-link,
    .trust-badge,
    .newsletter-box {
        border-width: 2px;
    }
}

/* ============================================ */
/* COMPONENT STYLES - MOBILE FIRST            */
/* ============================================ */

/* Text with Image Grid */
.text-image-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    align-items: center;
    padding: var(--space-8) var(--space-4);
    background: var(--bg-primary, #ffffff);
    transition: background-color 0.3s ease;
}

.text-image-grid .image-content {
    order: 1; /* Image comes first on mobile */
    width: 100%;
    max-width: 400px;
}

.text-image-grid .image-content img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    filter: brightness(0.95); /* Slight adjustment for dark mode */
    transition: filter 0.3s ease;
}

.text-image-grid .text-content {
    order: 2; /* Text comes after image on mobile */
    text-align: center; /* Center align for mobile */
    width: 100%;
}

.text-image-grid .text-content h2 {
    color: var(--text-primary, #1f2937);
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.text-image-grid .text-content h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: background 0.3s ease;
}

.text-image-grid .text-content p {
    color: var(--text-secondary, #4b5563);
    text-align: left;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

/* About Intro Section */
.about-intro-section {
    padding: var(--space-8) var(--space-4);
    background: var(--bg-secondary, linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%));
    transition: background 0.3s ease;
}

.about-intro-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    align-items: center;
}

.about-intro-content {
    order: 2; /* Text comes after image on mobile */
    text-align: center;
}

.about-intro-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary, #1f2937);
    line-height: 1.2;
    margin-bottom: var(--space-4);
    transition: color 0.3s ease;
}

.about-intro-content p {
    font-size: clamp(0.95rem, 3vw, 1.05rem);
    color: var(--text-secondary, #4b5563);
    line-height: 1.6;
    text-align: left;
    margin-bottom: var(--space-4);
    padding-right: 0;
    transition: color 0.3s ease;
}

.about-intro-image {
    order: 1; /* Image comes first on mobile */
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.about-intro-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    filter: brightness(0.95); /* Slight adjustment for dark mode */
    transition: filter 0.3s ease;
}

.about-cta {
    display: inline-block;
    margin-top: var(--space-4);
    padding: var(--space-3) var(--space-6);
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    font-size: clamp(0.9rem, 3vw, 1rem);
}

.about-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* ============================================ */
/* TABLET STYLES (768px and up)               */
/* ============================================ */

@media (min-width: 768px) {
    .text-image-grid {
        padding: var(--space-12) var(--space-6);
    }
    
    .text-image-grid .text-content {
        text-align: left;
    }
    
    .text-image-grid .text-content h2::after {
        left: 0;
        transform: none;
    }
    
    .about-intro-section {
        padding: var(--space-12) var(--space-6);
    }
    
    .about-intro-content {
        text-align: left;
    }
    
    .about-intro-content p {
        padding-right: 20px;
    }
    
    .about-cta {
        padding: var(--space-3) var(--space-8);
    }
}

/* ============================================ */
/* DESKTOP STYLES (1024px and up)             */
/* ============================================ */

@media (min-width: 1024px) {
    /* Text with Image Grid - Desktop */
    .text-image-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-12);
        align-items: center;
        padding: var(--space-16) var(--space-8);
    }
    
    .text-image-grid .image-content {
        order: 2; /* Image on right side */
        max-width: none;
    }
    
    .text-image-grid .text-content {
        order: 1; /* Text on left side */
        text-align: left;
    }
    
    .text-image-grid .text-content h2::after {
        left: 0;
        transform: none;
    }
    
    /* Alternate layout for text-image-grid */
    .text-image-grid.alternate .image-content {
        order: 1; /* Image on left */
    }
    
    .text-image-grid.alternate .text-content {
        order: 2; /* Text on right */
    }
    
    /* About Intro - Desktop */
    .about-intro-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-12);
        align-items: center;
    }
    
    .about-intro-content {
        order: 1;
        text-align: left;
    }
    
    .about-intro-image {
        order: 2;
        max-width: none;
    }
    
    .about-intro-content p {
        padding-right: 40px;
        text-align: justify;
        line-height: 1.7;
    }
    
    .about-intro-section {
        padding: var(--space-16) var(--space-8);
    }
}

/* ============================================ */
/* LARGE DESKTOP STYLES (1200px and up)       */
/* ============================================ */

@media (min-width: 1200px) {
    .text-image-grid {
        padding: var(--space-20) var(--space-12);
        gap: var(--space-16);
    }
    
    .about-intro-section {
        padding: var(--space-20) var(--space-12);
    }
    
    .about-intro-grid {
        gap: var(--space-16);
    }
}


/* ============================================ */
/* ACCESSIBILITY & PERFORMANCE                */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
    .about-cta,
    .text-image-grid,
    .text-image-grid .image-content img,
    .about-intro-image img {
        transition: none;
    }
    
    .about-cta:hover {
        transform: none;
    }
}

@media (prefers-contrast: high) {
    .about-intro-section {
        background: #ffffff;
        border: 2px solid #000000;
    }
    
    .text-image-grid {
        border: 2px solid #000000;
    }
    
    .text-image-grid .text-content h2::after,
    .about-intro-content h2::after {
        height: 4px;
        background: #000000;
    }
    
 
}
