* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0f172a;
    --secondary-color: #f59e0b;
    --accent-color: #ea580c;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}
/* ========================================
   ATRN LOADING SCREEN
======================================== */

.atrn-page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: atrnFadeOut 0.5s ease-out 1.5s forwards;
}

.atrn-loader-content {
    text-align: center;
}

.atrn-loader-logo {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    animation: atrnPulse 0.5s ease-in-out infinite;
}

.atrn-loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(245, 158, 11, 0.2);
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    margin: 0 auto;
    animation: atrnSpin 1s linear infinite;
}

/* --- Keyframes --- */

@keyframes atrnFadeOut {
    0% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

@keyframes atrnPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes atrnSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.atrn-hero-showcase {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.atrn-hero-floating-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.atrn-blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.1;
    animation: blob-float 20s ease-in-out infinite;
}

.atrn-blob--primary {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -100px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    animation-delay: 0s;
}

.atrn-blob--secondary {
    width: 400px;
    height: 400px;
    bottom: -50px;
    left: -50px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    animation-delay: 5s;
}

.atrn-blob--tertiary {
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    animation-delay: 10s;
}

@keyframes blob-float {

    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(50px, -50px) rotate(90deg);
    }

    50% {
        border-radius: 30% 70% 50% 50% / 50% 60% 40% 60%;
        transform: translate(0, 50px) rotate(180deg);
    }

    75% {
        border-radius: 70% 30% 60% 40% / 40% 70% 50% 60%;
        transform: translate(-50px, 0) rotate(270deg);
    }
}

.atrn-hero-showcase .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.atrn-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.atrn-hero-copy {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.atrn-hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #0f172a;
}

.atrn-headline-accent {
    display: block;
    color: #f59e0b;
    font-size: 4rem;
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeInRight 0.8s ease-out 0.5s forwards;
}

.atrn-headline-main {
    display: block;
    opacity: 0;
    animation: fadeInRight 0.8s ease-out 0.7s forwards;
}

.atrn-hero-tagline {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

.atrn-hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.1s forwards;
}

.atrn-hero-actions .atrn-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.atrn-btn--hero {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    border-color: #f1860b;
}

.atrn-btn--hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.atrn-btn--hero:active {
    transform: translateY(-1px);
}

.atrn-btn--outline {
    background: #ffffff;
    color: #0f172a;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.1);
}

.atrn-btn--outline:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.2);
}

.atrn-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.atrn-btn:hover i {
    transform: translateX(5px);
}

.atrn-hero-metrics {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.3s forwards;
}

.atrn-metric-card {
    display: flex;
    align-items: center;
    gap: 16px;
}

.atrn-metric-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    border-radius: 50% 40% 60% 50% / 50% 60% 40% 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    animation: blob-morph 8s ease-in-out infinite;
}

@keyframes blob-morph {

    0%,
    100% {
        border-radius: 50% 40% 60% 50% / 50% 60% 40% 60%;
    }

    50% {
        border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
    }
}

.atrn-metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 4px;
}

.atrn-metric-value::after {
    content: '+';
    color: #f59e0b;
}

.atrn-metric-caption {
    font-size: 0.9rem;
    color: #64748b;
}

.atrn-hero-visual {
    position: relative;
    opacity: 0;
    animation: fadeInLeft 1s ease-out 0.5s forwards;
}

.atrn-visual-blob-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.atrn-visual-blob-wrapper svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(15, 23, 42, 0.2));
}

.atrn-visual-icons-cluster {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.atrn-visual-icons-cluster i {
    font-size: 4rem;
    color: #f59e0b;
    opacity: 0;
    animation: iconFloat 3s ease-in-out infinite;
}

.atrn-visual-icons-cluster i:nth-child(1) {
    animation-delay: 0s;
}

.atrn-visual-icons-cluster i:nth-child(2) {
    animation-delay: 0.5s;
}

.atrn-visual-icons-cluster i:nth-child(3) {
    animation-delay: 1s;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-20px);
        opacity: 1;
    }
}

.atrn-hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.atrn-deco-shape {
    position: absolute;
    opacity: 0.05;
}

.atrn-deco-shape--alpha {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 10%;
    background: #f59e0b;
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation: shape-float 15s ease-in-out infinite;
}

.atrn-deco-shape--beta {
    width: 150px;
    height: 150px;
    bottom: 30%;
    left: 15%;
    background: #0f172a;
    border-radius: 38% 62% 63% 37% / 70% 33% 67% 30%;
    animation: shape-float 12s ease-in-out infinite reverse;
}

.atrn-deco-shape--gamma {
    width: 180px;
    height: 180px;
    top: 60%;
    right: 20%;
    background: #ea580c;
    border-radius: 48% 52% 37% 63% / 48% 60% 40% 52%;
    animation: shape-float 18s ease-in-out infinite;
}

@keyframes shape-float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(30px, -30px) rotate(180deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* ai model */

/* ========================================
   🤖 AI ATRIANA SHOWCASE SECTION
======================================== */
.atrn-ai-showcase-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.atrn-ai-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="ai-dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23ai-dots)"/></svg>');
    opacity: 1;
}

.atrn-ai-showcase-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Content */
.atrn-ai-showcase-content {
    color: white;
}

.atrn-ai-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 140, 66, 0.15);
    border: 2px solid rgba(255, 140, 66, 0.3);
    color: #ff8c42;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.atrn-ai-pulse-effect {
    animation: atrn-pulse-badge 2s ease-in-out infinite;
}

@keyframes atrn-pulse-badge {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 140, 66, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 140, 66, 0);
    }
}

.atrn-ai-showcase-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.atrn-ai-brand-accent {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.atrn-ai-showcase-subtitle {
    font-size: 1.35rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.atrn-ai-showcase-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
}

.atrn-ai-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.4);
}

.atrn-ai-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.6);
}

.atrn-ai-mini-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
}

.atrn-ai-mini-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.atrn-ai-mini-highlight-item i {
    color: #10b981;
    font-size: 1.1rem;
}

/* AI Graphic */
.atrn-ai-showcase-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.atrn-ai-brain-hub {
    position: relative;
    width: 350px;
    height: 350px;
}

.atrn-ai-brain-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: white;
    box-shadow: 0 0 60px rgba(255, 140, 66, 0.6);
    animation: atrn-brain-float 3s ease-in-out infinite;
    z-index: 10;
}

@keyframes atrn-brain-float {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -55%) scale(1.05);
    }
}

.atrn-ai-orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 140, 66, 0.2);
    border-radius: 50%;
    animation: atrn-rotate-ring 20s linear infinite;
}

.atrn-ai-orbit--inner {
    width: 200px;
    height: 200px;
    animation-duration: 15s;
}

.atrn-ai-orbit--middle {
    width: 270px;
    height: 270px;
    animation-duration: 20s;
    animation-direction: reverse;
}

.atrn-ai-orbit--outer {
    width: 340px;
    height: 340px;
    animation-duration: 25s;
}

@keyframes atrn-rotate-ring {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.atrn-ai-floating-icon {
    position: absolute;
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 140, 66, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ff8c42;
    animation: atrn-float-icon 4s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.atrn-ai-floating-icon:hover {
    background: rgba(255, 140, 66, 0.2);
    transform: scale(1.2);
}

.atrn-ai-float--alpha {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.atrn-ai-float--beta {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.atrn-ai-float--gamma {
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.atrn-ai-float--delta {
    bottom: 15%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes atrn-float-icon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* ========================================
   🤖 AI MODAL - COMPACT HEADER, LARGE CONTENT
======================================== */
.atrn-ai-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.atrn-ai-modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.atrn-ai-modal-container {
    background: white;
    width: 90%;
    max-width: 950px;
    max-height: 90vh;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.atrn-ai-modal-overlay.active .atrn-ai-modal-container {
    transform: scale(1);
}

.atrn-ai-modal-dismiss {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    color: #64748b;
    transition: all 0.3s ease;
    z-index: 100;
}

.atrn-ai-modal-dismiss:hover {
    background: rgba(255, 59, 48, 0.1);
    color: #ff3b30;
    transform: rotate(90deg);
}

/* 🔥 COMPACT HEADER */
.atrn-ai-modal-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 1.5rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #ff8c42;
}

.atrn-ai-modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="modal-dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23modal-dots)"/></svg>');
}

.atrn-ai-modal-header-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.5);
    position: relative;
    z-index: 2;
}

.atrn-ai-modal-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    position: relative;
    z-index: 2;
}

.atrn-ai-modal-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    z-index: 2;
}

/* 🔥 LARGE BODY FOR CONTENT */
.atrn-ai-modal-body {
    padding: 2.5rem 2rem;
    max-height: calc(90vh - 160px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ff8c42 #f1f5f9;
}

.atrn-ai-modal-body::-webkit-scrollbar {
    width: 8px;
}

.atrn-ai-modal-body::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.atrn-ai-modal-body::-webkit-scrollbar-thumb {
    background: #ff8c42;
    border-radius: 10px;
}

/* Intro Block */
.atrn-ai-modal-intro-block {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.08) 0%, rgba(255, 107, 53, 0.08) 100%);
    border-left: 4px solid #ff8c42;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.atrn-ai-modal-intro-icon {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
}

.atrn-ai-modal-intro-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #334155;
}

/* Capabilities - Larger & Clearer */
.atrn-ai-modal-section-heading {
    font-size: 1.5rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.atrn-ai-modal-section-heading i {
    color: #ff8c42;
    font-size: 1.8rem;
}

.atrn-ai-capability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
    margin-bottom: 3rem;
}

.atrn-ai-capability-card {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.atrn-ai-capability-card:hover {
    border-color: #ff8c42;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.2);
}

.atrn-ai-capability-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(255, 140, 66, 0.3);
}

.atrn-ai-capability-card h5 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.8rem;
}

.atrn-ai-capability-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
}

.atrn-ai-example-questions {
    display: grid;
    gap: 1rem;
    margin-bottom: 3rem;
}

.atrn-ai-example-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.atrn-ai-example-question:hover {
    border-color: #ff8c42;
    background: rgba(255, 140, 66, 0.05);
}

.atrn-ai-example-question i {
    color: #ff8c42;
    font-size: 1.3rem;
}

.atrn-ai-example-question p {
    margin: 0;
    font-size: 1rem;
    color: #334155;
    font-weight: 600;
}

.atrn-ai-modal-launch {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.atrn-ai-launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.atrn-ai-launch-badge i {
    font-size: 1.5rem;
}

.atrn-ai-launch-text strong {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}

.atrn-ai-launch-year {
    font-size: 1.3rem;
    font-weight: 900;
}

.atrn-ai-launch-description {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.95;
}

.atrn-ai-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.atrn-ai-tech-tag {
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    color: #475569;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.atrn-ai-tech-tag:hover {
    background: #ff8c42;
    color: white;
    border-color: #ff8c42;
}

.atrn-ai-modal-footer {
    background: #f8fafc;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: center;
}

.atrn-ai-modal-confirm-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.atrn-ai-modal-confirm-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.4);
}

/* ========================================
   📱 RESPONSIVE
======================================== */
@media (max-width: 992px) {
    .atrn-ai-showcase-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .atrn-ai-showcase-visual {
        order: -1;
    }

    .atrn-ai-brain-hub {
        width: 280px;
        height: 280px;
    }

    .atrn-ai-brain-core {
        width: 100px;
        height: 100px;
        font-size: 2.8rem;
    }

    .atrn-ai-mini-highlights {
        justify-content: center;
        flex-wrap: wrap;
    }

    .atrn-ai-capability-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .atrn-ai-showcase-section {
        padding: 5rem 0;
    }

    .atrn-ai-modal-container {
        width: 95%;
        max-height: 95vh;
    }

    .atrn-ai-modal-body {
        padding: 2rem 1.5rem;
        max-height: calc(95vh - 150px);
    }

    .atrn-ai-modal-header {
        padding: 1.2rem 1.5rem;
    }

    .atrn-ai-modal-intro-block {
        padding: 1rem 1.2rem;
    }
}
/* ========================================
   ♟️ AHP STRATEGY SHOWCASE SECTION
======================================== */
.atrn-ahp-showcase-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.atrn-ahp-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.atrn-ahp-visual-block {
    margin-bottom: 25px;
}

.atrn-ahp-hero-icon {
    font-size: 4.5rem;
    color: #4b5563;
    background: rgba(75, 85, 99, 0.1);
    padding: 15px;
    border-radius: 50%;
}

.atrn-ahp-text-block h2 {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.atrn-ahp-text-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 30px;
}

/* "Coming Soon" Badge */
.atrn-ahp-coming-soon-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4);
    animation: atrn-ahp-pulse-badge 2s infinite;
    transform: translateY(-2px);
}

@keyframes atrn-ahp-pulse-badge {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(245, 158, 11, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

/* Modal Trigger Button */
.atrn-ahp-trigger-btn {
    background-color: #374151;
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.atrn-ahp-trigger-btn:hover {
    background-color: #1f2937;
    transform: translateY(-2px);
}

/* ========================================
   ♟️ AHP MODAL
======================================== */
.atrn-ahp-modal-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    animation: atrn-ahp-fade-in-modal 0.3s ease-out;
}

.atrn-ahp-modal-box {
    background-color: #fff;
    width: 90%;
    max-width: 650px;
    margin: 8vh auto;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    animation: atrn-ahp-slide-down-modal 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.atrn-ahp-modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #9ca3af;
    cursor: pointer;
    z-index: 10;
}

.atrn-ahp-modal-close-btn:hover {
    color: #ef4444;
}

.atrn-ahp-modal-header {
    background: #f9fafb;
    padding: 20px 30px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 15px;
}

.atrn-ahp-modal-header i {
    color: #f59e0b;
    font-size: 1.5rem;
}

.atrn-ahp-modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #1f2937;
}

.atrn-ahp-modal-scroll-body {
    padding: 30px;
    max-height: 70vh;
    overflow-y: auto;
}

.atrn-ahp-lead-text {
    font-size: 0.95rem;
    color: #374151;
    margin-bottom: 25px;
    text-align: justify;
    line-height: 1.7;
}

.atrn-ahp-step-item {
    background: #f8fafc;
    border-left: 3px solid #94a3b8;
    padding: 12px 15px;
    border-radius: 6px 0 0 6px;
    margin-bottom: 15px;
}

.atrn-ahp-step-item h4 {
    margin: 0 0 5px 0;
    color: #334155;
    font-size: 1rem;
}

.atrn-ahp-step-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
}

.atrn-ahp-conclusion-block {
    background-color: #fffbeb;
    padding: 15px;
    border-radius: 8px;
    border: 1px dashed #f59e0b;
    text-align: center;
    margin-top: 20px;
}

.atrn-ahp-conclusion-block strong {
    display: block;
    color: #d97706;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.atrn-ahp-conclusion-block p {
    margin: 0;
    font-size: 0.85rem;
    color: #92400e;
}

@keyframes atrn-ahp-fade-in-modal {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes atrn-ahp-slide-down-modal {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .atrn-ahp-text-block h2 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 5px;
    }

    .atrn-ahp-modal-box {
        width: 95%;
        margin: 5vh auto;
    }
}

/* ========================================
   ABOUT SECTION - STABLE & RESPONSIVE
======================================== */

.atrn-about-section {
    position: relative;
    padding: 80px 20px;
    background: #ffffff;
    overflow: hidden;
    direction: ltr;
}

.atrn-about-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.atrn-about-deco-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
}

.atrn-about-blob-4 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
    background: #0f172a;
}

.atrn-about-blob-5 {
    width: 500px;
    height: 500px;
    bottom: -100px;
    left: -100px;
    background: #f59e0b;
}

.atrn-about-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 2;
}

.atrn-about-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #fff7ed;
    color: #ea580c;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid #ffedd5;
}

.atrn-about-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}

.atrn-about-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
}

.atrn-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.atrn-about-image {
    position: relative;
    text-align: center;
}

.atrn-about-image-blob {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.atrn-about-image-blob svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(245, 158, 11, 0.2));
}

.atrn-about-image-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: #ffffff;
    font-weight: bold;
}

.atrn-about-floating-stat {
    position: absolute;
    background: #ffffff;
    padding: 10px 15px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 5;
}

.atrn-about-stat-1 {
    top: 0;
    left: 0;
}

.atrn-about-stat-2 {
    bottom: 20px;
    right: 0;
}

.atrn-about-floating-stat-icon {
    width: 40px;
    height: 40px;
    background: #fff7ed;
    color: #ea580c;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.atrn-about-floating-stat-text strong {
    display: block;
    font-size: 0.9rem;
    color: #0f172a;
}

.atrn-about-floating-stat-text span {
    font-size: 0.75rem;
    color: #64748b;
}

.atrn-about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.atrn-about-feature-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border: 1px solid #e2e8f0;
    opacity: 1;
    transform: none;
}

.atrn-about-feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.atrn-about-feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
}

.atrn-about-feature-description {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

.atrn-about-swipe-hint {
    display: none;
}

/* ========================================
   MOBILE & TABLET RESPONSIVE
======================================== */

@media (max-width: 991px) {
    .atrn-about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .atrn-about-section {
        padding: 40px 15px;
    }

    .atrn-about-title {
        font-size: 1.8rem;
    }

    .atrn-about-image-blob {
        max-width: 250px;
        margin-bottom: 40px;
    }

    .atrn-about-image-content {
        font-size: 3rem;
    }

    .atrn-about-features {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 20px;
        width: 100vw;
        margin-left: -30px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .atrn-about-feature-card {
        width: 85vw;
        min-width: 280px;
        flex: 0 0 auto;
        scroll-snap-align: center;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .atrn-about-feature-icon {
        margin-bottom: 10px;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .atrn-about-swipe-hint {
        display: block;
        text-align: center;
        font-size: 0.8rem;
        color: #94a3b8;
        margin-bottom: 10px;
    }
}

#chrama {
    color: black !important;
}
/* ================================== */
/* ========================================
   SERVICES SECTION - STACKING EFFECT
======================================== */

.atrn-svc-section {
    position: relative;
    padding: 80px 20px 120px;
    background: #0f172a;
    direction: ltr;
}

.atrn-svc-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.atrn-svc-bg-grid {
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    width: 100%;
    height: 100%;
}

.atrn-svc-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.atrn-svc-badge {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 15px;
}

.atrn-svc-title {
    color: #ffffffcf;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.atrn-svc-description {
    color: #94a3b8;
    line-height: 1.8;
}

.atrn-svc-stacking-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.atrn-svc-stack-card {
    position: sticky;
    top: 100px;
    margin-top: 40px;
    margin-bottom: 40px;
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    border-radius: 24px;
    overflow: hidden;
    transform-origin: center top;
    transition: transform 0.3s ease;
}

.atrn-svc-stack-card:nth-child(1) {
    top: 100px;
}

.atrn-svc-stack-card:nth-child(2) {
    top: 120px;
}

.atrn-svc-stack-card:nth-child(3) {
    top: 140px;
}

.atrn-svc-stack-card:nth-child(4) {
    top: 160px;
}

.atrn-svc-card-content {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    min-height: 250px;
}

.atrn-svc-card-left {
    flex: 1;
    padding-right: 20px;
}

.atrn-svc-card-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.2);
}

.atrn-svc-card-title {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.atrn-svc-card-desc {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.atrn-svc-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.atrn-svc-card-features li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 0.85rem;
    margin-right: 15px;
    margin-bottom: 5px;
}

.atrn-svc-card-features li i {
    color: #f59e0b;
}

.atrn-svc-card-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    min-width: 120px;
}

.atrn-svc-card-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.atrn-svc-btn-card-action {
    background: transparent;
    border: 1px solid rgba(245, 158, 11, 0.5);
    color: #f59e0b;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 0.9rem;
}

.atrn-svc-btn-card-action:hover {
    background: #f59e0b;
    color: #fff;
}

.atrn-svc-cta-wrapper {
    text-align: center;
    margin-top: 100px;
    position: relative;
    z-index: 10;
}

.atrn-svc-btn-final-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #0f172a;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    transition: transform 0.2s;
}

.atrn-svc-btn-final-cta:hover {
    transform: scale(1.05);
}

.atrn-svc-modal {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.atrn-svc-modal-content {
    background: #1e293b;
    border: 1px solid #334155;
    color: #fff;
}

.atrn-svc-modal-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.atrn-svc-modal-col h4 {
    color: #f59e0b;
    margin-bottom: 10px;
    border-bottom: 1px solid #334155;
    padding-bottom: 5px;
}

.atrn-svc-modal-list-custom,
.atrn-svc-modal-process-custom {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.8;
}

.atrn-svc-modal-list-custom li {
    list-style: none;
    margin-bottom: 5px;
}

.atrn-svc-process-step {
    margin-bottom: 10px;
}

/* ========================================
   RESPONSIVE (MOBILE FIXES)
======================================== */

@media (max-width: 768px) {
    .atrn-svc-title {
        font-size: 1.6rem;
    }

    .atrn-svc-stack-card {
        top: 80px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .atrn-svc-stack-card:nth-child(1) {
        top: 80px;
    }

    .atrn-svc-stack-card:nth-child(2) {
        top: 95px;
    }

    .atrn-svc-stack-card:nth-child(3) {
        top: 110px;
    }

    .atrn-svc-stack-card:nth-child(4) {
        top: 125px;
    }

    .atrn-svc-card-content {
        flex-direction: column;
        padding: 20px;
        min-height: auto;
    }

    .atrn-svc-card-left {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .atrn-svc-card-right {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 15px;
    }

    .atrn-svc-card-title {
        font-size: 1.25rem;
    }

    .atrn-svc-card-desc {
        font-size: 0.9rem;
    }

    .atrn-svc-card-number {
        font-size: 2.5rem;
    }

    .atrn-svc-modal-columns {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   PINNED SCROLL STORY (DESKTOP FIXED)
   ========================================= */

.atrn-svc-pinned-story {
    height: 350vh;
    position: relative;
    background-color: #0f172a;
}

.atrn-svc-sticky-viewport {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.atrn-svc-story-grid {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.atrn-svc-visual-col {
    width: 40%;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.atrn-svc-server-rack-container {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.atrn-svc-server-unit {
    background: #1e293b;
    border: 1px solid #334155;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s;
    opacity: 0.5;
}

.atrn-svc-server-unit.active {
    opacity: 1;
    border-color: #f59e0b;
    background: #0f172a;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
}

.atrn-svc-status-dot {
    width: 8px;
    height: 8px;
    background: #64748b;
    border-radius: 50%;
}

.atrn-svc-server-unit.active .atrn-svc-status-dot {
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
}

.atrn-svc-server-info .atrn-svc-val {
    color: #fff;
    font-size: 0.95rem;
}

.atrn-svc-content-col {
    width: 50%;
    min-width: 500px;
    height: auto;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.atrn-svc-story-text-card {
    position: absolute;
    width: 100%;
    background-color: #0f172a;
    padding: 20px;
    text-align: left;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    z-index: 1;
}

.atrn-svc-story-text-card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
    z-index: 10;
}

.atrn-svc-story-text-card h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 20px;
    white-space: nowrap;
}

.atrn-svc-story-text-card p {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.8;
}

.atrn-svc-step-idx {
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    position: absolute;
    top: -50px;
    right: 20px;
    z-index: -1;
}

/* =========================================
   MOBILE RESPONSIVE
   ========================================= */
@media (max-width: 992px) {
    .atrn-svc-story-grid {
        flex-direction: column !important;
        justify-content: center;
        gap: 30px;
        width: 100%;
        padding: 0 15px;
    }

    .atrn-svc-visual-col,
    .atrn-svc-content-col {
        width: 100%;
        min-width: 0;
    }

    .atrn-svc-content-col {
        height: 250px;
        align-items: flex-start;
        justify-content: center;
    }

    .atrn-svc-story-text-card {
        background-color: transparent;
        text-align: center;
        padding: 0;
        position: absolute;
    }

    .atrn-svc-story-text-card h3 {
        white-space: normal;
    }

    .atrn-svc-server-rack-container {
        flex-direction: row;
        padding: 10px;
    }

    .atrn-svc-server-unit {
        flex-direction: column;
        text-align: center;
    }

    .atrn-svc-indicator-cube {
        display: none;
    }
}
/* ========================================================================== */

/* =========================================
   PINNED SCROLL STORY (DESKTOP FIXED)
   ========================================= */

.atrn-story-section {
    height: 350vh;
    position: relative;
    background-color: #0f172a;
}

.atrn-story-sticky-viewport {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.atrn-story-grid {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.atrn-story-visual-col {
    width: 40%;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.atrn-story-server-rack {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.atrn-story-server-unit {
    background: #1e293b;
    border: 1px solid #334155;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s;
    opacity: 0.5;
}

.atrn-story-server-unit.active {
    opacity: 1;
    border-color: #f59e0b;
    background: #0f172a;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
}

.atrn-story-status-dot {
    width: 8px;
    height: 8px;
    background: #64748b;
    border-radius: 50%;
}

.atrn-story-server-unit.active .atrn-story-status-dot {
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
}

.atrn-story-server-info .atrn-story-val {
    color: #fff;
    font-size: 0.95rem;
}

.atrn-story-content-col {
    width: 50%;
    min-width: 500px;
    height: auto;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.atrn-story-text-card {
    position: absolute;
    width: 100%;
    background-color: #0f172a;
    padding: 20px;
    text-align: left;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    z-index: 1;
}

.atrn-story-text-card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
    z-index: 10;
}

.atrn-story-text-card h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 20px;
    white-space: nowrap;
}

.atrn-story-text-card p {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.8;
}

.atrn-story-step-idx {
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    position: absolute;
    top: -50px;
    right: 20px;
    z-index: -1;
}

/* =========================================
   MOBILE RESPONSIVE
   ========================================= */
@media (max-width: 992px) {
    .atrn-story-grid {
        flex-direction: column !important;
        justify-content: center;
        gap: 30px;
        width: 100%;
        padding: 0 15px;
    }

    .atrn-story-visual-col,
    .atrn-story-content-col {
        width: 100%;
        min-width: 0;
    }

    .atrn-story-content-col {
        height: 250px;
        align-items: flex-start;
        justify-content: center;
    }

    .atrn-story-text-card {
        background-color: transparent;
        text-align: center;
        padding: 0;
        position: absolute;
    }

    .atrn-story-text-card h3 {
        white-space: normal;
    }

    .atrn-story-server-rack {
        flex-direction: row;
        padding: 10px;
    }

    .atrn-story-server-unit {
        flex-direction: column;
        text-align: center;
    }

    .atrn-story-indicator-cube {
        display: none;
    }
}
/* ========================================================================= */

/* =========================================
   SECTION: DASHBOARD DATA INTELLIGENCE
   ========================================= */

.atrn-dash-section {
    background-color: #0b1120;
    position: relative;
    font-family: inherit;
    z-index: 10;
}

/* ----------------------------------------------------
   DESKTOP STYLES (Scrollytelling)
   ---------------------------------------------------- */
@media (min-width: 993px) {
    .atrn-dash-section {
        height: 500vh;
    }

    .atrn-dash-sticky-viewport {
        position: sticky;
        top: 0;
        height: 100vh;
        width: 100%;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .atrn-dash-grid {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 90%;
        max-width: 1400px;
        transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .atrn-dash-grid.layout-reverse {
        flex-direction: row-reverse;
    }

    .atrn-dash-visual-col {
        width: 50%;
        display: flex;
        justify-content: center;
        perspective: 1200px;
    }

    .atrn-dash-monitor-frame {
        width: 100%;
        max-width: 700px;
        background: #1e293b;
        border-radius: 16px;
        padding: 10px;
        box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.7);
        transform: rotateX(2deg) scale(0.95);
        transition: transform 0.5s;
        border: 1px solid #334155;
    }

    .atrn-dash-monitor-screen {
        width: 100%;
        aspect-ratio: 16/9;
        background: #020617;
        border-radius: 6px;
        overflow: hidden;
        position: relative;
    }

    .atrn-dash-screen-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: fill;
        opacity: 0;
        transition: opacity 0.6s ease, transform 0.8s ease;
        transform: scale(1.05);
    }

    .atrn-dash-screen-img.active {
        opacity: 1;
        transform: scale(1);
    }

    .atrn-dash-monitor-stand {
        width: 120px;
        height: 25px;
        background: #1e293b;
        margin: 0 auto;
        border-radius: 0 0 12px 12px;
        box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.3);
    }

    .atrn-dash-content-col {
        width: 40%;
        height: 500px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 20;
    }

    .atrn-dash-card {
        position: absolute;
        width: 100%;
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.6s ease;
        background: rgba(15, 23, 42, 0.85);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 40px;
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02), 0 20px 40px rgba(0, 0, 0, 0.4);
        text-align: left;
        direction: ltr;
        pointer-events: none;
    }

    .atrn-dash-card.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }

    .atrn-dash-mobile-only {
        display: none !important;
    }
}

/* ----------------------------------------------------
   MOBILE STYLES (HORIZONTAL SLIDER)
   ---------------------------------------------------- */
@media (max-width: 992px) {
    .atrn-dash-section {
        height: auto;
        padding: 60px 0;
        background: #0b1120;
        overflow: hidden;
    }

    .atrn-dash-sticky-viewport {
        height: auto;
        display: block;
        position: relative;
    }

    .atrn-dash-grid {
        width: 100%;
        margin: 0;
        display: block;
    }

    .atrn-dash-desktop-only {
        display: none !important;
    }

    /* Slider container */
    .atrn-dash-content-col {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding: 0 20px 40px 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .atrn-dash-content-col::-webkit-scrollbar {
        display: none;
    }

    /* Card style on mobile */
    .atrn-dash-card {
        flex: 0 0 85vw;
        width: 85vw;
        max-width: 400px;
        position: relative;
        opacity: 1 !important;
        transform: none !important;
        background: #1e293b;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        overflow: hidden;
        scroll-snap-align: center;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        display: flex;
        flex-direction: column;
    }

    /* Mobile image */
    .atrn-dash-mobile-view {
        width: 100%;
        height: 200px;
        background: #0f172a;
        position: relative;
    }

    .atrn-dash-mobile-view img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.9;
    }

    /* Step number badge */
    .atrn-dash-mobile-badge {
        position: absolute;
        top: 10px;
        left: 10px;
        width: 30px;
        height: 30px;
        background: rgba(56, 189, 248, 0.9);
        color: #fff;
        border-radius: 50%;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        z-index: 5;
    }

    /* Card body text on mobile */
    .atrn-dash-card-body {
        padding: 20px;
        text-align: left;
        direction: ltr;
        flex-grow: 1;
    }

    .atrn-dash-card h3 {
        color: #fff;
        font-size: 1.3rem;
        margin: 10px 0;
        font-weight: 700;
    }

    .atrn-dash-card p {
        color: #cbd5e1;
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
    }

    .atrn-dash-card-icon {
        font-size: 2rem;
        display: block;
        margin-bottom: 5px;
    }
}

/* General */
.atrn-dash-screen-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: 2;
}

.atrn-dash-card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

.atrn-dash-card h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.atrn-dash-card p {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.8;
}

.atrn-dash-swipe-hint {
    display: none;
}

@media (max-width: 992px) {
    .atrn-dash-swipe-hint {
        display: block;
        text-align: center;
        color: #64748b;
        font-size: 0.85rem;
        margin-bottom: 15px;
        padding: 0 20px;
    }
}
/* ========================================================================================= */

/* ================================
   CONTACT SECTION STYLES - Orange/Blue Theme (Complete Version)
================================ */
.atrn-contact-section {
    position: relative;
    background: linear-gradient(135deg, #fff8f0 0%, #f0f9ff 100%);
    padding: 80px 0;
    overflow: hidden;
}

.atrn-contact-section .atrn-contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.atrn-contact-badge {
    display: inline-block;
    background: rgba(242, 146, 0, 0.1);
    color: #f29200;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.atrn-contact-title {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 700;
}

.atrn-contact-description {
    color: #64748b;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.atrn-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.atrn-contact-info {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(242, 146, 0, 0.08);
    border: 1px solid #ffe4cc;
}

.atrn-contact-info h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #f26321;
    border-bottom: 2px solid #f29200;
    padding-bottom: 10px;
}

.atrn-contact-info .atrn-contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.atrn-contact-info .atrn-contact-info-item i {
    color: #004e98;
    font-size: 20px;
    margin-right: 10px;
    margin-top: 3px;
}

.atrn-contact-info a {
    color: #004e98;
    text-decoration: none;
    transition: color 0.3s;
}

.atrn-contact-info a:hover {
    color: #f26321;
}

/* --- Social & QR Section (.atrn-contact-extra) --- */
.atrn-contact-info .atrn-contact-extra {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e0e7ff;
}

.atrn-contact-info .atrn-contact-extra h4 {
    font-size: 16px;
    color: #004e98;
    margin-bottom: 15px;
    font-weight: 700;
}

.atrn-contact-extra .atrn-contact-social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.atrn-contact-extra .atrn-contact-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f4f8;
    color: #004e98;
    font-size: 18px;
    transition: background 0.3s, color 0.3s, transform 0.3s;
    text-decoration: none;
}

.atrn-contact-extra .atrn-contact-social-links a:hover {
    background: #f29200;
    color: #fff;
    transform: translateY(-2px);
}

.atrn-contact-extra .atrn-contact-qr-block {
    text-align: center;
    padding: 15px;
    border: 2px dashed #f29200;
    border-radius: 8px;
    background: #fffdf9;
}

.atrn-contact-extra .atrn-contact-qr-block img {
    max-width: 250px;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
    border: 3px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.atrn-contact-extra .atrn-contact-qr-block p {
    font-size: 13px;
    color: #334155;
    margin: 0;
}
/* --- End of Social & QR Section --- */


.atrn-contact-form-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 78, 152, 0.08);
    border: 1px solid #cce7ff;
}

.atrn-contact-form-wrapper h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #004e98;
    border-bottom: 2px solid #16bac2;
    padding-bottom: 10px;
}

.atrn-contact-form-wrapper .atrn-contact-form-group {
    margin-bottom: 20px;
}

.atrn-contact-form-wrapper label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #334155;
}

.atrn-contact-form-wrapper input,
.atrn-contact-form-wrapper select,
.atrn-contact-form-wrapper textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 15px;
    font-family: inherit;
    color: #0f172a;
    transition: all 0.25s;
}

.atrn-contact-form-wrapper input:focus,
.atrn-contact-form-wrapper select:focus,
.atrn-contact-form-wrapper textarea:focus {
    border-color: #f29200;
    outline: none;
    box-shadow: 0 0 0 3px rgba(242, 146, 0, 0.1);
}

.atrn-contact-btn-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #f29200 0%, #f26321 100%);
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.atrn-contact-btn-submit:hover {
    background: linear-gradient(135deg, #e08300 0%, #e0551b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 146, 0, 0.3);
}

.atrn-contact-btn-submit:active {
    transform: translateY(0);
}

/* Success & Error Messages */
.atrn-contact-alert {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: block;
    font-weight: 500;
    line-height: 1.6;
}

.atrn-contact-alert-success {
    background: #dcfce7;
    border: 1px solid #22c55e;
    color: #166534;
}

.atrn-contact-alert-error {
    background: #fee2e2;
    border: 1px solid #ef4444;
    color: #7f1d1d;
}

/* Toast Notification */
.atrn-contact-toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.atrn-contact-toast {
    background: #fff;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-left: 4px solid;
    animation: atrn-contact-slideIn 0.3s ease-out;
}

.atrn-contact-toast-success {
    border-left-color: #22c55e;
    background: #f0fdf4;
}

.atrn-contact-toast-error {
    border-left-color: #ef4444;
    background: #fef2f2;
}

@keyframes atrn-contact-slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .atrn-contact-grid {
        grid-template-columns: 1fr;
    }

    .atrn-contact-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .atrn-contact-info,
    .atrn-contact-form-wrapper {
        padding: 20px;
    }

    .atrn-contact-section {
        padding: 40px 0;
    }
}

/* ===============================================
   ATRN FAQ SECTION - ENGLISH VERSION
   =============================================== */

.atrn-faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

/* FAQ Header */
.atrn-faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.atrn-faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(238, 110, 77, 0.1);
    border-radius: 50px;
    color: #EE6E4D;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.atrn-faq-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #20201F;
    margin-bottom: 15px;
    line-height: 1.3;
}

.atrn-faq-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* FAQ Categories */
.atrn-faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.atrn-faq-category-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    color: #666;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.atrn-faq-category-btn:hover {
    border-color: #EE6E4D;
    color: #EE6E4D;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(238, 110, 77, 0.2);
}

.atrn-faq-category-btn.active {
    background: linear-gradient(135deg, #EE6E4D 0%, #d85a3a 100%);
    border-color: #EE6E4D;
    color: white;
    box-shadow: 0 4px 15px rgba(238, 110, 77, 0.3);
}

.atrn-faq-category-btn i {
    font-size: 16px;
}

/* FAQ Grid */
.atrn-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* FAQ Item */
.atrn-faq-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.atrn-faq-item:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.atrn-faq-item.active {
    border-color: #EE6E4D;
    box-shadow: 0 8px 24px rgba(238, 110, 77, 0.15);
}

/* Hidden Items */
.atrn-faq-item.hidden {
    display: none;
}

/* FAQ Question - Entire area clickable */
.atrn-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    cursor: pointer;
    gap: 15px;
    transition: background 0.3s ease;
}

.atrn-faq-question:hover {
    background: #fafafa;
}

.atrn-faq-question-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.atrn-faq-question-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #20201F 0%, #3a3a38 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(32, 32, 31, 0.3);
}

.atrn-faq-item.active .atrn-faq-question-icon {
    background: linear-gradient(135deg, #EE6E4D 0%, #d85a3a 100%);
    box-shadow: 0 4px 12px rgba(238, 110, 77, 0.4);
    animation: atrn-faq-bounceIn 0.5s ease;
}

.atrn-faq-question-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: #20201F;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

/* Toggle Button */
.atrn-faq-toggle-btn {
    width: 35px;
    height: 35px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.atrn-faq-toggle-btn i {
    font-size: 16px;
    color: #EE6E4D;
    transition: transform 0.3s ease;
}

.atrn-faq-item.active .atrn-faq-toggle-btn {
    background: #EE6E4D;
}

.atrn-faq-item.active .atrn-faq-toggle-btn i {
    color: white;
    transform: rotate(45deg);
}

/* FAQ Answer */
.atrn-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #fafafa;
}

.atrn-faq-item.active .atrn-faq-answer {
    max-height: 500px;
    padding: 0 25px 25px 25px;
}

.atrn-faq-answer-content {
    padding-top: 10px;
}

.atrn-faq-answer-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 15px 0;
    text-align: left;
}

.atrn-faq-answer-content p strong {
    color: #EE6E4D;
    font-weight: 700;
}

/* Answer Features */
.atrn-faq-answer-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.atrn-faq-feature-tag {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #EE6E4D 0%, #d85a3a 100%);
    color: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.atrn-faq-feature-tag.warning {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
}

/* Answer Highlight */
.atrn-faq-answer-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #EE6E4D;
    margin-top: 15px;
}

.atrn-faq-answer-highlight i {
    color: #EE6E4D;
    font-size: 18px;
}

.atrn-faq-answer-highlight span {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

/* Animations */
@keyframes atrn-faq-bounceIn {
    0% { transform: scale(0.8); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes atrn-faq-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .atrn-faq-grid {
        grid-template-columns: 1fr;
    }

    .atrn-faq-header h2 {
        font-size: 28px;
    }

    .atrn-faq-categories {
        gap: 10px;
    }

    .atrn-faq-category-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .atrn-faq-question-content h3 {
        font-size: 15px;
    }

    .atrn-faq-question {
        padding: 20px;
    }

    .atrn-faq-item.active .atrn-faq-answer {
        padding: 0 20px 20px 20px;
    }
}

/* ═══════════════════════════════════════════════════ */
/* ATRN BLOG SECTION - ENGLISH VERSION                */
/* ═══════════════════════════════════════════════════ */

/* ─── Section Base ─── */
.atrn-blog-section {
    --atrn-primary: #0f172a;
    --atrn-secondary: #f59e0b;
    --atrn-accent: #ea580c;
    --atrn-dark: #1e293b;
    --atrn-muted: #64748b;
    --atrn-bg: #f8fafc;
    --atrn-white: #ffffff;
    --atrn-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
    --atrn-shadow-md: 0 8px 30px rgba(15, 23, 42, 0.1);
    --atrn-shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
    --atrn-shadow-inset: inset 0 2px 6px rgba(15, 23, 42, 0.08);
    --atrn-radius: 20px;
    --atrn-radius-sm: 12px;
    --atrn-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    padding: 100px 0 110px;
    background: var(--atrn-bg);
    position: relative;
    overflow: hidden;
}

/* Background Decorative Elements */
.atrn-blog-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.atrn-blog-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(234, 88, 12, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ─── Container ─── */
.atrn-blog-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ─── Header ─── */
.atrn-blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.atrn-blog-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(234, 88, 12, 0.08) 100%);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: var(--atrn-accent);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: var(--atrn-shadow-inset);
}

.atrn-blog-badge i {
    font-size: 1rem;
}

.atrn-blog-title {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--atrn-primary);
    margin: 0 0 16px 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.atrn-blog-subtitle {
    font-size: 1.15rem;
    color: var(--atrn-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 500;
}

/* ─── Slider Wrapper ─── */
.atrn-blog-slider-wrapper {
    position: relative;
}

/* ─── Grid (Desktop = grid, Mobile = horizontal scroll) ─── */
.atrn-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* ─── Slider Arrows (hidden on desktop by default) ─── */
.atrn-blog-slider-arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(15, 23, 42, 0.1);
    background: var(--atrn-white);
    color: var(--atrn-primary);
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.12);
    transition: var(--atrn-transition);
    align-items: center;
    justify-content: center;
}

.atrn-blog-slider-arrow:hover {
    background: var(--atrn-primary);
    color: var(--atrn-secondary);
    border-color: var(--atrn-primary);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.25);
}

.atrn-blog-slider-arrow--prev {
    left: -6px;
}

.atrn-blog-slider-arrow--next {
    right: -6px;
}

.atrn-blog-slider-arrow.atrn-disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* ─── Slider Dots (hidden on desktop) ─── */
.atrn-blog-slider-dots {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0 0 10px;
    margin-bottom: 20px;
}

.atrn-blog-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.15);
    border: none;
    cursor: pointer;
    transition: var(--atrn-transition);
    padding: 0;
}

.atrn-blog-slider-dot.atrn-active {
    background: var(--atrn-secondary);
    width: 28px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

/* ─── Blog Card ─── */
.atrn-blog-card {
    background: var(--atrn-white);
    border-radius: var(--atrn-radius);
    overflow: hidden;
    box-shadow: var(--atrn-shadow-sm);
    transition: var(--atrn-transition);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.atrn-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--atrn-shadow-lg);
    border-color: rgba(245, 158, 11, 0.2);
}

/* Card Image */
.atrn-blog-card__image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.atrn-blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.atrn-blog-card:hover .atrn-blog-card__image img {
    transform: scale(1.08);
}

/* Image Overlay Gradient */
.atrn-blog-card__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.4) 0%, transparent 100%);
    pointer-events: none;
}

/* Category Badge on Image */
.atrn-blog-card__category {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: var(--atrn-secondary);
    color: var(--atrn-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

/* No Image Placeholder */
.atrn-blog-card__no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--atrn-primary) 0%, #334155 100%);
    color: rgba(255, 255, 255, 0.25);
    font-size: 3.5rem;
}

/* Card Content */
.atrn-blog-card__content {
    padding: 28px 26px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    box-shadow: inset 0 3px 8px rgba(15, 23, 42, 0.04);
}

.atrn-blog-card__title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--atrn-dark);
    margin: 0 0 12px 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.atrn-blog-card:hover .atrn-blog-card__title {
    color: var(--atrn-accent);
}

.atrn-blog-card__excerpt {
    font-size: 0.92rem;
    color: var(--atrn-muted);
    line-height: 1.8;
    margin: 0 0 20px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* Card Footer / Meta */
.atrn-blog-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    margin-top: auto;
}

.atrn-blog-card__date {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: var(--atrn-muted);
    font-weight: 600;
}

.atrn-blog-card__date i {
    color: var(--atrn-secondary);
    font-size: 0.85rem;
}

.atrn-blog-card__views {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--atrn-muted);
    font-weight: 600;
}

.atrn-blog-card__views i {
    color: var(--atrn-accent);
    font-size: 0.8rem;
}

/* Read More Link */
.atrn-blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--atrn-accent);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 20px 26px 26px;
    transition: var(--atrn-transition);
}

.atrn-blog-card__link i {
    transition: transform 0.3s;
    font-size: 0.8rem;
}

.atrn-blog-card:hover .atrn-blog-card__link {
    color: var(--atrn-secondary);
}

.atrn-blog-card:hover .atrn-blog-card__link i {
    transform: translateX(5px);
}

/* ─── Inset / Neumorphic Depth Effect on Cards ─── */
.atrn-blog-card__content::before {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--atrn-secondary), var(--atrn-accent));
    border-radius: 10px;
    margin-bottom: 16px;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--atrn-transition);
}

.atrn-blog-card:hover .atrn-blog-card__content::before {
    opacity: 1;
    transform: scaleX(1);
}

/* ─── Loading State ─── */
.atrn-blog-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 60px 0;
    color: var(--atrn-muted);
    font-size: 1rem;
    font-weight: 600;
}

.atrn-blog-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(245, 158, 11, 0.15);
    border-top-color: var(--atrn-secondary);
    border-radius: 50%;
    animation: atrnBlogSpin 0.8s linear infinite;
}

@keyframes atrnBlogSpin {
    to { transform: rotate(360deg); }
}

/* ─── Empty State ─── */
.atrn-blog-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--atrn-muted);
}

.atrn-blog-empty i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.3;
    color: var(--atrn-primary);
}

.atrn-blog-empty p {
    font-size: 1.1rem;
    font-weight: 600;
}

/* ─── Footer / View All Button ─── */
.atrn-blog-footer {
    text-align: center;
    padding-top: 10px;
}

.atrn-blog-btn-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--atrn-primary);
    color: var(--atrn-secondary);
    padding: 18px 42px;
    border-radius: 60px;
    font-size: 1.05rem;
    font-weight: 800;
    text-decoration: none;
    transition: var(--atrn-transition);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.25);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.atrn-blog-btn-all::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
    transition: right 0.5s;
}

.atrn-blog-btn-all:hover::before {
    right: 100%;
}

.atrn-blog-btn-all:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.3);
    border-color: var(--atrn-secondary);
    color: var(--atrn-secondary);
}

.atrn-blog-btn-all i {
    transition: transform 0.3s;
}

.atrn-blog-btn-all:hover i {
    transform: translateX(6px);
}

/* ─── Entrance Animations ─── */
.atrn-blog-card {
    opacity: 0;
    transform: translateY(40px);
}

.atrn-blog-card.atrn-blog-visible {
    animation: atrnBlogFadeUp 0.6s ease forwards;
}

.atrn-blog-card:nth-child(1).atrn-blog-visible { animation-delay: 0.1s; }
.atrn-blog-card:nth-child(2).atrn-blog-visible { animation-delay: 0.25s; }
.atrn-blog-card:nth-child(3).atrn-blog-visible { animation-delay: 0.4s; }
.atrn-blog-card:nth-child(4).atrn-blog-visible { animation-delay: 0.55s; }
.atrn-blog-card:nth-child(5).atrn-blog-visible { animation-delay: 0.7s; }
.atrn-blog-card:nth-child(6).atrn-blog-visible { animation-delay: 0.85s; }

@keyframes atrnBlogFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════════════════ */
/* ─── RESPONSIVE: Tablet (max-width: 1200px) ─── */
/* ═══════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .atrn-blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* ═══════════════════════════════════════════════════ */
/* ─── RESPONSIVE: Mobile Slider (max-width: 768px) ─ */
/* ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .atrn-blog-section {
        padding: 60px 0 70px;
    }

    .atrn-blog-header {
        margin-bottom: 32px;
    }

    .atrn-blog-title {
        font-size: 1.75rem;
    }

    .atrn-blog-subtitle {
        font-size: 0.95rem;
    }

    .atrn-blog-badge {
        padding: 8px 18px;
        font-size: 0.85rem;
        gap: 8px;
    }

    /* Convert grid to horizontal slider */
    .atrn-blog-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding: 10px 4px 20px;
        margin-bottom: 10px;

        /* Hide scrollbar */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .atrn-blog-grid::-webkit-scrollbar {
        display: none;
    }

    /* Card sizing in slider */
    .atrn-blog-card {
        min-width: 82vw;
        max-width: 82vw;
        scroll-snap-align: center;
        flex-shrink: 0;
        /* Reset desktop animation for slider */
        opacity: 1;
        transform: translateY(0);
    }

    .atrn-blog-card.atrn-blog-visible {
        animation: none;
    }

    .atrn-blog-card__image {
        height: 180px;
    }

    .atrn-blog-card__content {
        padding: 20px 18px 16px;
    }

    .atrn-blog-card__title {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .atrn-blog-card__excerpt {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
        margin-bottom: 14px;
    }

    .atrn-blog-card__link {
        padding: 14px 18px 18px;
        font-size: 0.85rem;
    }

    .atrn-blog-card__meta {
        padding-top: 12px;
    }

    .atrn-blog-card__date,
    .atrn-blog-card__views {
        font-size: 0.78rem;
    }

    /* Card hover off on touch */
    .atrn-blog-card:hover {
        transform: none;
        box-shadow: var(--atrn-shadow-sm);
    }

    /* Show slider arrows */
    .atrn-blog-slider-arrow {
        display: flex;
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }

    .atrn-blog-slider-arrow--prev {
        left: 2px;
    }

    .atrn-blog-slider-arrow--next {
        right: 2px;
    }

    /* Show dots */
    .atrn-blog-slider-dots {
        display: flex;
        margin-bottom: 24px;
    }

    /* Button adjustments */
    .atrn-blog-btn-all {
        padding: 14px 30px;
        font-size: 0.92rem;
    }
}

/* ═══════════════════════════════════════════════════ */
/* ─── RESPONSIVE: Small Mobile (max-width: 480px) ── */
/* ═══════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .atrn-blog-section {
        padding: 50px 0 60px;
    }

    .atrn-blog-container {
        padding: 0 12px;
    }

    .atrn-blog-title {
        font-size: 1.45rem;
    }

    .atrn-blog-subtitle {
        font-size: 0.88rem;
    }

    .atrn-blog-card {
        min-width: 85vw;
        max-width: 85vw;
    }

    .atrn-blog-card__image {
        height: 160px;
    }

    .atrn-blog-card__content {
        padding: 16px 14px 14px;
    }

    .atrn-blog-card__title {
        font-size: 0.98rem;
    }

    .atrn-blog-card__excerpt {
        font-size: 0.82rem;
    }

    .atrn-blog-card__link {
        padding: 12px 14px 16px;
        font-size: 0.82rem;
    }

    .atrn-blog-card__category {
        padding: 5px 12px;
        font-size: 0.72rem;
        top: 12px;
        left: 12px;
    }

    .atrn-blog-btn-all {
        padding: 13px 26px;
        font-size: 0.88rem;
        gap: 10px;
    }

    .atrn-blog-slider-arrow {
        width: 34px;
        height: 34px;
        font-size: 0.78rem;
    }
}
/* ═══════════════════════════════════════════════════ */
/* ATRN FOOTER - ENGLISH VERSION (LTR)               */
/* ═══════════════════════════════════════════════════ */

/* --- Main Footer Base --- */
.atrn-footer {
    background-color: #111827;
    color: #9ca3af;
    padding-top: 80px;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.atrn-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Row & Columns --- */
.atrn-footer-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.atrn-footer-row--align-center {
    align-items: center;
}

.atrn-footer-col {
    padding: 0 15px;
}

.atrn-footer-col--lg4 {
    width: 33.333%;
}

.atrn-footer-col--lg2 {
    width: 16.666%;
}

.atrn-footer-col--md6 {
    width: 50%;
}

/* --- Responsive: Tablet (max-width: 992px) --- */
@media (max-width: 992px) {
    .atrn-footer-col--lg4,
    .atrn-footer-col--lg2 {
        width: 50%;
    }
}

/* --- Responsive: Mobile (max-width: 768px) --- */
@media (max-width: 768px) {
    .atrn-footer-col--lg4,
    .atrn-footer-col--lg2,
    .atrn-footer-col--md6 {
        width: 100%;
    }

    .atrn-footer-widget {
        margin-bottom: 40px;
    }
}

/* --- Widgets --- */
.atrn-footer-widget {
    margin-bottom: 30px;
}

.atrn-footer-widget-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

/* LTR: underline positioned to the left instead of right */
.atrn-footer-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #f59e0b;
    border-radius: 2px;
}

/* --- Logo & Description --- */
.atrn-footer-logo h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 800;
}

.atrn-footer-logo span {
    color: #f59e0b;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 20px;
}

.atrn-footer-desc {
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: left;
}

/* --- Social Links --- */
.atrn-footer-social {
    display: flex;
    gap: 10px;
}

.atrn-footer-social-btn {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.1rem;
}

.atrn-footer-social-btn:hover {
    background-color: #f59e0b;
    color: #ffffff;
    transform: translateY(-3px);
}

/* --- Quick Links --- */
.atrn-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.atrn-footer-links ul li {
    margin-bottom: 12px;
}

.atrn-footer-links ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

/* LTR: hover shifts text to the right (padding-left) instead of padding-right */
.atrn-footer-links ul li a:hover {
    color: #f59e0b;
    padding-left: 5px;
}

/* --- Contact List --- */
.atrn-footer-contact-list {
    list-style: none;
    padding: 0;
}

.atrn-footer-contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #d1d5db;
}

/* LTR: icon margin on the right instead of left */
.atrn-footer-contact-list li i {
    color: #f59e0b;
    margin-right: 10px;
    margin-top: 5px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* --- Footer Bottom / Copyright --- */
.atrn-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 20px;
}

.atrn-footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
}

.atrn-footer-legal {
    text-align: right;
}

.atrn-footer-legal a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.atrn-footer-legal a:hover {
    color: #f59e0b;
}

.atrn-footer-separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.2);
}

/* --- Responsive: Mobile Copyright --- */
@media (max-width: 768px) {
    .atrn-footer-copyright,
    .atrn-footer-legal {
        text-align: center;
        width: 100%;
        margin-bottom: 10px;
    }
}

/* --- Trust Badges --- */
.atrn-footer-trust {
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.atrn-footer-trust-title {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.atrn-footer-trust-badges {
    display: flex;
    gap: 15px;
}

.atrn-footer-trust-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 5px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.atrn-footer-trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.atrn-footer-trust-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
