/* ====================================================
   HELMAND JAHANI MSP - PROFESSIONAL STYLES
   ==================================================== */

/* GLOBAL VARIABLES */
:root {
    --primary: #1a685b;
    --primary-dark: #0d3d35;
    --secondary: #ffac00;
    --dark: #1f2937;
    --gray: #6b7280;
    --light: #f3f4f6;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --border-color: #e2e8f0;
    --text-muted: #94a3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #f8fafc;
    color: var(--dark);
    line-height: 1.5;
}

/* ========== UTILITIES ========== */
.text-center {
    text-align: center;
}
.mb-2 {
    margin-bottom: 0.5rem;
}
.mb-3 {
    margin-bottom: 1rem;
}
.p-3 {
    padding: 1rem;
}
.p-4 {
    padding: 1.5rem;
}
.mt-40 {
    margin-top: 40px;
}
.small-text {
    font-size: 12px;
    color: var(--text-muted);
}

/* ====================================================
   HISTORY SECTION (HOME PAGE ONLY - NO WRAPPER NEEDED)
   ==================================================== */
.about-feature-grid .box-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 104, 91, 0.1);
    border-radius: 12px;
    transition: 0.3s;
}

.about-feature-grid .box-icon i {
    font-size: 48px;
    transition: 0.3s;
}

.about-feature-grid:hover .box-icon {
    background: var(--primary);
    transform: scale(1.05);
}

.about-feature-grid:hover .box-icon i {
    color: var(--white);
}

@media (max-width: 768px) {
    .about-feature-grid .box-icon {
        width: 55px;
        height: 55px;
    }
    .about-feature-grid .box-icon i {
        font-size: 36px;
    }
}

/* ====================================================
   COUNTRY SECTION (HOME PAGE ONLY)
   ==================================================== */
.countries-section {
    padding: 90px 0;
    background: var(--white);
}

.corridors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 16px;
}

.corridor-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid #edf2f7;
    border-radius: 14px;
    padding: 14px 16px;
    transition: 0.2s;
}

.corridor-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.corridor-flag {
    width: 46px;
    height: 32px;
    border-radius: 8px;
    overflow: hidden;
}

.corridor-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.corridor-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 3px;
}

@media (max-width: 768px) {
    .countries-section {
        padding: 60px 0;
    }
    .corridors-grid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    }
}

/* ====================================================
   ABOUT US PAGE STYLES (SCOPED)
   ==================================================== */
.about-us-page .about-content p,
.about-us-page .about-history p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #4a5568;
}

.about-us-page .about-wrap2,
.about-us-page .about-wrap2 .about-content,
.about-us-page .about-wrap2 .about-history {
    max-width: 900px;
    margin: 0 auto;
}

.about-us-page .core-values-section,
.about-us-page .mission-vision-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f0f5 100%);
}

.about-us-page .mission-vision-section {
    background: linear-gradient(135deg, #f0f9f6 0%, #e6f3ef 100%);
}

.about-us-page .about-feature-grid,
.about-us-page .mv-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.about-us-page .mv-card {
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

.about-us-page .about-feature-grid:hover,
.about-us-page .mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(26, 104, 91, 0.15);
}

.about-us-page .mv-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a685b, #ffac00, #1a685b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-us-page .mv-card:hover::before {
    transform: scaleX(1);
}

.about-us-page .about-feature-grid .box-icon,
.about-us-page .mv-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a685b 0%, #0d3d35 100%);
    border-radius: 50%;
    transition: 0.3s;
}

.about-us-page .mv-card-icon {
    margin-bottom: 25px;
}

.about-us-page .about-feature-grid:hover .box-icon,
.about-us-page .mv-card:hover .mv-card-icon {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(26, 104, 91, 0.3);
}

.about-us-page .mv-card:hover .mv-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.about-us-page .about-feature-grid .box-icon i,
.about-us-page .mv-card-icon i {
    font-size: 40px;
    color: var(--white);
}

.about-us-page .mv-card-icon i {
    font-size: 38px;
}

.about-us-page .about-feature-grid .box-title,
.about-us-page .mv-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f2937;
}

.about-us-page .mv-card-title {
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.about-us-page .mv-card-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #1a685b, #ffac00);
    border-radius: 2px;
}

.about-us-page .about-feature-grid .box-text,
.about-us-page .mv-card-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

.about-us-page .mv-card-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

.about-us-page .contact-section-bottom {
    padding: 0 0 80px 0;
}

.about-us-page .contact-info-wrap {
    background: linear-gradient(135deg, #1a685b 0%, #0d3d35 100%);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-us-page .contact-info-wrap .contact-info-card {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.about-us-page .contact-info-wrap .contact-info-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.about-us-page .contact-info-wrap .contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us-page .contact-info-wrap .contact-icon i {
    font-size: 32px;
    color: var(--white);
}

.about-us-page .contact-info-wrap h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.about-us-page .contact-info-wrap p,
.about-us-page .contact-info-wrap a {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    margin: 0;
}

.about-us-page .contact-info-wrap a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* ====================================================
   SERVICES PAGE STYLES (SCOPED)
   ==================================================== */
.services-page .service-card {
    transition: all 0.3s ease;
}

.services-page .service-card:hover {
    transform: translateY(-8px);
}

.services-page .feature-card {
    padding: 35px 25px;
    background: var(--white);
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.services-page .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(26, 104, 91, 0.15);
}

.services-page .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a685b 0%, #0d3d35 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.services-page .feature-card:hover .feature-icon {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(26, 104, 91, 0.3);
}

.services-page .feature-icon i {
    font-size: 36px;
    color: var(--white);
}

.services-page .feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f2937;
}

.services-page .feature-text {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

.services-page .cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a685b 0%, #0d3d35 100%);
    position: relative;
    overflow: hidden;
}

.services-page .cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><path fill="white" d="M0,0L1000,0L1000,1000L0,1000Z"/><circle cx="200" cy="200" r="100" fill="white"/><circle cx="800" cy="800" r="150" fill="white"/><circle cx="500" cy="500" r="200" fill="white"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.services-page .cta-content {
    position: relative;
    z-index: 1;
}

.services-page .cta-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: -0.02em;
}

.services-page .cta-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.services-page .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: var(--white);
    color: #1a685b;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.services-page .cta-btn:hover {
    transform: translateY(-3px);
    background: var(--white);
    color: #0d3d35;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.services-page .cta-btn i {
    transition: transform 0.3s ease;
}

.services-page .cta-btn:hover i {
    transform: translateX(5px);
}

/* ====================================================
   CONTACT PAGE STYLES (SCOPED - Add .contact-page wrapper)
   ==================================================== */
.contact-page .contact-info-card {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-page .contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.contact-page .contact-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(
        135deg,
        rgba(26, 104, 91, 0.1),
        rgba(26, 104, 91, 0.05)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-page .contact-info-icon i {
    font-size: 36px;
    color: var(--primary);
}

.contact-page .contact-info-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.contact-page .contact-info-card p {
    color: var(--gray);
    margin-bottom: 5px;
    font-size: 15px;
}

.contact-page .contact-info-card a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-page .contact-info-card a:hover {
    color: var(--primary);
}

.contact-page .contact-form-wrap {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-page .form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark);
}

.contact-page .contact-form-wrap input,
.contact-page .contact-form-wrap textarea {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-page .contact-form-wrap input:focus,
.contact-page .contact-form-wrap textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 104, 91, 0.1);
}

.contact-page .is-invalid {
    border-color: #dc3545 !important;
}

.contact-page .invalid-feedback {
    display: none;
    font-size: 12px;
    color: #dc3545;
    margin-top: 5px;
}

.contact-page .invalid-feedback.d-block {
    display: block;
}

.contact-page .contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-page #form-alert {
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.contact-page #form-alert.alert-success {
    display: block;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.contact-page #form-alert.alert-danger {
    display: block;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* ====================================================
   FOOTER
   ==================================================== */
.footer-widget .th-widget-contact .info-card {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-widget .th-widget-contact .box-content {
    flex: 1;
    word-break: break-word;
}

.footer-widget .th-widget-contact .box-title a {
    color: #fff;
    text-decoration: none;
}

.footer-widget .th-widget-contact .box-title a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .footer-widget .th-widget-contact .info-card {
        flex-direction: column;
        text-align: center;
    }
}

/* ====================================================
   MENU & NAVIGATION
   ==================================================== */
.main-menu ul ul.sub-menu,
.footer-widget .widget_nav_menu ul.menu {
    list-style: none;
    padding: 0;
}

.main-menu ul ul.sub-menu li a::before,
.main-menu ul ul.sub-menu li a i,
.footer-widget .widget_nav_menu ul.menu li a::before {
    display: none;
}

.main-menu ul li.menu-item-has-children > a::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 8px;
    display: inline-block;
}

.main-menu ul ul.sub-menu li a {
    padding: 10px 20px;
    transition: 0.3s;
}

.main-menu ul ul.sub-menu li a:hover {
    background: var(--primary);
    color: #fff;
    padding-left: 25px;
}

/* RTL Support */
html[dir="rtl"] .main-menu ul li.menu-item-has-children > a::after {
    margin-left: 0;
    margin-right: 8px;
}

html[dir="rtl"] .main-menu ul ul.sub-menu {
    text-align: right;
}

html[dir="rtl"] .main-menu ul ul.sub-menu li a:hover {
    padding-left: 20px;
    padding-right: 25px;
}

/* ====================================================
   LANGUAGE SELECTOR
   ==================================================== */
.woocommerce-mini-cart-item a img {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    object-fit: cover;
}

/* ====================================================
   COOKIE CONSENT
   ==================================================== */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 99999;
    max-width: 340px;
    border: 1px solid #e5e7eb;
    animation: slideIn 0.3s ease;
}

.cookie-content {
    padding: 18px 20px;
}

.cookie-header {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.cookie-icon {
    font-size: 24px;
}

.cookie-text {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 8px;
}

.cookie-btn {
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    font-weight: 500;
    border: none;
    transition: all 0.2s ease;
}

.cookie-btn-accept {
    background: #1a685b;
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #0d3d35;
}

.cookie-btn-decline {
    background: #f3f4f6;
    color: #4b5563;
}

.cookie-btn-decline:hover {
    background: #e5e7eb;
}

.cookie-links {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eef2f6;
}

.cookie-link {
    font-size: 11px;
    color: #1a685b;
    text-decoration: none;
}

.cookie-link:hover {
    text-decoration: underline;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RTL Support */
html[dir="rtl"] .cookie-consent {
    right: auto;
    left: 20px;
    background: #fdf8f0;
    border-color: #f0e4cc;
}

html[dir="rtl"] .cookie-text {
    color: #5a4a3a;
}

html[dir="rtl"] .cookie-buttons {
    flex-direction: row-reverse;
}

html[dir="rtl"] .cookie-btn-decline {
    background: #f0e8dc;
    color: #5a4a3a;
}

html[dir="rtl"] .cookie-btn-decline:hover {
    background: #e8ddd0;
}

html[dir="rtl"] .cookie-links {
    flex-direction: row-reverse;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .cookie-consent {
        left: 16px;
        right: 16px;
        max-width: none;
        bottom: 16px;
    }
    .cookie-content {
        padding: 16px;
    }
    .cookie-btn {
        padding: 6px 16px;
        font-size: 12px;
    }
}

/* ====================================================
   PROFESSIONAL LOGO STYLES
   ==================================================== */
.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-link {
    display: block;
    line-height: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-link:hover {
    opacity: 0.85;
    transform: scale(0.98);
}

.main-logo,
.logo-white {
    height: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: contain;
    object-position: center;
}

.main-logo {
    display: block;
}

.logo-white {
    display: none;
}

.sticky-active .main-logo {
    display: none;
}

.sticky-active .logo-white {
    display: block;
}

.main-logo,
.logo-white {
    max-height: 80px;
    width: auto;
}

.sticky-active .main-logo,
.sticky-active .logo-white {
    max-height: 65px;
}

.mobile-logo {
    padding: 20px 0;
    text-align: center;
}

.mobile-logo-img {
    max-height: 70px;
    width: auto;
    display: inline-block;
}

.about-logo {
    margin-bottom: 25px;
}

.footer-logo {
    max-height: 90px;
    width: auto;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.th-widget-about {
    text-align: left;
}

.th-widget-about .about-text {
    margin-bottom: 25px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Logo Sizes */
@media (max-width: 1399px) {
    .main-logo,
    .logo-white {
        max-height: 75px;
    }
    .footer-logo {
        max-height: 85px;
    }
}

@media (max-width: 1199px) {
    .main-logo,
    .logo-white {
        max-height: 70px;
    }
    .sticky-active .main-logo,
    .sticky-active .logo-white {
        max-height: 60px;
    }
    .footer-logo {
        max-height: 80px;
    }
    .mobile-logo-img {
        max-height: 65px;
    }
}

@media (max-width: 991px) {
    .main-logo,
    .logo-white {
        max-height: 65px;
    }
    .sticky-active .main-logo,
    .sticky-active .logo-white {
        max-height: 55px;
    }
    .footer-logo {
        max-height: 75px;
    }
    .mobile-logo-img {
        max-height: 60px;
    }
    .th-widget-about {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .main-logo,
    .logo-white {
        max-height: 60px;
    }
    .sticky-active .main-logo,
    .sticky-active .logo-white {
        max-height: 52px;
    }
    .footer-logo {
        max-height: 70px;
    }
    .mobile-logo-img {
        max-height: 65px;
    }
    .mobile-logo {
        padding: 15px 0;
    }
}

@media (max-width: 575px) {
    .main-logo,
    .logo-white {
        max-height: 55px;
    }
    .sticky-active .main-logo,
    .sticky-active .logo-white {
        max-height: 50px;
    }
    .footer-logo {
        max-height: 65px;
    }
    .mobile-logo-img {
        max-height: 60px;
    }
}

@media (max-width: 479px) {
    .main-logo,
    .logo-white {
        max-height: 50px;
    }
    .sticky-active .main-logo,
    .sticky-active .logo-white {
        max-height: 48px;
    }
    .footer-logo {
        max-height: 60px;
    }
    .mobile-logo-img {
        max-height: 55px;
    }
}

@media (max-width: 374px) {
    .main-logo,
    .logo-white {
        max-height: 48px;
    }
    .sticky-active .main-logo,
    .sticky-active .logo-white {
        max-height: 45px;
    }
    .footer-logo {
        max-height: 55px;
    }
    .mobile-logo-img {
        max-height: 50px;
    }
}

@media (max-width: 319px) {
    .main-logo,
    .logo-white {
        max-height: 45px;
    }
    .footer-logo {
        max-height: 50px;
    }
    .mobile-logo-img {
        max-height: 48px;
    }
}

/* High Resolution Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .main-logo,
    .logo-white,
    .mobile-logo-img,
    .footer-logo {
        image-rendering: crisp-edges;
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .main-logo:not(.logo-white) {
        filter: brightness(0) invert(1);
    }
}

/* Print Styles */
@media print {
    .main-logo,
    .logo-white {
        filter: grayscale(100%);
    }
}

/* Logo Glow Animation */
@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 0 rgba(26, 104, 91, 0));
    }
    50% {
        filter: drop-shadow(0 0 8px rgba(26, 104, 91, 0.4));
    }
    100% {
        filter: drop-shadow(0 0 0 rgba(26, 104, 91, 0));
    }
}

.logo-link:hover .main-logo,
.logo-link:hover .logo-white {
    animation: logoGlow 0.5s ease;
}

/* RTL Support for Logo */
html[dir="rtl"] .th-widget-about {
    text-align: right;
}

html[dir="rtl"] .footer-logo {
    margin-right: 0;
    margin-left: auto;
}

/* ====================================================
   RESPONSIVE STYLES (ABOUT US PAGE)
   ==================================================== */
@media (max-width: 768px) {
    .about-us-page .core-values-section,
    .about-us-page .mission-vision-section {
        padding: 60px 0;
    }
    .about-us-page .about-feature-grid,
    .about-us-page .mv-card {
        padding: 25px 20px;
    }
    .about-us-page .about-feature-grid .box-icon,
    .about-us-page .mv-card-icon {
        width: 65px;
        height: 65px;
    }
    .about-us-page .about-feature-grid .box-icon i,
    .about-us-page .mv-card-icon i {
        font-size: 32px;
    }
    .about-us-page .mv-card-title {
        font-size: 20px;
    }
    .about-us-page .mv-card-text p {
        font-size: 14px;
    }
    .about-us-page .contact-info-wrap {
        padding: 30px 20px !important;
    }
    .about-us-page .contact-info-wrap .contact-info-card {
        padding: 15px;
    }
}

/* Services Page Responsive */
@media (max-width: 768px) {
    .services-page .feature-card {
        padding: 25px 20px;
    }
    .services-page .feature-icon {
        width: 65px;
        height: 65px;
    }
    .services-page .feature-icon i {
        font-size: 30px;
    }
    .services-page .feature-title {
        font-size: 18px;
    }
    .services-page .cta-section {
        padding: 60px 0;
    }
    .services-page .cta-title {
        font-size: 32px;
    }
    .services-page .cta-text {
        font-size: 16px;
        padding: 0 20px;
    }
    .services-page .cta-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .services-page .cta-title {
        font-size: 28px;
    }
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-page .contact-info-card {
        padding: 30px 20px;
    }
    .contact-page .contact-form-wrap {
        padding: 25px;
    }
    .contact-page .form-title {
        font-size: 20px;
    }
    .contact-page .contact-info-icon {
        width: 60px;
        height: 60px;
    }
    .contact-page .contact-info-icon i {
        font-size: 28px;
    }
}
