.elementor-383 .elementor-element.elementor-element-f187865{--display:flex;--gap:20px 20px;--row-gap:20px;--column-gap:20px;--padding-top:5%;--padding-bottom:5%;--padding-left:010%;--padding-right:10%;}.elementor-383 .elementor-element.elementor-element-f187865:not(.elementor-motion-effects-element-type-background), .elementor-383 .elementor-element.elementor-element-f187865 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-87ae757 );}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-383 .elementor-element.elementor-element-90e21a1{background-color:var( --e-global-color-87ae757 );text-align:center;font-family:"Alan Sans", Sans-serif;font-size:55px;font-weight:400;color:var( --e-global-color-primary );}.elementor-383 .elementor-element.elementor-element-cc14f5f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-383 .elementor-element.elementor-element-d4dae0d{width:100%;max-width:100%;}.elementor-383 .elementor-element.elementor-element-0d1ca07{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-383 .elementor-element.elementor-element-7089feb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-383 .elementor-element.elementor-element-c30ea4f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-383 .elementor-element.elementor-element-99f03ec{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(max-width:1024px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}}@media(max-width:767px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}}/* Start custom CSS for html, class: .elementor-element-e079713 */.services-nav-full {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #F7F7F7;
    padding: 60px 0;
    overflow: hidden;
}

.static-container {
    display: flex;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 20px;
    padding: 0 20px;
}

/* TAISNSTŪRA KARTIŅAS STILS */

.nav-card {
    flex: 1; /* Vienmērīgi sadala vietu */
    min-height: 140px; /* Padara tās plakanākas/taisnstūrveida */
    background: #ffffff;
    border: 3px solid #D6E6A7;
    border-radius: 12px;
    padding: 25px 15px; /* Mazāk augšā/apakšā, vairāk sānos */
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    
    /* Sākotnējais stāvoklis pirms animācijas */
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                border-color 0.3s ease, 
                opacity 0.8s ease-out;
}

/* Klase, kuru pievienos skripts, kad lietotājs piebrauks pie sadaļas */
.nav-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Secīga ielāde (Stagger effect) */
.nav-card.animate:nth-child(1) { transition-delay: 0.1s; }
.nav-card.animate:nth-child(2) { transition-delay: 0.2s; }
.nav-card.animate:nth-child(3) { transition-delay: 0.3s; }
.nav-card.animate:nth-child(4) { transition-delay: 0.4s; }

/* HOVER EFEKTS */
.nav-card:hover {
    transform: scale(1.03) translateY(-5px) !important; /* !important vajadzīgs, lai nekonfliktētu ar animāciju */
    border-color: #9ECC3B;
    background-color: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.nav-icon {
    width: 45px; /* Mazāka ikona taisnstūrim */
    height: 45px;
    margin-bottom: 15px;
}

.nav-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-label {
    font-family: 'Carlito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #384E23;
    text-align: center;
    line-height: 1.2;
}

/* RESPONSIVITĀTE */
@media (max-width: 1024px) {
    .static-container { flex-wrap: wrap; }
    .nav-card { flex: 0 1 calc(50% - 20px); min-height: 120px; }
}
@media (max-width: 600px) {
    .nav-card { flex: 0 1 100%; }
}

/* Nodrošina maigu skrolēšanu visā lapā */
html {
    scroll-behavior: smooth;
}

/* Pasargā saturu no "pielipšanas" augšējai malai, ja tev ir fiksēta izvēlne */
section, div[id] {
    scroll-margin-top: 80px;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d4dae0d *//* --- 1. VIENOTA ANIMĀCIJAS SISTĒMA --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    visibility: hidden;
}

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

/* Secīgie parādīšanās laiki */
.delay-1 { transition-delay: 0.1s; } /* Virsraksts */
.delay-2 { transition-delay: 0.3s; } /* Apraksts */
.delay-3 { transition-delay: 0.5s; } /* Punkti un poga */
.delay-4 { transition-delay: 0.7s; } /* Attēli */

/* --- 2. BĀZES STILI VISIEM PAKALPOJUMIEM --- */
.knauke-creative-service {
    width: 100%;
    padding: 100px 0;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.creative-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%; 
}

.creative-content { flex: 1.2; }
.service-label { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.label-icon { width: 35px; height: 35px; object-fit: contain; }
.label-text { font-family: 'Carlito', sans-serif; font-size: 16px; text-transform: lowercase; font-weight: 700; color: #9ECC3B; letter-spacing: 1px; }

.creative-title { font-family: 'Alan Sans', sans-serif; font-size: clamp(32px, 5vw, 55px); line-height: 1.1; color: #384E23; margin-bottom: 25px; }
.creative-description { font-family: 'Carlito', sans-serif; font-size: clamp(18px, 2vw, 20px); line-height: 1.6; color: #1E2A12; margin-bottom: 30px; }

.creative-bullet-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 35px; }
.bullet-item { display: flex; align-items: center; gap: 15px; font-family: 'Carlito', sans-serif; font-size: 18px; font-weight: 500; color: #1E2A12; line-height: 1.4; }
.dot { width: 8px; height: 8px; background-color: #9ECC3B; border-radius: 50%; flex-shrink: 0; }

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #911130;
    color: #ffffff !important;
    font-family: 'Carlito', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
}
.btn-primary:hover { background-color: #9ECC3B; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

.creative-images { flex: 1; display: flex; justify-content: flex-end; position: relative; }
.img-stack-wrapper { position: relative; width: 100%; max-width: 550px; }
.img-main img { width: 90%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.img-sub { position: absolute; bottom: -30px; right: 0; width: 55%; }
.img-sub img { width: 100%; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.15); }

/* --- 3. RESPONSIVITĀTE --- */
@media (max-width: 1100px) {
    .creative-container { flex-direction: column; text-align: left; gap: 60px; padding: 0 40px; }
    .creative-content, .creative-images { width: 100%; }
    .creative-images { justify-content: center; }
}
@media (max-width: 600px) {
    .knauke-creative-service { padding: 40px 20px !important; }
    .btn-primary { width: 100%; text-align: center; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ec4c653 *//* --- 1. ANIMĀCIJAS SISTĒMA (Intersection Observer) --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    visibility: hidden;
}

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

/* Kavējumi loģiskai elementu ienākšanai */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.5s; }
.delay-4 { transition-delay: 0.7s; }

/* --- 2. PAMATA DIZAINS --- */
.knauke-creative-service {
    width: 100%;
    padding: 100px 0;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.creative-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Klase izkārtojuma apgriešanai */
.reverse-layout {
    flex-direction: row-reverse;
}

.creative-content { flex: 1.2; }

.service-label { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.label-icon { width: 35px; height: 35px; object-fit: contain; }
.label-text { font-family: 'Carlito', sans-serif; font-size: 18px; text-transform: lowercase; font-weight: 700; color: #9ECC3B; }

.creative-title { font-family: 'Alan Sans', sans-serif; font-size: clamp(32px, 5vw, 55px); line-height: 1.1; color: #384E23; margin-bottom: 25px; }
.creative-description { font-family: 'Carlito', sans-serif; font-size: clamp(18px, 2vw, 20px); line-height: 1.6; color: #1E2A12; margin-bottom: 30px; }

.creative-bullet-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 35px; }
.bullet-item { display: flex; align-items: center; gap: 15px; font-family: 'Carlito', sans-serif; font-size: 18px; color: #1E2A12; }
.dot { width: 8px; height: 8px; background-color: #9ECC3B; border-radius: 50%; flex-shrink: 0; }

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #911130;
    color: #ffffff !important;
    font-family: 'Carlito', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
}
.btn-primary:hover { background-color: #9ECC3B; transform: translateY(-3px); }

.creative-images { flex: 1; display: flex; justify-content: center; position: relative; }
.img-stack-wrapper { position: relative; width: 100%; max-width: 550px; }
.img-main img { width: 90%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.05); display: block; }
.img-sub { position: absolute; bottom: -30px; right: 0; width: 55%; }
.img-sub img { width: 100%; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.15); display: block; }

/* --- 3. RESPONSIVITĀTE --- */
@media (max-width: 1100px) {
    .creative-container, .reverse-layout { flex-direction: column; text-align: left; padding: 0 40px; }
    .creative-content, .creative-images { width: 100%; }
    .creative-images { margin-top: 40px; }
}
@media (max-width: 600px) {
    .knauke-creative-service { padding: 40px 20px; }
    .btn-primary { width: 100%; text-align: center; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8e1be7d *//* --- 1. Animācijas --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeIn 1.2s ease-out forwards; }
.fade-in-delayed { opacity: 0; animation: fadeIn 1.2s ease-out 0.4s forwards; }

/* --- 2. Galvenie bāzes stili (Dators / TV) --- */
.knauke-creative-service {
    width: 100%;
    padding: 100px 0;
    background-color: #ffffff;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.creative-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%; 
}

/* --- 3. Saturs un Tipogrāfija --- */
.creative-content { flex: 1.2; }

.service-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.label-icon { width: 35px; height: 35px; object-fit: contain; }

.label-text {
    font-family: 'Carlito', sans-serif;
    font-size: 16px;
    text-transform: lowercase;
    font-weight: 700;
    color: #9ECC3B;
    letter-spacing: 1px;
}

.creative-title {
    font-family: 'Alan Sans', sans-serif;
    font-size: clamp(32px, 5vw, 55px);
    line-height: 1.1;
    color: #384E23;
    margin-bottom: 25px;
}

.creative-description {
    font-family: 'Carlito', sans-serif;
    font-size: clamp(18px, 2vw, 20px);
    line-height: 1.6;
    color: #1E2A12;
    margin-bottom: 30px;
}

.creative-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Carlito', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #1E2A12;
    line-height: 1.4;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #9ECC3B;
    border-radius: 50%;
    flex-shrink: 0;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #911130;
    color: #ffffff !important;
    font-family: 'Carlito', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary:hover {
    background-color: #9ECC3B;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* --- 4. Attēlu bloks --- */
.creative-images {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.img-stack-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
}

.img-main img {
    width: 90%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.img-sub {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 55%;
}

.img-sub img {
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* --- 5. RESPONSIVITĀTE --- */

@media (min-width: 1800px) {
    .creative-container { max-width: 1600px; }
    .creative-title { font-size: 65px; }
}

@media (max-width: 1100px) {
    .knauke-creative-service { padding: 80px 0; }
    
    .creative-container { 
        flex-direction: column; 
        align-items: center;
        text-align: left;
        gap: 60px;
        padding: 0 40px;
    }

    .creative-content { width: 100%; order: 1; }
    .creative-images { width: 100%; order: 2; justify-content: center; }
    
    .img-stack-wrapper { max-width: 500px; margin-bottom: 30px; }
}

@media (max-width: 600px) {
    .knauke-creative-service { 
        padding: 20px !important; 
    }

    .creative-container {
        padding: 0;
        gap: 40px;
    }

    .creative-content, .creative-images { padding: 0; }

    .creative-title { font-size: 32px; }
    
    .btn-primary { 
        width: 100%; 
        box-sizing: border-box; 
    }

    .img-stack-wrapper { width: 100%; }
    .img-sub { bottom: -20px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ce54fdf *//* --- 1. ANIMĀCIJAS BĀZE --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    visibility: hidden;
}

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

/* Secīgie kavējumi */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.5s; }
.delay-4 { transition-delay: 0.7s; }

/* --- 2. DIZAINS --- */
.knauke-creative-service {
    width: 100%;
    padding: 100px 0;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.creative-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%; 
}

/* Galvenā rinda: apgriež secību (Attēls pa kreisi, teksts pa labi) */
.layout-reversed {
    flex-direction: row-reverse;
}

.creative-content { 
    flex: 1.2; 
}

.service-label { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.label-icon { width: 35px; height: 35px; object-fit: contain; }
.label-text { font-family: 'Carlito', sans-serif; font-size: 18px; text-transform: lowercase; font-weight: 700; color: #9ECC3B; }

.creative-title { font-family: 'Alan Sans', sans-serif; font-size: clamp(32px, 5vw, 55px); line-height: 1.1; color: #384E23; margin-bottom: 25px; }
.creative-description { font-family: 'Carlito', sans-serif; font-size: clamp(18px, 2vw, 20px); line-height: 1.6; color: #1E2A12; margin-bottom: 30px; }

.creative-bullet-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 35px; }
.bullet-item { display: flex; align-items: center; gap: 15px; font-family: 'Carlito', sans-serif; font-size: 18px; color: #1E2A12; }
.dot { width: 8px; height: 8px; background-color: #9ECC3B; border-radius: 50%; flex-shrink: 0; }

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #911130;
    color: #ffffff !important;
    font-family: 'Carlito', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.btn-primary:hover { background-color: #9ECC3B; transform: translateY(-3px); }

/* Attēlu pozicionēšana */
.creative-images { 
    flex: 1; 
    display: flex; 
    justify-content: flex-start; /* Svarīgi: līdzinās pie kreisās malas */
    position: relative; 
}

.img-stack-wrapper { position: relative; width: 100%; max-width: 550px; }
.img-main img { width: 90%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.img-sub { position: absolute; bottom: -30px; right: 0; width: 55%; }
.img-sub img { width: 100%; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.15); }

/* --- 3. RESPONSIVITĀTE --- */
@media (max-width: 1100px) {
    /* Atceļam row-reverse un liekam kolonnā: Teksts augšā, attēls apakšā */
    .creative-container, 
    .layout-reversed { 
        flex-direction: column; 
        text-align: left; 
        padding: 0 40px; 
    }
    
    .creative-content, 
    .creative-images { 
        width: 100%; 
    }
    
    .creative-images { 
        justify-content: center; 
        margin-top: 40px; 
        margin-bottom: 40px;
    }
}

@media (max-width: 600px) {
    .knauke-creative-service { padding: 40px 20px; }
    .btn-primary { width: 100%; text-align: center; box-sizing: border-box; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1cdd162 *//* --- 1. ANIMĀCIJAS BĀZE --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    visibility: hidden;
}

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

/* Secīgie kavējumi */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.5s; }
.delay-4 { transition-delay: 0.7s; }

/* --- 2. DIZAINS --- */
.knauke-creative-service {
    width: 100%;
    padding: 100px 0;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.creative-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%; 
}

/* Galvenā rinda: apgriež secību (Attēls pa kreisi, teksts pa labi) */
.layout-reversed {
    flex-direction: row-reverse;
}

.creative-content { 
    flex: 1.2; 
}

.service-label { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.label-icon { width: 35px; height: 35px; object-fit: contain; }
.label-text { font-family: 'Carlito', sans-serif; font-size: 18px; text-transform: lowercase; font-weight: 700; color: #9ECC3B; }

.creative-title { font-family: 'Alan Sans', sans-serif; font-size: clamp(32px, 5vw, 55px); line-height: 1.1; color: #384E23; margin-bottom: 25px; }
.creative-description { font-family: 'Carlito', sans-serif; font-size: clamp(18px, 2vw, 20px); line-height: 1.6; color: #1E2A12; margin-bottom: 30px; }

.creative-bullet-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 35px; }
.bullet-item { display: flex; align-items: center; gap: 15px; font-family: 'Carlito', sans-serif; font-size: 18px; color: #1E2A12; }
.dot { width: 8px; height: 8px; background-color: #9ECC3B; border-radius: 50%; flex-shrink: 0; }

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #911130;
    color: #ffffff !important;
    font-family: 'Carlito', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.btn-primary:hover { background-color: #9ECC3B; transform: translateY(-3px); }

/* Attēlu pozicionēšana */
.creative-images { 
    flex: 1; 
    display: flex; 
    justify-content: flex-start; /* Svarīgi: līdzinās pie kreisās malas */
    position: relative; 
}

.img-stack-wrapper { position: relative; width: 100%; max-width: 550px; }
.img-main img { width: 90%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.img-sub { position: absolute; bottom: -30px; right: 0; width: 55%; }
.img-sub img { width: 100%; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.15); }

/* --- 3. RESPONSIVITĀTE --- */
@media (max-width: 1100px) {
    /* Atceļam row-reverse un liekam kolonnā: Teksts augšā, attēls apakšā */
    .creative-container, 
    .layout-reversed { 
        flex-direction: column; 
        text-align: left; 
        padding: 0 40px; 
    }
    
    .creative-content, 
    .creative-images { 
        width: 100%; 
    }
    
    .creative-images { 
        justify-content: center; 
        margin-top: 40px; 
        margin-bottom: 40px;
    }
}

@media (max-width: 600px) {
    .knauke-creative-service { padding: 40px 20px; }
    .btn-primary { width: 100%; text-align: center; box-sizing: border-box; }
}/* End custom CSS */
/* Start Custom Fonts CSS */@font-face {
	font-family: 'Alan Sans';
	font-style: normal;
	font-weight: normal;
	font-display: auto;
	src: url('https://kristine.rmmtweb.lv/wp-content/uploads/2026/03/AlanSans-VariableFont_wght.ttf') format('truetype');
}
/* End Custom Fonts CSS */