/*
Theme Name: AIBus
Description: Custom WordPress theme for AIBus website - Fully responsive and multilingual
Version: 1.0.0
Author: AIBus Development Team
Text Domain: aibus
Domain Path: /languages
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* CSS Variables for Figma Design */
:root {
    --primary-red: #FF6C5C;
    --primary-blue: #007aff;
    --accent-purple: #8e44ad;
    --accent-orange: #ff9500;
    --dark-bg: #1E1E1E;
    --dark-surface: #1a1a1a;
    --dark-card: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;
    --gradient-hero: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    --gradient-card: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    --blog-bg: #f8f9fa;
    --blog-text: #333333;
    --blog-meta: #666666;
    --blog-border: #e9ecef;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    font-size: 16px;
    scroll-behavior: smooth;
}

section {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: #ffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Container */
.container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 3rem;
    width: 100%;
}

/* Site Content */
.site-content {
    padding-top: 0;
}

/* Header - Matching Figma Design */
.site-header {
    background: var(--dark-bg);
    backdrop-filter: blur(1px);
    position: fixed;
    top: 32px; /* Account for WordPress admin bar */
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

/* Header when scrolled */
.site-header.scrolled {
    background: #1E1E1E;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.site-header::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 100 100"><defs><pattern id="header-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23header-grid)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

/* When admin bar is present */
.admin-bar .site-header {
    top: 32px;
}

/* When no admin bar (logged out) */
.site-header {
    top: 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    gap: 3rem;
}

@media (max-width: 1400px) {
    .header-content {
        gap: 2rem;
    }
    .main-navigation a {
        padding: 0.75rem 1rem !important;
    }
    .header-actions {
        gap: 0.5rem;
    }
}
@media (max-width: 1300px) {
    .header-content {
        gap: 1rem;
    }
    .header-actions .contact-us {
        padding: 16px 18px;
    }
}

@media (max-width: 1200px) {
    .mobile-menu-toggle {
        display: block !important;
    }
    .main-navigation {
        position: relative;
        order: 3;
        flex: unset !important;
    }
    .header-actions {
        flex: 1;
        justify-content: flex-end;
    }
    #primary-menu {
        flex-direction: column;
        position: absolute;
        top: 70px;
    }
    #primary-menu {
        display: none;
    }
    #site-navigation.toggled #primary-menu {
        display: flex;

        width: 300px;
        background: #ffff;
        align-content: flex-start;
        text-align: start !important;
        align-items: end;
        padding: 20px 20px;
    }
    #site-navigation.toggled #primary-menu li {
        width: 100%;
    }

    .main-navigation a {
        width: 100%;
        display: block;
        color: var(--blog-text) !important;;
    }
}
/* Ensure proper spacing between header elements */
.site-branding {
    flex-shrink: 0;
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.header-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.site-logo {
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.5px;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
}

.logo-ai {
    color: #007aff;
    font-weight: 800;
}

.logo-bus {
    color: #ffffff;
    font-weight: 600;
}

/* Custom Logo Styles */
.custom-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.custom-logo-link:hover {
    opacity: 0.8;
}

.custom-logo {
    max-height: 60px;
    width: auto;
    display: block;
}

/* Navigation */
.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 0.1rem;
    margin: 0;
    align-items: center;
    flex-wrap: nowrap;
}

.main-navigation a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    position: relative;
    white-space: nowrap;
}

.main-navigation a:hover {
    color: var(--primary-red);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Active menu item styling */
.main-navigation .current-menu-item > a,
.main-navigation .current-menu-parent > a,
.main-navigation .current_page_item > a,
.main-navigation .current_page_parent > a {
    color: var(--primary-red);
    font-weight: 600;
}

.main-navigation .current-menu-item > a::after,
.main-navigation .current-menu-parent > a::after,
.main-navigation .current_page_item > a::after,
.main-navigation .current_page_parent > a::after {
    width: 100%;
    background: var(--primary-red);
}

/* Sub-menu active states */
.main-navigation .sub-menu .current-menu-item > a,
.main-navigation .sub-menu .current_page_item > a {
    color: var(--primary-red);
    background: rgba(255, 108, 92, 0.1);
}

/* Additional active states for different page types */
.main-navigation .current-menu-ancestor > a {
    color: var(--primary-red);
    font-weight: 600;
}

.main-navigation .current-menu-ancestor > a::after {
    width: 100%;
    background: var(--primary-red);
}

/* Home page active state */
.main-navigation .menu-item-home.current-menu-item > a {
    color: var(--primary-red);
    font-weight: 600;
}

.main-navigation .menu-item-home.current-menu-item > a::after {
    width: 100%;
    background: var(--primary-red);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.contact-btn {
    padding: 16px 30px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 999px;
    border: 2px solid transparent;
    background-image: linear-gradient(90deg, var(--primary-red), #FFFFFF);
    background-origin: border-box;
    background-clip: text, border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--primary-red); /* Quan trọng */
    color: var(--primary-red);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}
.contact-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    padding: 1px;
    background: linear-gradient(90deg, var(--primary-red), #FFFFFF);
    -webkit-mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
    mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1;
  }
  
  .contact-btn:hover {
    background: linear-gradient(90deg, var(--primary-red), #FFFFFF);
    -webkit-text-fill-color: #0B0B0B;
    color: #0B0B0B;
  }
.contact-btn:hover {
    background: 
    linear-gradient(90deg, var(--primary-red), #FFFFFF) padding-box,
    linear-gradient(90deg, var(--primary-red), #FFFFFF) border-box;
  color: #0B0B0B;
}
  

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    position: relative;
}

.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-current {
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 0.5rem 0.75rem;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    border-radius: 4px;
}

.lang-current:hover {
    color: var(--primary-red);
    background: rgba(255, 255, 255, 0.05);
}

.lang-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    min-width: 60px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    border-radius: 6px;
    z-index: 1001;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
}

.lang-dropdown-content a {
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-align: center;
}

.lang-dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-red);
}

.lang-dropdown.active .lang-dropdown-content {
    display: block;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
}

/* Hero Section - Matching Figma Design */
.hero-section {
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 10px;
}

/* When admin bar is present */
.admin-bar .hero-section {
    padding-top: 100px;
}

.hero-content {
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-title-line1,
.hero-title-line2,
.hero-content p {
    display: block;
    background: linear-gradient(90deg, #FF6C5C 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-content h1 {
    font-weight: 900;
    font-size: 70px;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -2px;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    font-family: 'Inter', sans-serif;
}
.hero-title-line2 i {
    margin-right: 10px;
}

.hero-content p {
    font-size: 18px;
    max-width: 610px;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.9;
    word-spacing: 3px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 80px;
}

.hero-buttons .cta-button {
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.hero-buttons .cta-button .cta-button-text {
    text-decoration: underline;
}
.hero-buttons .cta-button i{
    min-width: 25px;
}
.hero-buttons .cta-button.primary {
    color: #AAABAE;
}
.hero-buttons .cta-button {
    font-family: Inter;
    font-style: Semi Bold;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0%;
    text-decoration-thickness: 0%;
}

/* Hero Title Animation */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title-line1 {
    animation: slideInFromRight 1s ease-out 0.6s both;
}

.hero-title-line2 {
    animation: slideInFromLeft 1s ease-out 0.3s both;
}

.hero-buttons .cta-button svg {
    transition: all 0.3s ease;
    width: 20px;
}

.hero-buttons .cta-button:hover svg {
    transform: translate(3px, -3px);
    opacity: 1;
}
.hero-buttons .cta-button:hover svg path {
    fill: #FF6C5C;
}

.hero-buttons .cta-button:hover span {
    color: #fb978c;
}

/* FontAwesome icon styling for buttons */
.cta-button .fas {
    font-size: 1em;
    transition: transform 0.3s ease;
}

.cta-button:hover .fas {
    transform: translateX(3px);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.cta-button.secondary:hover {
    background: var(--text-primary);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* Feature Cards Section - Three Cards */
.feature-cards-section {
    background: var(--dark-bg);
    position: relative;
    z-index: 1;
}
.feature-cards-section::before {
    content: "";
    position: absolute;
    width: 100%;
    top: -2.3px;
    background: var(--dark-bg);
    height: 2.3px;
}

/* Features Section - Three Cards (Legacy) */
.features-section {
    padding: 8rem 0;
    background: var(--dark-bg);
    position: relative;
    z-index: 1;
}



/* Feature Cards Grid */
.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    transition: all 0.3s ease;
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-blend-mode: normal;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-card-content {
    position: relative;
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--text-primary);
    z-index: 2;
}

.feature-card-header {
    margin-bottom: 2rem;
}

/* Icon styles removed - not used in current design */

.feature-card-category {
    font-size: 18;
    font-weight: 500;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 1rem;
    display: inline-block;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

/* Description styles removed - not used in current design */

.feature-card-list {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
}

.feature-card-list li {
    margin-bottom: 0.5rem;
    position: relative;
    font-family: 'Menlo', 'Monaco', 'Consolas', 'Liberation Mono', 'Courier New', monospace;
    /* Alternative: Use Google Fonts for consistency
    font-family: 'JetBrains Mono', 'Menlo', 'Monaco', 'Consolas', monospace;
    */
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.025em;
}

.feature-card-footer {
    margin-top: auto;
}

.feature-card-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    background: rgba(30, 30, 30, 0.6);
    color: white;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    margin-top: 10px;
}

.feature-card-button::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: linear-gradient(45deg, #ff6b5e, #ffffff);
    -webkit-mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
            mask-composite: exclude;
  }

.feature-card-button .button-text {
    background: linear-gradient(45deg, #ff6b5e, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card-button svg {
    width: 18px;
    height: 18px;
}

.feature-card-button svg path{
    stroke: url(#grad);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.feature-card-button:hover {
    color: white;
}

.feature-card-button:hover svg {
    transform: translate(3px, -3px);
    opacity: 1;
}

/* Legacy Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.features-section .feature-card {
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.features-section .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 32px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.feature-list li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

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

.feature-card .cta-button {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.feature-card .cta-button:hover {
    background: var(--primary-blue);
    color: white;
}

/* Stats Section */
.stats-section {
    padding: 8rem 0;
    background: var(--dark-surface);
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Philosophy Section */
.philosophy-section {
    background: var(--dark-bg);
    position: relative;
    z-index: 1;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.philosophy-item {
    text-align: center;
    padding: 2rem;
}

.philosophy-item h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.philosophy-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.site-footer {
    background: #ffff;
    padding: 4rem 0 2rem;
}
.footer-section .custom-logo {
    filter: invert(1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.footer-content .footer-section:nth-child(1) {
    grid-column-start: 1;
    grid-column-end: 3;

}
.footer-content .footer-section {
    position: relative;
    padding-bottom: 200px;
}

.footer-content .footer-section .footer-bottom-text {
    position: absolute;
    bottom: 0;
    left: 0;
}

.footer-content .footer-section .footer-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--base-background, #050505);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
    text-transform: uppercase;

}

.footer-section p {
    color: var(--text-secondary);
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #050505;
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--primary-blue);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-section .footer-bottom p {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #050505;
    text-align: right;
    width: 300px;
}

.footer-section .footer-bottom-text {
    max-width: 400px;
    text-align: left;
    font-family: 'Menlo', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #050505;
}

/* ========================================
   Who We Are Section
======================================== */

.who-we-are-section {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.who-we-are-section::before {
    content: "";
    position: absolute;
    width: 100%;
    top: -2.3px;
    background: var(--dark-bg);
    height: 2.3px;
}

.who-we-are-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 8rem;
    align-items: flex-start;
    grid-row-gap: 10px;
}

.who-we-are-grid .who-content {
    max-width: 850px;
}

/* Statistics Column */
.stats-column {
    display: flex;
    flex-direction: column;
}

.stat-block {
    background: #242936;
    padding: 2.8rem 0.3rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-block:hover {
    transform: translateY(-3px);
    border-color: rgba(79, 70, 229, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.stat-block:hover::before {
    opacity: 1;
}

.stat-number {
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 58px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
}

.stat-label {
    color: #76777A;
    position: relative;
    z-index: 1;
    line-height: 150%;
    font-family: 'JetBrains Mono', 'Menlo', 'Monaco', 'Consolas', 'Liberation Mono', 'Courier New', monospace;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
}

/* Content Column */
.content-column {
    padding-left: 0;
    padding-top: 1.5rem;
}

.who-content .section-tag, .product-posters-section .section-tag {
    display: inline-block;
    margin-bottom: 1.2rem;
    background: linear-gradient(45deg, #ff6b5e, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.who-content .main-title {
    font-size: 2.5rem;
    font-weight: 400;
    background: linear-gradient(45deg, #ffff, #999999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.4;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
    max-width: 95%;
}

.who-content .description {
    color: #76777A;
    line-height: 1.6;
    margin-bottom: 0;
    font-family: 'JetBrains Mono', 'Menlo', 'Monaco', 'Consolas', 'Liberation Mono', 'Courier New', monospace;
    font-weight: normal;
    font-style: normal;
    font-size: 16px;

}

.philosophy-title {
    display: inline-block;
    margin-bottom: 1.2rem;
    background: linear-gradient(45deg, #ff6b5e, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.philosophy-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.philosophy-card {
    padding: 2rem 1.5rem;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    min-height: 200px;
    border: 1px solid transparent;
    border-image: linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(255,255,255,0.6));
    border-image-slice: 1;
}

.philosophy-card:hover {
    border-color: rgba(0, 0, 0, 27%);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 27%);
    background: var(--primary-red);
}

.philosophy-card:hover .card-description{
    background: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    color: #fff;
}
.philosophy-card:hover .card-icon path {
    fill: #fff;
}
.philosophy-card:hover .card-icon svg {
    scale: 1.2;
}
.philosophy-card .card-icon svg {
	transition: 1s all;
}
.philosophy-card:hover::before {
    opacity: 1;
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    background: none;
    border: none;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    overflow: visible;
    flex-shrink: 0;
}

.philosophy-card:hover .card-icon {
    background: none;
    border: none;
    transform: none;
}

.card-title {
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    font-family: Inter;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;

}

.card-description {
    position: relative;
    z-index: 1;
    margin: 0;
    font-family: 'JetBrains Mono', 'Menlo', 'Monaco', 'Consolas', 'Liberation Mono', 'Courier New', monospace;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    background: linear-gradient(90deg, #FFFFFF 0%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========================================
   Our Skills Section
======================================== */

.our-skills-section {
    padding: 4rem 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.our-skills-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.skills-content {
    position: relative;
    z-index: 2;
}

.skills-tag {
    display: inline-block;
    margin-bottom: 1.2rem;
    background: linear-gradient(45deg, #ff6b5e, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.skills-title {
    background: linear-gradient(45deg, #ffff, #999999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 4rem;
    max-width: 910px;
    font-family: 'Inter', sans-serif;
}

/* Empty State */
.skills-empty-state {
    padding: 4rem 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin: 2rem 0;
}

.empty-state-content {
    max-width: 400px;
    margin: 0 auto;
}

.empty-state-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.empty-state-content h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.empty-state-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.empty-state-button {
    display: inline-block;
    background: linear-gradient(135deg, #4f46e5, #ec4899);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.empty-state-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
    color: white;
    text-decoration: none;
}

/* ========================================
   Responsive Design - Our Skills
======================================== */

@media (max-width: 768px) {
    .our-skills-section {
        padding: 6rem 0;
    }
    
    .skills-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .our-skills-section {
        padding: 4rem 0;
    }
    
    .skills-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .lang-current {
        padding-left: 0;
        padding-right: 0;
    }
    .site-navigation .header-actions {
        justify-content: space-between;
        min-width: 190px;
    }
}

/* ========================================
   Responsive Design - Who We Are
======================================== */

@media (max-width: 1200px) {
    .who-we-are-grid {
        grid-template-columns: 350px 1fr;
        gap: 6rem;
    }
}

@media (max-width: 1024px) {
    .who-we-are-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .stats-grid {
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .philosophy-title {
        text-align: center;
    }
    
    .philosophy-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .philosophy-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .card-icon {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .who-content .main-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .who-we-are-section {
        padding: 4rem 0;
    }

    .who-we-are-section .who-we-are-tatistics {
        order: 2;
    }
    .who-we-are-section .who-we-are-content {
        order: 1;
    }
    .who-we-are-section .who-we-are-philosophy {
        order: 3;
    }
    .who-we-are-empty-content {
        display: none;
    }
    .who-we-are-section .content-column {
        padding: 0;
    }

    .our-skills-section {
        padding-top: 10px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: unset;
        max-width: 100%;
    }
    
    .stat-block {
        padding: 1.5rem 1rem;
        min-height: 100px;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .who-content .main-title {
        font-size: 1.875rem;
    }
    
    .philosophy-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
        
    .card-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .card-description {
        font-size: 0.85rem;
    }

    .swiper.marquee-swiper {
        margin-top: 2.5rem !important;
    }
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1024px) {
    .main-navigation ul {
        gap: 2.5rem;
    }
    
    .main-navigation a {
        font-size: 0.75rem;
        padding: 0.6rem 1.2rem;
    }

    .feature-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .feature-card {
        min-height: 380px;
    }
}

@media (max-width: 768px) {

    .header-actions .contact-us {
        padding: 14px 16px !important;
        font-size: 14px !important;
    }
    .header-actions {
        gap: 0.5rem;
    }
    .hero-content h1 {
        line-height: 1.2;
        font-size: 50px;
        line-height: 1.3;
    }

    .admin-bar .hero-section {
        min-height: 100vh;
    }

    .mobile-menu-toggle {
        display: block;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 1rem;
        grid-column-gap: 0;
    }
    
    .site-logo {
        font-size: 1.5rem;
    }
    
    .custom-logo {
        max-height: 50px;
    }
    
    .contact-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .hero-title-line1,
    .hero-title-line2 {
        white-space: normal;
        word-wrap: break-word;
    }

    .hero-content p {
        letter-spacing: 0.3px;
    }

    .feature-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        min-height: 350px;
    }

    .feature-card-content {
        padding: 1.5rem;
    }

    .feature-card-title {
        font-size: 1.3rem;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        grid-row-gap: 15px;
    }
    .footer-content .footer-section {
        grid-column-start: unset !important;
        grid-column-end: unset !important;
    }
    .footer-content .footer-section {
        padding-bottom: 0;
    }
    .footer-content .footer-section .footer-bottom-text, .footer-content .footer-section .footer-bottom {
        position: unset;
    }
    #colophon .custom-logo-link {
        margin-bottom: 20px;
    }
    .footer-section .footer-bottom p {
        margin-top: 30px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .custom-logo {
        max-height: 37px;
    }
    
    .footer-content {
        grid-template-columns: repeat(1, 1fr);
    }

    .header-actions .contact-us {
        font-size: 12px !important;
    }

    .admin-bar .hero-section {
        min-height: 110vh;
    }

    .hero-content {
        margin-top: 120px;
    }
    .hero-section {
        min-height: 120vh;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* WordPress Specific Styles */
.aligncenter {
    display: block;
    margin: 0 auto;
}

.alignleft {
    float: left;
    margin-right: 1rem;
}

.alignright {
    float: right;
    margin-left: 1rem;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.5rem;
}

/* Screen Reader Text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Product Posters Section */
.product-posters-section {
    padding: 50px 0;
    background: var(--dark-bg);
    color: white;
}

.product-posters-section .section-header {
    margin-bottom: 60px;
}

.product-posters-section .section-title {
    background: linear-gradient(45deg, #ffff, #999999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 4rem;
    max-width: 910px;
    font-family: 'Inter', sans-serif;
}

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

.product-poster {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-poster:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.product-poster:nth-child(2) .poster-title,
.product-poster:nth-child(2) .poster-description {
    color: #fff !important;
}
.product-poster:nth-child(2) .poster-content {
    max-width: 410px;
}

.poster-title {
    color: #1a1a1a;
}

.poster-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    color: #333;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #d0d0d0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 0 auto;
}

.poster-button:hover {
    background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: #333;
    text-decoration: none;
}

/* Removed poster-button svg styles as they are no longer used */
.product-poster:nth-child(2) .poster-button {
    background: linear-gradient(135deg, #d63031 0%, #c44569 100%);
    color: white;
    border-color: #b71540;
}

.product-poster:nth-child(2) .poster-button:hover {
    background: linear-gradient(135deg, #c44569 0%, #b71540 100%);
    color: white;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
}

.empty-state-content {
    max-width: 500px;
    margin: 0 auto;
}

.empty-state-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.empty-state-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.empty-state-content p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.empty-state-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #0073aa 0%, #005a87 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.empty-state-button:hover {
    background: linear-gradient(135deg, #005a87 0%, #004466 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

/* Responsive design */
@media (max-width: 768px) {
    .product-posters-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .posters-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .product-poster {
        min-height: 350px;
    }
    
    .poster-title {
        font-size: 28px;
        margin-bottom: 15px;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
        /* Ensure text is readable on mobile */
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .poster-description {
        font-size: 15px;
        margin-bottom: 25px;
        text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
        /* Ensure text is readable on mobile */
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Removed poster-graphics styles as they are no longer used */
}

@media (max-width: 480px) {
    .product-posters-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .posters-grid {
        gap: 20px;
        margin-top: 30px;
    }
    
    .product-poster {
        min-height: 300px;
    }
    
    .poster-title {
        font-size: 24px;
        margin-bottom: 12px;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        /* Ensure text is readable on small mobile */
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .poster-description {
        font-size: 14px;
        margin-bottom: 20px;
        text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
        /* Ensure text is readable on small mobile */
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .poster-button {
        padding: 12px 24px;
        font-size: 13px;
    }
    
    /* Removed poster-graphics styles as they are no longer used */
}

.product-poster .poster-content {
    padding: 40px !important;
    margin-top: 30px;
    max-width: 580px;
}

.product-poster .poster-description {
    font-family: 'Menlo', 'Monaco', 'Consolas', monospace;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 0%;
    color: #000000;
}

.product-poster .poster-title {
    /* Ensure title has proper spacing */
    margin-bottom: 20px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
}

/* Print styles to ensure content is visible when printing */
@media print {
    .product-poster .poster-content {
        position: relative !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .product-poster .poster-title,
    .product-poster .poster-description {
        /* Ensure text is visible when printing */
        color: black !important;
        text-shadow: none !important;
    }
}

/* Debug info styling */
.product-posters-section .debug-info {
    background: #f8f9fa !important;
    border: 2px solid #dee2e6 !important;
    border-radius: 8px !important;
    padding: 15px !important;
    margin: 20px 0 !important;
    font-family: 'Courier New', monospace !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
    color: #495057 !important;
    overflow-x: auto !important;
    white-space: pre-wrap !important;
    word-wrap: break-word !important;
}

.product-posters-section .debug-info strong {
    color: #212529 !important;
    font-weight: bold !important;
}

.product-posters-section .debug-info pre {
    background: #e9ecef !important;
    padding: 10px !important;
    border-radius: 4px !important;
    margin: 10px 0 !important;
    overflow-x: auto !important;
    white-space: pre-wrap !important;
    word-wrap: break-word !important;
    max-width: 100% !important;
}

/* Final fixes to ensure poster content is always visible */
.product-poster {
    min-height: 550px;
    position: relative;
    overflow: visible;
    background-size: cover;
    object-fit: cover;
    background-repeat: no-repeat;
}

/* Client Testimonials Section Styles */
.client-testimonials-section {
    padding: 5rem 0;
    background: var(--dark-bg);
    position: relative;
}

.client-testimonials-section .container {
    position: relative;
    z-index: 2;
}

.client-testimonials-section .testimonials-grid {
    position: relative;
}

.client-testimonials-section .section-tag {
    display: inline-block;
    margin-bottom: 1.2rem;
    background: linear-gradient(45deg, #ff6b5e, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.client-testimonials-section .section-title {
    background: linear-gradient(45deg, #ffff, #999999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 2rem;
    max-width: 910px;
    font-family: 'Inter', sans-serif;
}

/* Client Logos Row */
.client-logos-row {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.client-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.client-logo .logo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Testimonials Grid */
.testimonials-grid {
    display: flex;
    gap: 2rem;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar but keep scroll functionality */
.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonials-grid {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Scroll indicators - currently disabled to avoid content obstruction */
.testimonials-grid::before,
.testimonials-grid::after {
    display: none;
}

.testimonial-card {
    background: #242936;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    width: 600px;
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 108, 92, 0.3);
}

.testimonial-content {
    position: relative;
}

.quote-mark {
    position: absolute;
    top: 0;
    left: 0;
}

.testimonial-text {
    font-size: 16px;
    padding-left: 30px;
    font-family: 'Menlo', 'Monaco', 'Consolas', 'Liberation Mono', 'Courier New', monospace;
}

.client-name {
    font-size: 16px;
    font-weight: 600;
    color: #76777A;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive Design for Client Testimonials */
@media (max-width: 768px) {
    .client-testimonials-section {
        padding: 4rem 0;
    }
    
    .client-testimonials-section .section-title {
        font-size: 2rem;
    }
    
    .client-logos-row {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .testimonials-grid {
        gap: 1.5rem;
        padding: 0.5rem 0;
        flex-direction: column;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        width: 100%;
    }
    .staff-section {
        padding: 2rem 0 !important;
    }

    .staff-section .staff-grid {
        grid-template-columns: 1fr !important;
        grid-gap: 1.5rem !important;
    }

    .staff-section .staff-team img  {
        height: 410px !important;
        object-position: 35% !important;
    }

    .staff-section .staff-logo {
        display: none;
    }
    .staff-section .staff-title {
        font-size: 29px !important;
    }

    .staff-header {
        grid-template-columns: 1fr !important;
    }

    .product-poster .poster-content {
        padding: 25px !important;
    }
}

@media (max-width: 480px) {
    .client-testimonials-section {
        padding: 3rem 0;
    }
    
    .client-testimonials-section .section-title {
        font-size: 1.75rem;
    }
    
    .client-logos-row {
        gap: 0;
        justify-content: space-between;
    }
    .client-logo {
        width: 75px;
        height: 75px;
    }
    
    .testimonials-grid {
        gap: 1.5rem;
        padding: 0.25rem 0;
        flex-direction: column;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

/* Staff Section Styles */
.staff-section {
    background: var(--dark-bg);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.staff-section .container {
    position: relative;
    z-index: 2;
}

.staff-header {
    display: grid;
    margin-bottom: 1.3rem;
    position: relative;
    grid-template-columns: 350px 1fr;
}

.staff-logo {
    display: inline-block;
    margin-bottom: 1rem;
    position: relative;
}

.staff-logo svg {
    filter: drop-shadow(0 4px 8px rgba(255, 108, 92, 0.3));
}
.staff-content .section-tag {
    display: inline-block;
    margin-bottom: 1.2rem;
    background: linear-gradient(45deg, #ff6b5e, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.staff-content {
    max-width: 915px;
}

.staff-title {
    background: linear-gradient(45deg, #ffff, #999999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 2rem;
    max-width: 910px;
    font-family: 'Inter', sans-serif;
}

.staff-description {
    color: #76777A;
    line-height: 1.6;
    margin-bottom: 0;
    font-family: 'JetBrains Mono', 'Menlo', 'Monaco', 'Consolas', 'Liberation Mono', 'Courier New', monospace;
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
}

.staff-grid {
    display: grid;
    grid-template-columns: 290px 1fr;
    grid-template-rows: 410px;
    gap: 1rem;
    align-items: start;
}

.staff-founder {
    text-align: center;
    position: relative;
}

.founder-image {
    margin-bottom: 1.5rem;
    position: relative;
}
.staff-grid .staff-founder {
    height: 100%;
    width: 100%;
}
.staff-founder img, .staff-team img , .staff-founder .founder-image, .staff-team .team-image, .staff-team , .staff-founder {
    /* height: 410px; */
    height: 100%;
    width: 100%;
}
.staff-founder img, .staff-team img  {
    object-position: center top;
    object-fit: cover;
    filter: grayscale(100%); /* trắng đen hoàn toàn */
}

.founder-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 20px;
}
.founder-info .founder-name, .founder-info .founder-title {
    margin-bottom: 0;
}

.founder-name {
    font-size: 20px;
    font-weight: 600;
    color: #F0F0F4;
    font-family: 'Inter';
}

.founder-title {
    font-size: 16px;
    color: #F0F0F4;
    font-weight: 400;
    /* text-transform: uppercase; */
    letter-spacing: 0.05em;
}

.staff-team {
    text-align: center;
}

.team-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.team-description {
    font-size: 1rem;
    color: #CCCCCC;
    line-height: 1.5;
}

/* ========================================
   BLOG DETAIL PAGE STYLES
   ======================================== */

/* Blog Detail Wrapper */
.blog-detail-wrapper {
    margin: 0 auto;
    padding: 2rem 0;
    margin-top: 120px;
    margin-right: 30%;
}
.blog-section-related .blog-section-title {
    font-family: 'Inter' sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 40px;
    line-height: 140%;
    letter-spacing: 0%;
    text-transform: none;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--blog-meta);
}

.breadcrumb-nav a {
    color: var(--blog-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: var(--primary-red);
}

.breadcrumb-nav .separator {
    margin: 0 0.5rem;
    color: var(--blog-meta);
}

.breadcrumb-nav .current {
    color: var(--blog-text);
    font-weight: 500;
}

/* Blog Detail Article */
.blog-detail-article {
    overflow: hidden;
    margin-bottom: 3rem;
}

/* Article Header */
.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 1.5rem;
}

.meta-date {
    display: flex;
    gap: 0.5rem;
    color: var(--blog-meta);
    font-size: 0.95rem;
}

.meta-date i {
    color: var(--blog-meta);
    font-size: 1.1rem;
}

/* Article Content */
.article-content {
    padding: 2rem 0;
    line-height: 1.8;
    color: var(--blog-text);
    font-size: 1.1rem;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    color: var(--blog-text);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.article-content h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 0.5rem;
}

.article-content h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.article-content p {
    color: var(--blog-text);
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem auto;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.article-content ul,
.article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    color: var(--blog-text);
}

/* Article Footer */
.article-footer {
    padding: 1.5rem 0;
}

.social-sharing {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.share-label {
    font-weight: 600;
    color: var(--blog-text);
    font-size: 1rem;
}

.social-icons {
    display: flex;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Post Navigation */
.post-navigation {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    overflow: hidden;
}

.nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.nav-previous,
.nav-next {
    padding: 1.5rem;
    transition: background-color 0.3s ease;
}

.nav-previous {
    border-right: 1px solid var(--blog-border);
}

.nav-next {
    text-align: right;
}

.nav-previous:hover,
.nav-next:hover {
    background-color: #f8f9fa;
}

.nav-previous a,
.nav-next a {
    text-decoration: none;
    color: var(--blog-text);
    display: block;
}

.nav-subtitle {
    display: block;
    font-size: 0.8rem;
    color: var(--blog-meta);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.nav-title {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 1rem;
    line-height: 1.4;
}

.nav-title:hover {
    color: var(--primary-red);
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-detail-wrapper {
        padding: 1rem 0;
        margin-top: 100px; /* Reduced margin for mobile */
    }
    
    .article-header {
        padding: 2rem 1.5rem 1rem;
    }
    
    .article-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .article-content {
        padding: 1.5rem 1.5rem;
        font-size: 1rem;
    }
    
    .article-footer {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .social-sharing {
        gap: 0.5rem;
    }
    
    .nav-links {
        grid-template-columns: 1fr;
    }
    
    .nav-previous {
        border-right: none;
        border-bottom: 1px solid var(--blog-border);
    }
    
    .nav-next {
        text-align: left;
    }

    .feature-card-category, .feature-card-list li{
        font-size: 14px;
    }

    .feature-card h3 {
        font-size: 24px;
    }
    .feature-card-button {
        font-size: 11px;
    }
    .hero-content h1 {
        gap: 0.7rem;
    }

    .footer-before-content h1 {
        font-size: 32px !important;
    }
    .blog-detail-wrapper {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .blog-detail-wrapper {
        margin-top: 80px; /* Further reduced margin for small mobile */
    }
    
    .article-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
    
    .article-content {
        padding: 1rem 1rem;
    }
    
    .article-footer {
        padding: 1rem 1rem 1.5rem;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}



.feature-card img {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    object-fit: contain;
    mix-blend-mode: luminosity;
}

.feature-card-background-image {
    width: 100%;
}
#card-3 img{
    mix-blend-mode: screen;
}

.footer-before-content {
    background: linear-gradient(90deg, #FF6C5C 45.67%, #FFFFFF 100%);
    padding: 35px 0;
    position: relative;
    overflow: hidden;
}

.footer-before-content h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-style: Extra Bold;
    font-size: 50px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #fff;
}

.footer-before-content .footer-before-content-button a {
    text-transform: uppercase;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-before-content .footer-before-content-button a path{
    fill: #ffff;
}

.footer-before-content .footer-before-content-button a:hover svg{
    transform: translate(2px, -2px);
}

/* Contact Us Modal Styles */
.contact-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.contact-modal-content {
    background-color: #1a1a1a;
    margin: 3% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 700px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.contact-modal-header {
    padding: 30px 30px 20px 30px;
    position: relative;
}

.contact-label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
    background: linear-gradient(45deg, #ff6b5e, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0%; 
    text-transform: uppercase;
}

.contact-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    background: linear-gradient(45deg, #ffff, #999999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Inter', sans-serif;
}

.contact-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.contact-modal-close:hover {
    color: #ff6b35;
}

/* Responsive Design */
@media (max-height: 760px) {
    #contact-form {
        max-height: 400px !important;
    }

    .contact-modal-content {
        margin: 3% auto !important;
    }

    .contact-title {
        font-size: 22px !important;
    }

    .form-group input, .form-group textarea {
        padding: 10px !important;
    }

    .contact-submit-btn {
        padding: 13px !important;
        max-width: 250px !important;
    }

    .wrap-button-contact {
        padding: 15px 0 !important;
    }

    #contact-form .form-group label {
        font-size: 13px;
    }

    #contact-form .form-group textarea {
        min-height: 50px;
    }

    #contact-form.contact-form {
        padding: 0 30px 0px 30px;
    }

    #wrap-button-contact {
        padding: 10px 0;
    }
}
.contact-form {
    padding: 0 30px 0 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #76777A;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: #2a2a2a;
    border: 1px solid #3a3a3a;
    color: #ffffff;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}
#contact-form .form-group input, #contact-form .form-group textarea {
    padding: 10px;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FEBEB34D;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
}

.form-group textarea {
    resize: vertical;
    min-height: 60px;
}

.contact-submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(90deg, #FF6C5C 47.6%, #FFFFFF 100%);
    border: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    max-width: 350px;
    display: block;
    margin: 0 auto;
    border-radius: 40px;
}

.contact-submit-btn:hover {
    background: linear-gradient(90deg, #ff5722, #ff7043);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

/* Modal Animation */
.contact-modal.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.contact-modal-content.show {
    animation: slideIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success Message */
.contact-success {
    background-color: #4caf50;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
}

/* Error Message */
.contact-error {
    background-color: #f44336;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
}

/* Loading State */
.contact-submit-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-submit-btn.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-modal-content {
        margin: 10% auto;
        width: 95%;
        max-width: none;
    }
    
    .contact-modal-header,
    .contact-form {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .contact-title {
        font-size: 20px;
    }
}

/* Focus Effects */
.form-group {
    transition: transform 0.3s ease;
}

.form-group:focus-within {
    transform: translateY(-2px);
}

/* Button States */
.contact-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Modal Backdrop */
.contact-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: -1;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Accessibility */
.contact-modal:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

.footer-before-content .footer-before-content-button a:hover {
    transform: translateY(-2px);
}

.footer-before-content .footer-before-content-button a svg {
    transition: transform 0.3s ease;
}

.footer-before-content .footer-before-content-button a:hover svg {
    transform: translate(2px, -2px);
}

.footer-before-content .footer-before-content-button:hover .contact-us svg{
    transform: translate(2px, -2px);
}

/* Header contact button styles */
.header-actions .contact-us {
    padding: 16px 30px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 999px;
    border: 2px solid transparent;
    background-image: linear-gradient(90deg, var(--primary-red), #FFFFFF);
    background-origin: border-box;
    background-clip: text, border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--primary-red);
    color: var(--primary-red);
    position: relative;
    z-index: 1;
}

.header-actions .contact-us::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    padding: 1px;
    background: linear-gradient(90deg, var(--primary-red), #FFFFFF);
    -webkit-mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
    mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1;
}
/* Generic contact button styles for other locations */
.contact-us.generic {
    padding: 12px 24px;
    background: linear-gradient(90deg, #ff6b35, #ff8a65);
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.contact-us.generic:hover {
    background: linear-gradient(90deg, #ff5722, #ff7043);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Icon-only contact button */
.contact-us.icon-only {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #ff8a65);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.contact-us.icon-only:hover {
    background: linear-gradient(135deg, #ff5722, #ff7043);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    transform: scale(1.1);
}

/* Floating contact button */
.contact-us.floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #ff8a65);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

.contact-us.floating:hover {
    background: linear-gradient(135deg, #ff5722, #ff7043);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
    animation-play-state: paused;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Contact Us Modal Styles */

/* Animation cho Feature Cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Animation cho từng card cụ thể */
#card-1 {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

#card-2 {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

#card-3 {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

/* Hover effect enhancement cho các card đã được animate */
#card-1:hover,
#card-2:hover,
#card-3:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

/* Smooth transition cho tất cả các thuộc tính */
#card-1,
#card-2,
#card-3 {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Responsive animation cho mobile */
@media (max-width: 768px) {
    #card-1,
    #card-2,
    #card-3 {
        animation-delay: 0.1s;
        animation-duration: 0.6s;
    }
    
    #card-2 {
        animation-delay: 0.2s;
    }
    
    #card-3 {
        animation-delay: 0.3s;
    }
}

#main .no-posts {
    min-height: 40vh;
    padding: 150px 0 60px;
    color: #000;
}

.posts-grid .post-content {
    min-height: 40vh;
    padding: 150px 0 60px;
    color: #000000;
}
.default-page-content {
    min-height: 40vh;
    padding: 150px 0 60px;
    color: #0a0a0a;
}
.default-page-content p {
    color: #0a0a0a;
}
.default-page-content ul li {
    list-style: none;
    padding-left: 15px;
}

.contact-us.icon-only:hover {
    background: linear-gradient(135deg, #ff5722, #ff7043);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    transform: scale(1.1);
}

/* Floating contact button */
.contact-us.floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #ff8a65);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

.contact-us.floating:hover {
    background: linear-gradient(135deg, #ff5722, #ff7043);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
    animation-play-state: paused;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Contact Us Modal Styles */

/* Animation cho Feature Cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Animation cho từng card cụ thể */
#card-1 {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

#card-2 {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

#card-3 {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

/* Hover effect enhancement cho các card đã được animate */
#card-1:hover,
#card-2:hover,
#card-3:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

/* Smooth transition cho tất cả các thuộc tính */
#card-1,
#card-2,
#card-3 {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Responsive animation cho mobile */
@media (max-width: 768px) {
    #card-1,
    #card-2,
    #card-3 {
        animation-delay: 0.1s;
        animation-duration: 0.6s;
    }
    
    #card-2 {
        animation-delay: 0.2s;
    }
    
    #card-3 {
        animation-delay: 0.3s;
    }
}

#main .no-posts {
    min-height: 40vh;
    padding: 150px 0 60px;
    color: #000;
}

.posts-grid .post-content {
    min-height: 40vh;
    padding: 150px 0 60px;
    color: #000000;
}


#main .no-posts {
    min-height: 40vh;
    padding: 150px 0 60px;
    color: #000;
}

.posts-grid .post-content {
    min-height: 40vh;
    padding: 150px 0 60px;
    color: #000000;
}
.default-page-content {
    min-height: 40vh;
    padding: 150px 0 60px;
    color: #0a0a0a;
}
.default-page-content p {
    color: #0a0a0a;
}
.default-page-content ul li {
    list-style: none;
    padding-left: 15px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Contact Us Modal Styles */

/* Animation cho Feature Cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Animation cho từng card cụ thể */
#card-1 {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

#card-2 {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

#card-3 {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

/* Hover effect enhancement cho các card đã được animate */
#card-1:hover,
#card-2:hover,
#card-3:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

/* Smooth transition cho tất cả các thuộc tính */
#card-1,
#card-2,
#card-3 {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Responsive animation cho mobile */
@media (max-width: 768px) {
    #card-1,
    #card-2,
    #card-3 {
        animation-delay: 0.1s;
        animation-duration: 0.6s;
    }
    
    #card-2 {
        animation-delay: 0.2s;
    }
    
    #card-3 {
        animation-delay: 0.3s;
    }
}

#main .no-posts {
    min-height: 40vh;
    padding: 150px 0 60px;
    color: #000;
}

.posts-grid .post-content {
    min-height: 40vh;
    padding: 150px 0 60px;
    color: #000000;
}

ntact-us.generic:hover {
    background: linear-gradient(90deg, #ff5722, #ff7043);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Icon-only contact button */
.contact-us.icon-only {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #ff8a65);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.contact-us.icon-only:hover {
    background: linear-gradient(135deg, #ff5722, #ff7043);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    transform: scale(1.1);
}

/* Floating contact button */
.contact-us.floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #ff8a65);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

.contact-us.floating:hover {
    background: linear-gradient(135deg, #ff5722, #ff7043);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
    animation-play-state: paused;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Contact Us Modal Styles */

/* Animation cho Feature Cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Animation cho từng card cụ thể */
#card-1 {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

#card-2 {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

#card-3 {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

/* Hover effect enhancement cho các card đã được animate */
#card-1:hover,
#card-2:hover,
#card-3:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

/* Smooth transition cho tất cả các thuộc tính */
#card-1,
#card-2,
#card-3 {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Responsive animation cho mobile */
@media (max-width: 768px) {
    #card-1,
    #card-2,
    #card-3 {
        animation-delay: 0.1s;
        animation-duration: 0.6s;
    }
    
    #card-2 {
        animation-delay: 0.2s;
    }
    
    #card-3 {
        animation-delay: 0.3s;
    }
}

#main .no-posts {
    min-height: 40vh;
    padding: 150px 0 60px;
    color: #000;
}

.posts-grid .post-content {
    min-height: 40vh;
    padding: 150px 0 60px;
    color: #000000;
}


#main .no-posts {
    min-height: 40vh;
    padding: 150px 0 60px;
    color: #000;
}

.posts-grid .post-content {
    min-height: 40vh;
    padding: 150px 0 60px;
    color: #000000;
}
.default-page-content {
    min-height: 40vh;
    padding: 150px 0 60px;
    color: #0a0a0a;
}
.default-page-content p {
    color: #0a0a0a;
}
.default-page-content ul li {
    list-style: none;
    padding-left: 15px;
}